/* =========================================================
CREATORS MIND HARDWARE V2
FILE : hardware-v2.css
MATCHES cmhv2-* CLASSES
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#ffffff;
color:#111827;
overflow-x:hidden;
line-height:1.8;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
}

/* =========================================================
ASTRA FIX
========================================================= */

.ast-container,
.site-content .ast-container,
#primary,
#content,
.site-main,
.entry-content{
width:100%!important;
max-width:100%!important;
padding:0!important;
margin:0!important;
}

.entry-header,
.page-header{
display:none!important;
}

.cmhv2-page{
width:100%;
overflow:hidden;
}

.cmhv2-container{
width:min(94%,1450px);
margin:auto;
}

/* =========================================================
HERO
========================================================= */

.cmhv2-hero{
padding:90px 0;
position:relative;
overflow:hidden;
background:
linear-gradient(
135deg,
#fff7ed 0%,
#ffffff 25%,
#fdf4ff 50%,
#eef2ff 75%,
#ecfeff 100%
);
}

.cmhv2-hero:before{
content:"";
position:absolute;
width:550px;
height:550px;
border-radius:50%;
background:#f97316;
opacity:.08;
filter:blur(130px);
top:-250px;
left:-250px;
}

.cmhv2-hero:after{
content:"";
position:absolute;
width:550px;
height:550px;
border-radius:50%;
background:#7c3aed;
opacity:.08;
filter:blur(130px);
right:-250px;
bottom:-250px;
}

.cmhv2-grid{
display:grid;
grid-template-columns:520px 1fr;
gap:70px;
align-items:center;
position:relative;
z-index:2;
}

/* =========================================================
LEFT
========================================================= */

.cmhv2-badge{
display:inline-flex;
align-items:center;
padding:12px 22px;
background:#fff;
border:1px solid #e5e7eb;
border-radius:50px;
font-size:13px;
font-weight:800;
letter-spacing:1px;
margin-bottom:25px;
box-shadow:0 10px 25px rgba(0,0,0,.04);
}

.cmhv2-left h1{
font-size:72px;
line-height:1;
font-weight:900;
letter-spacing:-3px;
margin-bottom:20px;
}

.cmhv2-left p{
font-size:18px;
line-height:1.9;
color:#64748b;
margin-bottom:30px;
}

/* =========================================================
FORM
========================================================= */

.cmhv2-form{
background:#fff;
padding:35px;
border-radius:32px;
border:1px solid #edf2f7;
box-shadow:
0 25px 70px rgba(15,23,42,.08);
}

.cmhv2-form h3{
font-size:30px;
font-weight:900;
margin-bottom:20px;
}

.cmhv2-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:14px;
}

.cmhv2-form input,
.cmhv2-form textarea{
width:100%;
padding:16px;
margin-bottom:14px;
border:1px solid #dbe2ea;
border-radius:16px;
font-size:15px;
font-family:'Inter',sans-serif;
outline:none;
transition:.3s;
}

.cmhv2-form input:focus,
.cmhv2-form textarea:focus{
border-color:#ec4899;
box-shadow:0 0 0 4px rgba(236,72,153,.08);
}

.cmhv2-form button{
width:100%;
height:60px;
border:none;
cursor:pointer;
border-radius:16px;
font-size:16px;
font-weight:800;
color:#fff;

background:
linear-gradient(
135deg,
#f97316,
#ec4899,
#7c3aed
);

background-size:200% 200%;

animation:cmhv2gradient 6s ease infinite;
}

@keyframes cmhv2gradient{

0%{
background-position:0% 50%;
}

50%{
background-position:100% 50%;
}

100%{
background-position:0% 50%;
}

}

/* =========================================================
RIGHT
========================================================= */

.cmhv2-right{
display:flex;
flex-direction:column;
gap:25px;
}

.cmhv2-image{
background:#fff;
padding:25px;
border-radius:35px;
box-shadow:
0 25px 70px rgba(15,23,42,.08);
}

.cmhv2-image img{
width:100%;
display:block;
height:auto;
object-fit:contain;
}

.cmhv2-floating-card{
padding:35px;
border-radius:30px;
background:
linear-gradient(
135deg,
#f97316,
#ec4899,
#7c3aed
);
color:#fff;
position:relative;
overflow:hidden;
}

.cmhv2-floating-card:before{
content:"";
position:absolute;
width:260px;
height:260px;
background:rgba(255,255,255,.1);
border-radius:50%;
right:-120px;
top:-120px;
}

.cmhv2-floating-card span{
display:block;
font-size:13px;
font-weight:800;
margin-bottom:10px;
position:relative;
z-index:2;
}

.cmhv2-floating-card h3{
font-size:34px;
line-height:1.2;
font-weight:900;
margin-bottom:15px;
position:relative;
z-index:2;
}

.cmhv2-floating-card p{
position:relative;
z-index:2;
}

/* =========================================================
HEADINGS
========================================================= */

.cmhv2-heading{
text-align:center;
margin-bottom:60px;
}

.cmhv2-heading span{
display:block;
font-size:13px;
font-weight:800;
letter-spacing:1px;
color:#7c3aed;
margin-bottom:10px;
}

.cmhv2-heading h2{
font-size:60px;
font-weight:900;
line-height:1.05;
letter-spacing:-2px;
margin-bottom:10px;
}

.cmhv2-heading p{
font-size:18px;
color:#64748b;
}

/* =========================================================
CATEGORIES
========================================================= */

.cmhv2-categories{
padding:120px 0;
}

.cmhv2-categories-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}

.cmhv2-card{
background:#fff;
padding:35px;
border-radius:28px;
border:1px solid #edf2f7;
box-shadow:
0 15px 40px rgba(0,0,0,.05);
transition:.3s;
}

.cmhv2-card:hover{
transform:translateY(-8px);
}

.cmhv2-card h3{
font-size:22px;
font-weight:900;
margin-bottom:10px;
}

.cmhv2-card p{
color:#64748b;
}

/* =========================================================
SHOWCASE
========================================================= */

.cmhv2-showcase{
padding:120px 0;
background:#fafafa;
}

.cmhv2-alt{
background:#fff;
}

.cmhv2-showcase-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

.cmhv2-showcase-image img{
width:100%;
border-radius:32px;
display:block;
}

.cmhv2-showcase-content span{
display:block;
font-size:13px;
font-weight:800;
color:#ec4899;
margin-bottom:10px;
}

.cmhv2-showcase-content h2{
font-size:58px;
line-height:1.1;
font-weight:900;
margin-bottom:20px;
}

.cmhv2-showcase-content p{
font-size:18px;
color:#64748b;
margin-bottom:20px;
}

.cmhv2-showcase-content ul{
list-style:none;
margin-bottom:25px;
}

.cmhv2-showcase-content li{
padding:12px 0;
font-weight:700;
}

.cmhv2-showcase-content a{
display:inline-flex;
align-items:center;
justify-content:center;
height:56px;
padding:0 28px;
border-radius:14px;
text-decoration:none;
font-weight:800;
color:#fff;
background:
linear-gradient(
135deg,
#ec4899,
#7c3aed
);
}

/* =========================================================
BENEFITS
========================================================= */

.cmhv2-benefits{
padding:120px 0;
background:#f9fafb;
}

.cmhv2-benefits-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}

.cmhv2-benefit{
background:#fff;
padding:30px;
border-radius:24px;
text-align:center;
}

.cmhv2-benefit h3{
font-size:24px;
font-weight:900;
margin-bottom:10px;
}

.cmhv2-benefit p{
color:#64748b;
}

/* =========================================================
WHY US
========================================================= */

.cmhv2-why{
padding:120px 0;
}

.cmhv2-why-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.cmhv2-why-card{
padding:35px;
text-align:center;
border-radius:24px;
font-weight:800;

background:
linear-gradient(
135deg,
#fff7ed,
#ffffff,
#fdf4ff
);

border:1px solid #f3e8ff;
}

/* =========================================================
PLATFORMS
========================================================= */

.cmhv2-platforms{
padding:120px 0;
background:#fafafa;
}

.cmhv2-platform-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.cmhv2-platform{
padding:45px;
border-radius:32px;
color:#fff;
}

.cmhv2-platform.official{
background:
linear-gradient(
135deg,
#7c3aed,
#4f46e5
);
}

.cmhv2-platform.shop{
background:
linear-gradient(
135deg,
#f97316,
#ec4899
);
}

.cmhv2-platform h3{
font-size:36px;
font-weight:900;
margin-bottom:15px;
}

.cmhv2-platform p{
line-height:1.9;
margin-bottom:20px;
}

.cmhv2-url{
padding:15px;
background:rgba(255,255,255,.15);
border-radius:12px;
margin-bottom:20px;
}

.cmhv2-platform a{
display:inline-flex;
align-items:center;
justify-content:center;
height:54px;
padding:0 24px;
background:#fff;
color:#111827;
font-weight:800;
text-decoration:none;
border-radius:14px;
}

/* =========================================================
CONTACT
========================================================= */

.cmhv2-contact{
padding:120px 0;
}

.cmhv2-contact-box{
text-align:center;
}

.cmhv2-contact-box h2{
font-size:58px;
font-weight:900;
margin-bottom:12px;
}

.cmhv2-contact-box p{
color:#64748b;
margin-bottom:40px;
}

.cmhv2-contact-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.cmhv2-contact-grid a{
padding:28px;
background:#fff;
border-radius:24px;
border:1px solid #edf2f7;
box-shadow:
0 10px 30px rgba(0,0,0,.05);
text-decoration:none;
font-weight:800;
color:#111827;
}

/* =========================================================
SUCCESS
========================================================= */

.cmhv2-success{
margin-top:15px;
padding:14px;
background:#dcfce7;
border-radius:12px;
font-weight:700;
}

.cmhv2-error{
margin-top:15px;
padding:14px;
background:#fee2e2;
border-radius:12px;
font-weight:700;
}

/* =========================================================
TABLET
========================================================= */

@media(max-width:1100px){

.cmhv2-grid,
.cmhv2-showcase-grid{
grid-template-columns:1fr;
}

.cmhv2-categories-grid{
grid-template-columns:repeat(2,1fr);
}

.cmhv2-benefits-grid{
grid-template-columns:repeat(2,1fr);
}

.cmhv2-why-grid{
grid-template-columns:repeat(2,1fr);
}

.cmhv2-platform-grid{
grid-template-columns:1fr;
}

.cmhv2-contact-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

.cmhv2-hero{
padding:50px 0;
}

.cmhv2-left h1{
font-size:42px;
letter-spacing:-1px;
}

.cmhv2-row{
grid-template-columns:1fr;
}

.cmhv2-heading h2,
.cmhv2-showcase-content h2,
.cmhv2-contact-box h2{
font-size:34px;
}

.cmhv2-categories-grid,
.cmhv2-benefits-grid,
.cmhv2-why-grid{
grid-template-columns:repeat(2,1fr);
gap:14px;
}

.cmhv2-card,
.cmhv2-benefit,
.cmhv2-why-card{
padding:20px;
}

.cmhv2-contact-grid{
grid-template-columns:repeat(2,1fr);
gap:14px;
}

.cmhv2-contact-grid a{
padding:18px;
}

.cmhv2-platform{
padding:25px;
}

.cmhv2-platform h3{
font-size:28px;
}

}