*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
    font-family:'Inter',sans-serif;
    background:#070b14;
    color:#fff;
    overflow-x:hidden;
}

/* ================= HEADER ================= */
header{
    position:fixed;
    top:0;
    width:100%;
    padding:18px 0;
    background:rgba(7,11,20,0.4);
    backdrop-filter:blur(10px);
    z-index:1000;
    transition:.3s ease;
}
header.scrolled{
    background:rgba(7,11,20,0.95);
}

.nav-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{height:38px;}

.nav-links{
    display:flex;
    gap:30px;
    align-items:center;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    opacity:.85;
}
.nav-links a:hover{opacity:1;}

.btn{
    display:inline-block;
    padding:12px 24px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.btn-primary{
    background:linear-gradient(135deg,#6a5cff,#00c2ff);
    color:#fff;
}
.btn-primary:hover{opacity:.9;}

/* Burger */
.menu-toggle{
display:none;
width:30px;
height:22px;
flex-direction:column;
justify-content:space-between;
cursor:pointer;
}

.menu-toggle span{
width:100%;
height:3px;
background:white;
border-radius:3px;
}

/* ================= HERO ================= */
.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    background-image:url('../public/images/no_text_landscape.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    padding-top:100px;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(5,8,20,0.9) 0%, rgba(5,8,20,0.8) 35%, rgba(5,8,20,0.3) 65%, rgba(0,0,0,0) 100%);
}

.hero-content{
    position:relative;
    width:90%;
    max-width:1200px;
    margin:auto;
    z-index:2;
}

.left-content{
    max-width:600px;
}

.left-content h1{
    font-size:clamp(2.2rem,5vw,3.5rem);
    font-weight:800;
    margin-bottom:20px;
    line-height:1.1;
}

.left-content p{
    font-size:1.1rem;
    opacity:.9;
    margin-bottom:30px;
    line-height:1.6;
}

.sub-text{
    margin-top:20px;
    font-size:.95rem;
    opacity:.8;
}

.card-text{
    font-size:0.75rem;
    letter-spacing:0.08em;
    text-transform:uppercase;
    opacity:.75;
}

.card h3,
.ai-card h3{
margin-bottom:12px;
}

.card p,
.ai-card p{
line-height:1.6;
opacity:0.9;
}

/* Desktop / Mobile swap */
.desktop-text{display:block;}
.mobile-text{display:none;}

/* Hero text blocks */
.desktop-text p{margin-bottom:18px;}
.mobile-text p{margin:10px 0 14px;}
.mobile-text p:first-of-type{margin-top:14px;}




/* ===== WORKFLOW QUICK FIX ===== */

.workflow-grid::before{
content:"";
position:absolute;
top:50%;
left:10%;
right:10%;
height:2px;
background:rgba(0,194,255,0.25);
z-index:1;
}

.workflow-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:1000px;
margin:60px auto 0 auto;
align-items:stretch;
position:relative;
}

.workflow-arrow{
display:none;
}

.workflow-card{
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.08);
border-radius:16px;
padding:32px;
text-align:center;
position:relative;
z-index:2;
}

.workflow-card:hover{
transform:translateY(-6px);
border-color:rgba(0,194,255,0.5);
box-shadow:0 0 8px rgba(0,194,255,0.4);
}

.workflow-icon{
font-size:34px;
margin-bottom:12px;
}

.workflow-quick h2{
margin-bottom:20px;
}

.section-intro{
font-size:1.1rem;
opacity:.85;
max-width:720px;
margin:0 auto 70px auto;
}

/* mobile */

@media (max-width:768px){

.workflow-grid{
grid-template-columns:1fr;
gap:30px;
}

}




/* ================= HOW IT WORKS HERO ================= */

.how-hero{
padding:180px 0 120px 0;
text-align:center;

background:
radial-gradient(800px 400px at 50% -100px, rgba(0,194,255,0.18), transparent 70%),
linear-gradient(180deg,#070b14 0%, #0b1222 100%);
}

.how-hero-inner{
width:90%;
max-width:800px;
margin:auto;
}

.how-hero h1{
font-size:clamp(2.4rem,5vw,3.4rem);
margin-bottom:24px;
}

.how-hero p{
font-size:1.15rem;
opacity:.9;
line-height:1.7;
margin-bottom:35px;
}

.example-flow{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
margin-top:40px;
text-align:center;
}

.example-step{
background:linear-gradient(180deg,#101a33,#0c1326);
padding:35px;
border-radius:18px;
border:1px solid rgba(0,194,255,0.18);
}

.example-step p{
margin-top:14px;
opacity:.9;
line-height:1.7;
}

@media (max-width:768px){
.example-flow{
grid-template-columns:1fr;
}
}

/* ================= ENHANCED STATS STRIP ================= */

.stats-strip{
  background:#0f172a;
  padding:40px 0;   /* taller strip */
  border-top:1px solid rgba(0,194,255,0.15);
  border-bottom:1px solid rgba(0,194,255,0.15);
}

.stats-container{
  width:90%;
  max-width:1200px;
  margin:auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;     /* more breathing space */
  text-align:center;
}

/* Desktop Top Row */

.stats-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
  max-width:850px;
  margin:auto;
}

.stat-item{
  font-size:1.1rem;   /* bigger base text */
  opacity:.9;
  white-space:nowrap;
}

.stat-item strong{
  font-size:2rem;     /* larger headline numbers */
  font-weight:800;
  margin-right:8px;
  background:linear-gradient(90deg,#1ecad3,#4f86d9);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Trust line */
.trust-row{
  font-size:1rem;     /* slightly larger */
  opacity:.9;
}

.stars{
  color:#00e5ff;
  margin-right:8px;
  letter-spacing:2px;
}


/* ================= CONTENT SECTIONS ================= */
.section{
    padding:90px 0;
    position:relative;
}

.section::after{
    content:'';
    position:absolute;
    bottom:-1px;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(0,229,255,0.6),
        rgba(106,92,255,0.6),
        transparent
    );
    opacity:.4;
}

.section::before{
    content:'';
    position:absolute;
    inset:-2px;
    pointer-events:none;
    opacity:0.55;
    background:
      radial-gradient(900px 380px at 15% 0%, rgba(106,92,255,0.12), transparent 60%),
      radial-gradient(900px 420px at 85% 10%, rgba(0,194,255,0.10), transparent 60%);
}

.container{width:90%;max-width:1200px;margin:auto;}
h2{
    text-align:center;
    font-size:2.4rem;
    margin-bottom:40px;
    color:#4da6ff;
    letter-spacing:0.5px;
}

h3{
    background:linear-gradient(90deg,#1ecad3,#4f86d9);
				-webkit-background-clip:text;
				-webkit-text-fill-color:transparent;
}

.panel{
    position:relative;
    background:linear-gradient(180deg,#0e1525,#0c1324);
    padding:50px;
    border-radius:20px;
    border:1px solid rgba(0,194,255,0.15);
    overflow:hidden;
}

.panel::before{
    content:'';
    position:absolute;
    top:-200px;
    right:-200px;
    width:400px;
    height:400px;
    background:radial-gradient(circle,
        rgba(0,229,255,0.15),
        transparent 70%);
    pointer-events:none;
}

.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:linear-gradient(180deg, rgba(17,26,47,0.95) 0%, rgba(12,18,34,0.95) 100%);
    padding:30px;
    border-radius:18px;
    border:1px solid rgba(0,194,255,0.12);
    box-shadow:0 10px 40px rgba(0,0,0,0.25);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
				text-align:center;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:
        0 0 20px rgba(0,229,255,0.4),
        0 0 40px rgba(106,92,255,0.25);
}

.desktop-only{
display:block;
}

.mobile-only{
display:none;
}

@media (max-width:768px){

.desktop-only{
display:none;
}
}

.mobile-only{
display:block;
}

.support-phone{
margin-top:10px;
opacity:.85;
font-size:.9rem;
color:#00e5ff;
}


.workflow-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:50px;
margin-top:50px;
position:relative;
}

.workflow-grid::before{
content:"";
position:absolute;
top:52px;
left:0;
right:0;
height:2px;
background:linear-gradient(
90deg,
rgba(106,92,255,0.5),
rgba(0,194,255,0.7)
);
z-index:1;
}

.workflow-card{
position:relative;
text-align:center;
background:linear-gradient(180deg, rgba(17,26,47,0.95) 0%, rgba(12,18,34,0.95) 100%);
padding:35px;
border-radius:20px;
border:1px solid rgba(106,92,255,0.16);
box-shadow:0 10px 40px rgba(0,0,0,0.25);
transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
z-index:2;
}

.workflow-card:hover{
transform:translateY(-6px);
border-color:rgba(0,194,255,0.45);

box-shadow:
0 0 25px rgba(0,194,255,0.25),
0 10px 50px rgba(0,0,0,0.45);
}

.step-number{
width:36px;
height:36px;
margin:0 auto 20px;
border-radius:50%;
background:linear-gradient(135deg,#6a5cff,#00c2ff);
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
font-weight:600;
}

.workflow-list{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.workflow-list li{
    padding:14px 0;
    border-top:1px solid rgba(255,255,255,.08);
    padding-left:26px;
    position:relative;
}

.workflow-list li::before{
content:"";
width:6px;
height:6px;
background:#00c2ff;
border-radius:50%;
position:absolute;
left:0;
top:22px;
}

#workflow {
    padding-top: 100px;
}



/* ================= ENTERPRISE SUGGESTION ================= */

.enterprise-card{
max-width:700px;
margin:50px auto 0 auto;
padding:40px 35px;

background:rgba(255,255,255,0.03);
border:1px solid rgba(0,194,255,0.35);
border-radius:16px;

text-align:center;
}

.enterprise-sub{
opacity:.85;
margin-bottom:20px;
}

.enterprise-features{
display:flex;
flex-wrap:wrap;
gap:12px;
justify-content:center;
margin-bottom:25px;
}

.enterprise-features span{
padding:8px 14px;
border-radius:999px;

background:rgba(0,194,255,0.12);
border:1px solid rgba(0,194,255,0.25);
font-size:.85rem;
}

.enterprise-note{
opacity:.8;
max-width:520px;
margin:0 auto 30px auto;
}

/* mobile */

@media (max-width:768px){
.enterprise-features{
grid-template-columns:1fr 1fr;
}
}




/* ================= STEP 2 ================= */

.walkthrough-path{
margin-top:60px;
}

.walkthrough-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
margin-top:30px;
}

.walk-step{
background:linear-gradient(180deg,#101a33,#0c1326);
padding:26px;
border-radius:16px;
border:1px solid rgba(0,194,255,0.2);
text-align:left;
}

.walk-step span{
display:inline-flex;
align-items:center;
justify-content:center;
width:32px;
height:32px;
border-radius:50%;
background:linear-gradient(135deg,#6a5cff,#00c2ff);
font-weight:700;
margin-bottom:14px;
}

.walk-step h4{
margin-bottom:8px;
font-size:1rem;
}

.walk-step p{
opacity:.85;
font-size:.95rem;
line-height:1.6;
}

@media (max-width:768px){
.walkthrough-grid{
grid-template-columns:1fr;
}
}


/* ================= TRY HERO ================= */

.hero-wrap{
max-width:1400px;
margin:80px auto 0 auto;
padding:0 20px;
}

.try-hero{
position:relative;
min-height:520px;
background-image:url("../public/images/try-hero.jpg");
background-size:cover;
background-position:center;
border-radius:18px;
overflow:visible;
display:flex;
align-items:center;

}


/* Floating CTA box */

.try-hero-overlay{
position:absolute;
right:8%;
top:55%;              /* pushes the card lower */
transform:translate(-2%);
max-width:460px;
padding:40px 45px;
background:rgba(10,15,30,0.82);
backdrop-filter:blur(14px);
border-radius:16px;
border:1px solid rgba(0,194,255,0.25);
box-shadow:0 30px 80px rgba(0,0,0,0.6);
}

.try-hero-overlay h2{
font-size:2rem;
margin-bottom:15px;
color:#4da6ff;
}

.try-hero-overlay p{
font-size:.95rem;
line-height:1.4;
margin-bottom:0;
opacity:.9;
}



/* ================= FREE PLAN ================= */

.plan-card{
max-width:650px;
margin:auto;
padding:40px;
border-radius:14px;
background:linear-gradient(180deg,#0e141b,#0b1117);
border:1px solid #1e3a5f;
box-shadow:0 10px 30px rgba(0,0,0,0.35);
}

.plan-header{
display:flex;
align-items:center;
gap:16px;
margin-bottom:10px;
}

.plan-number{
width:42px;
height:42px;
border-radius:50%;
background:#0c1b2e;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
color:#fff;
}

.plan-title-wrap h3{
margin:0;
font-size:20px;
}

.plan-title-wrap p{
margin:4px 0 0;
opacity:.75;
font-size:14px;
}

.plan-badge{
display:inline-block;
background:#1ecb84;
color:#08221a;
font-weight:700;
font-size:12px;
padding:6px 12px;
border-radius:20px;
margin-top:14px;
}

.plan-price{
font-size:42px;
font-weight:800;
color:#39f2a3;
margin:18px 0 10px;
}

.plan-features{
list-style:none;
padding:0;
margin:20px 0;
}

.plan-features li{
margin:10px 0;
padding-left:18px;
position:relative;
}

.plan-features li::before{
content:"\2022";
position:absolute;
left:0;
color:#4ea3ff;
font-size:18px;
line-height:1;
}

.plan-upgrade{
font-size:14px;
opacity:.8;
}

.plan-upgrade a{
color:#4ea3ff;
text-decoration:none;
}






/* ================= MOBILE ================= */

@media (max-width:768px){

.hero-wrap{
max-width:1400px;
margin:80px auto 0 auto;
padding:0 20px;
}

.try-hero{
margin-top:80px;
min-height:350px;
margin-bottom:50px;
background-position:35% center;
filter:brightness(1.25);
}

.try-hero-overlay{
position:relative;
z-index:5;
left:50%;
top:55%;
transform:translate(-40%,80%);
width:88%;
max-width:380px;
padding:22px 22px 2px 22px;
background:rgba(10,15,30,0.82);
backdrop-filter:blur(10px);
border-radius:14px;
border:1px solid rgba(0,194,255,0.25);
}

.try-hero-overlay h2{
font-size:1.45rem;
line-height:1.25;
margin-bottom:0;
}

.try-hero-overlay p{
font-size:.95rem;
line-height:1.2;
opacity:.9;
}
}



/* ================= TERMS BOX ================= */

.upload-instructions,
.terms-section{
max-width:900px;
margin:20px auto;
padding:20px;
background:transparent;
border:1px solid rgba(0,194,255,0.15);
border-radius:12px;
}

.upload-instructions ul{
padding-left:18px;
line-height:1.6;
}

.upload-instructions p,
.upload-instructions li,
.terms-scroll p{
color:#333;
}

.upload-instructions{
color:#eaf2ff;
}

.upload-instructions p,
.upload-instructions li{
color:#d6e4f0;
}

.upload-instructions strong{
color:#ffffff;
}

.terms-scroll{
max-height:220px;
overflow-y:auto;
padding:15px;
margin:15px 0;
border-radius:8px;
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.08);
font-size:14px;
line-height:1.6;
}

.terms-scroll::-webkit-scrollbar{
width:6px;
}

.terms-scroll::-webkit-scrollbar-thumb{
background:#00c2ff;
border-radius:10px;
}

.terms-scroll{
color:#e6edf7;
}

.terms-scroll p{
color:#d6e4f0;
}

.terms-scroll strong{
color:#ffffff;
}

.checkbox-line{
display:flex;
gap:10px;
align-items:flex-start;
margin-top:10px;
font-size:14px;
}

.checkbox-line input{
margin-top:4px;
}

.terms-box{
border:1px solid rgba(255,255,255,0.15);
border-radius:10px;
background:rgba(255,255,255,0.03);
margin-top:30px;
overflow:hidden;
position:relative;
}

.terms-content{
max-height:420px;
overflow-y:auto;
padding:25px;
font-size:0.9rem;
line-height:1.6;
}

.terms-content h3{
margin-bottom:10px;
}

.terms-content p{
margin-bottom:14px;
}

.terms-box:after{
content:"";
position:absolute;
bottom:0;
left:0;
right:0;
height:40px;
background:linear-gradient(transparent, #0f172a);
pointer-events:none;
}

.terms-agree{
margin-top:20px;
text-align:center;
}

.terms-agree input{
margin-right:8px;
}

#continueBtn{
margin-top:20px;
}

@media (max-width:768px){
.terms-content{
max-height:260px;
padding:18px;
font-size:0.85rem;
}
.terms-box{
margin-top:20px;
}
}

.submit-section{
text-align:center;
margin:60px auto 20px auto;
max-width:700px;
}

.submit-section .btn{
padding:16px 34px;
font-size:1.1rem;
}

.submit-note{
margin-top:12px;
opacity:.8;
font-size:.9rem;
}

#submitOrder:disabled{
opacity:.45;
cursor:not-allowed;
}



/* ================= STEP 3 � PHOTO ORDER ================= */

.photo-order-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
max-width:900px;
margin:40px auto;
}

.photo-step{
background:linear-gradient(180deg,#101a33,#0c1326);
padding:18px 22px;
border-radius:12px;
border:1px solid rgba(0,194,255,0.2);
font-weight:600;
display:flex;
align-items:center;
gap:12px;
}

.photo-step span{
display:inline-flex;
align-items:center;
justify-content:center;
width:28px;
height:28px;
border-radius:50%;
background:linear-gradient(135deg,#6a5cff,#00c2ff);
font-size:14px;
font-weight:700;
flex-shrink:0;
}

/* MOBILE */
@media (max-width:768px){

.photo-order-grid{
grid-template-columns:1fr;
gap:14px;
}

.photo-step{
padding:16px 18px;
}

}



/* ================= DEMO VIDEO ================= */

.demo-intro{
text-align:center;
max-width:700px;
margin:0 auto 40px auto;
opacity:.9;
}

.demo-video{
max-width:900px;
margin:0 auto;
}

.video-placeholder{
height:420px;
border-radius:20px;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

background:linear-gradient(180deg,#0f1a33,#0a1224);

border:1px solid rgba(0,194,255,0.25);

box-shadow:0 25px 60px rgba(0,0,0,0.45);
}

.play-button{
width:80px;
height:80px;

border-radius:50%;

background:linear-gradient(135deg,#6a5cff,#00c2ff);

margin-bottom:20px;

position:relative;
}

.play-button::after{
content:"";
position:absolute;

left:32px;
top:24px;

border-left:18px solid white;
border-top:12px solid transparent;
border-bottom:12px solid transparent;
}



/* ================= VINTO FORM ================= */

.vinto-form{
max-width:700px;
margin:40px auto 0 auto;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.form-group{
display:flex;
flex-direction:column;
}

.form-group.full{
grid-column:1 / -1;
}

.form-group label{
margin-bottom:6px;
font-size:.9rem;
opacity:.85;
}

.vinto-form input{
background:#0c1326;
border:1px solid rgba(0,194,255,0.25);
border-radius:8px;
padding:12px 14px;
color:#fff;
font-family:'Inter',sans-serif;
}

.vinto-form input:focus{
outline:none;
border-color:#4da6ff;
box-shadow:0 0 0 2px rgba(77,166,255,0.15);
}


/* ================= PHOTO UPLOAD ================= */
.upload-box{
max-width:700px;
margin:40px auto;
border:2px dashed rgba(0,194,255,0.35);
border-radius:14px;
padding:50px 20px;
text-align:center;
background:rgba(255,255,255,0.02);
position:relative;
}

.upload-box input{
position:absolute;
inset:0;
opacity:0;
cursor:pointer;
}

.upload-inner{
pointer-events:none;
}

.upload-icon{
font-size:40px;
margin-bottom:10px;
color:#00c2ff;
}

.upload-count{
margin-top:12px;
opacity:.8;
}

.upload-tip{
text-align:center;
margin-top:10px;
opacity:.9;
}

.upload-limit{
text-align:center;
margin-top:10px;
font-size:.9rem;
opacity:.7;
}



/* ================= AI PIPELINE ================= */

.pipeline-grid{
display:grid;
grid-template-columns:1fr auto 1fr auto 1fr;
align-items:center;
gap:30px;
margin-top:50px;
}

.pipeline-step{
text-align:center;
background:linear-gradient(180deg,#101a33,#0c1326);
padding:35px;
border-radius:18px;
border:1px solid rgba(0,194,255,0.18);
}

.pipeline-icon{
font-size:42px;
margin-bottom:15px;
}

.pipeline-arrow{
font-size:36px;
color:#00c2ff;
text-align:center;
animation:arrowMove 2s ease-in-out infinite;
}

@media (max-width:768px){

.pipeline-grid{
grid-template-columns:1fr;
}

.pipeline-arrow{
transform:rotate(90deg);
}
}


/* ================= PRICING ================= */

.price{
font-size:3rem;
font-weight:800;
margin:20px 0 10px 0;
}

.price span{
font-size:.9rem;
font-weight:500;
opacity:.7;
}

.price-note{
opacity:.85;
margin-bottom:20px;
}

.featured{
border:2px solid #00c2ff;
box-shadow:
0 0 25px rgba(0,194,255,0.25),
0 10px 50px rgba(0,0,0,0.45);
}

.feature-highlight{
display:inline-block;
margin:10px 0 20px 0;
padding:8px 16px;
font-weight:600;
border-radius:20px;
background:linear-gradient(135deg,#6a5cff,#00c2ff);
color:#fff;
}

.workflow-list li strong{
color:#00e5ff;
font-weight:700;
}

.pricing-note{
text-align:center;
max-width:700px;
margin:0 auto 40px auto;

font-size:1rem;
opacity:.85;
line-height:1.6;
}

.pricing-note strong{
color:#00e5ff;
font-weight:600;
}



/* ================= FAQ ================= */

.faq{
max-width:800px;
margin:0 auto;
}

.faq-item{
border-bottom:1px solid rgba(255,255,255,0.08);
}

.faq-question{
width:100%;
background:none;
border:none;
color:#fff;
font-size:1.1rem;
text-align:left;
padding:18px 0;
cursor:pointer;
position:relative;
}

.faq-question::after{
content:"+";
position:absolute;
right:0;
font-size:20px;
color:#00c2ff;
}

.faq-item.active .faq-question::after{
content:"-";
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .3s ease;
opacity:.85;
line-height:1.6;
}

.faq-item.active .faq-answer{
max-height:200px;
padding-bottom:18px;
}



/* ================= AI ================= */
#ai-engines{
    background:
      radial-gradient(900px 420px at 50% -120px, rgba(0,194,255,0.14), transparent 65%),
      radial-gradient(900px 420px at 15% 20%, rgba(106,92,255,0.12), transparent 60%),
      linear-gradient(180deg, #101a33 0%, #0c1326 100%);
}

.ai-header{text-align:center;margin-bottom:50px;}
.ai-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;}
.ai-card{
    background:linear-gradient(180deg, rgba(16,28,58,0.92) 0%, rgba(12,20,40,0.92) 100%);
    padding:35px;
    border-radius:20px;
    border:1px solid rgba(0,194,255,0.18);
    box-shadow:0 10px 40px rgba(0,0,0,0.25);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
				text-align:center;
}
.ai-card:hover{
    transform:translateY(-6px);
    border-color:rgba(0,194,255,0.40);
    box-shadow:0 18px 60px rgba(0,194,255,0.12), 0 14px 50px rgba(0,0,0,0.35);
}


/* CTA */
.cta{text-align:center;}

/* FOOTER */
footer{
    background:#070b14;
    padding:60px 0;
    text-align:center;
    opacity:.7;
    font-size:.9rem;
}

.footer-copy a{
color:#fff;
opacity:.75;
text-decoration:none;
}

.footer-copy a:hover{
opacity:1;
color:#4da6ff;
}




/* ================= CONTACT FORM ================= */

.contact-form{
max-width:700px;
margin:40px auto 0 auto;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:20px;
}

.form-group{
display:flex;
flex-direction:column;
}

.form-group.full{
grid-column:1 / -1;
}

.form-group label{
margin-bottom:6px;
font-size:.9rem;
opacity:.8;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
background:#0c1326;
border:1px solid rgba(0,194,255,0.25);
border-radius:8px;
padding:12px 14px;
color:#fff;
font-family:'Inter',sans-serif;
font-size:.95rem;
}

.contact-form select{
appearance:none;
-webkit-appearance:none;
background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234da6ff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
background-repeat:no-repeat;
background-position:right 14px center;
padding-right:36px;
cursor:pointer;
}

.contact-form select option{
background:#0c1326;
color:#fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
outline:none;
border-color:#4da6ff;
box-shadow:0 0 0 2px rgba(77,166,255,0.15);
}

.contact-form button{
margin-top:15px;
}

/* MOBILE */

@media (max-width:768px){

.form-grid{
grid-template-columns:1fr;
}

}




/* =============== COMPARISON =============== */

.compare-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
max-width:900px;
margin:40px auto;
}

.compare-card{
background:linear-gradient(180deg,#101a33,#0c1326);
padding:35px;
border-radius:18px;
border:1px solid rgba(0,194,255,0.18);
text-align:center;
}

.compare-card.highlight{
border:2px solid #00c2ff;
box-shadow:
0 0 25px rgba(0,194,255,0.25),
0 10px 50px rgba(0,0,0,0.45);
}

.compare-list{
list-style:none;
padding:0;
margin-top:20px;
}

.compare-list li{
padding:10px 0;
border-bottom:1px solid rgba(255,255,255,0.08);
}

/* MOBILE */
@media (max-width:768px){
.compare-grid{
grid-template-columns:1fr;
}
}



/* =============== ABOUT PAGE =============== */

.about-hero{
padding:180px 20px 100px;
text-align:center;
max-width:800px;
margin:auto;
}

.about-hero p{
opacity:.9;
line-height:1.7;
font-size:1.1rem;
}

.about-section{
max-width:900px;
margin:auto;
padding:80px 20px;
text-align:center;
}

.about-section p{
opacity:.9;
line-height:1.7;
max-width:700px;
margin:14px auto;
}

/* =============== FOUNDERS =============== */

.founders{
padding:100px 0;
}

.founders-grid{
width:90%;
max-width:900px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

@media (max-width:768px){
.founders-grid{
grid-template-columns:1fr;
}
}

.founder-card{
background:linear-gradient(180deg,#101a33,#0c1326);
padding:40px;
border-radius:20px;
border:1px solid rgba(0,194,255,0.18);
box-shadow:0 10px 40px rgba(0,0,0,0.25);
text-align:center;
transition:transform .25s ease;
}

.founder-card:hover{
transform:translateY(-6px);
}

.founder-card img{
width:160px;
height:160px;
border-radius:50%;
object-fit:cover;
margin-bottom:22px;
border:3px solid rgba(0,194,255,0.4);
}

.founder-role{
opacity:.7;
font-size:.9rem;
margin-bottom:18px;
}

.founder-card p{
opacity:.9;
line-height:1.7;
margin-bottom:14px;
text-align:left;
}


/* =============== VALUES =============== */

.values-section{
padding:80px 0;
}

.values-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.value-card{
background:linear-gradient(180deg,#071426,#020913);
border-radius:18px;
padding:40px;
border:1px solid rgba(0,194,255,0.2);
box-shadow:0 25px 70px rgba(0,0,0,0.5);
transition:all .25s ease;
}

.value-card:hover{
transform:translateY(-6px);
box-shadow:0 35px 80px rgba(0,0,0,0.7);
}

.value-card h3{
color:#1fc7d4;
margin-bottom:15px;
font-size:1.35rem;
}

.value-card p{
color:#c9d6e3;
line-height:1.6;
}


@media (max-width:768px){

.values-grid{
grid-template-columns:1fr;
gap:22px;
}

.value-card{
padding:28px;
}
}



/* =============== CTA =============== */

.about-cta{
text-align:center;
padding:100px 20px;
}

.about-btn{
display:inline-block;
margin-top:20px;
padding:14px 28px;
border-radius:8px;
background:linear-gradient(135deg,#6a5cff,#00c2ff);
color:white;
text-decoration:none;
font-weight:600;
}

/* MOBILE */

@media (max-width:768px){

.founders-grid{
grid-template-columns:1fr;
}

.founder-card p{
text-align:center;
}
}





/* =============== CONTACT =============== */
.contact-hero{
text-align:center;
padding-top:140px;
}

.contact-intro{
max-width:620px;
margin:20px auto 0;
opacity:.9;
font-size:1.1rem;
line-height:1.7;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.contact-card{
text-align:center;
padding:40px;
}

.contact-card h3{
margin-bottom:15px;
font-size:1.4rem;
}

.contact-link{
display:inline-block;
margin-top:15px;
color:#4da6ff;
font-weight:600;
text-decoration:none;
}

.contact-link:hover{
text-decoration:underline;
}


/* Mobile */
@media (max-width:768px){
.contact-grid{
grid-template-columns:1fr;
gap:20px;
}

.contact-hero{
padding-top:100px;
}
}



/* =============== GLOBAL =============== */

.contact-global{
position:relative;
padding:180px 0;
text-align:center;
}

.global-bg{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
opacity:0.25;
}

.global-overlay{
position:relative;
max-width:900px;
margin:auto;
}

.global-sub{
opacity:.85;
margin:20px auto 50px;
max-width:600px;
}

.global-cards{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.global-card{
background:rgba(10,20,40,0.75);
backdrop-filter:blur(10px);
padding:35px 40px;
border-radius:16px;
border:1px solid rgba(0,194,255,0.2);
text-decoration:none;
color:white;
transition:all .3s ease;
}

.global-card:hover{
transform:translateY(-6px);
border-color:#4da6ff;
}

.global-card h3{
margin-bottom:10px;
}

.global-card p{
opacity:.8;
}

.contact-phone{
padding:140px 0;
}

.contact-divider{
height:1px;
background:rgba(255,255,255,0.08);
margin:18px 0;
}

.phone-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:left;
max-width:900px;
margin:auto;
}

.phone-image img{
width:100%;
border-radius:20px;
}

.phone-details h2{
font-size:2rem;
margin-bottom:8px;
text-align:left;
}

.phone-intro{
text-align:left;
opacity:.85;
margin-bottom:18px;
}

.phone-number{
margin-bottom:16px;
}

.phone-number span{
display:block;
opacity:.65;
font-size:.9rem;
margin-bottom:4px;
letter-spacing:.3px;
}

.phone-number a{
font-size:1.3rem;
font-weight:600;
color:#4da6ff;
text-decoration:none;
line-height:1.3;
transition:opacity .3s ease;
}

.phone-number a:hover{
text-decoration:underline;
}

.phone-number a.disabled{
pointer-events:none;
opacity:.5;
}

@media (max-width:768px){
.phone-grid{
grid-template-columns:1fr;
gap:10px;
text-align:left;
}
}

.brisbane-time{
margin-bottom:20px;
opacity:0.85;
font-size:0.95rem;
}

.office-status{
margin-bottom:25px;
}

.brisbane-time{
opacity:.9;
margin-bottom:6px;
}

.status-text{
font-weight:600;
margin-bottom:6px;
}

.status-text.open{
color:#00d084;
}

.status-text.closed{
color:#ff5c5c;
}

.office-hours{
opacity:.7;
font-size:.9rem;
}



/* =============== VINTO FOOTER =============== */

.vinto-footer{
background:#060913;
border-top:1px solid rgba(0,194,255,0.15);
padding:70px 0 40px 0;
}

.footer-container{
width:90%;
max-width:1200px;
margin:auto;
}

.footer-top{
display:grid;
grid-template-columns:1.2fr 3fr;
gap:60px;
margin-bottom:50px;
}

.footer-brand img{
height:40px;
margin-bottom:16px;
}

.footer-brand p{
opacity:.8;
line-height:1.7;
max-width:320px;
}

.footer-columns{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

.footer-cta h4{
font-size:15px;
letter-spacing:.08em;
margin-bottom:14px;
line-height:1.3;
}

.footer-col h4{
margin-bottom:16px;
font-size:14px;
letter-spacing:.05em;
text-transform:uppercase;
opacity:.8;
}

.footer-col a{
display:block;
margin-bottom:10px;
text-decoration:none;
color:#fff;
opacity:.75;
transition:.2s;
}

.footer-col a:hover{
opacity:1;
color:#4da6ff;
}

.footer-cta p{
opacity:.75;
margin-bottom:16px;
font-size:.9rem;
line-height:1.6;
}

.footer-cta .btn{
margin-top:10px;
padding:14px 22px;
display:inline-block;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,0.08);
padding-top:25px;
display:flex;
justify-content:space-between;
align-items:center;
font-size:.85rem;
opacity:.7;
}

.footer-trust{
color:#00e5ff;
letter-spacing:1px;
}

.sales-desktop{
display:block;
}

.sales-mobile{
display:none;
}

@media (max-width:768px){

.sales-desktop{
display:none;
}

.sales-mobile{
display:block;
}

.sales-desktop a,
.sales-mobile a{
color:#00e5ff;
text-decoration:none;
font-weight:600;
}

.sales-desktop a:hover,
.sales-mobile a:hover{
opacity:.8;
}
}






/* ============================================= LEGAL ============================================= */

.legal-nav-panel{
text-align:center;
}

.legal-intro{
max-width:700px;
margin:0 auto 35px auto;
opacity:.9;
line-height:1.7;
}

.legal-card-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
margin-top:30px;
}

.legal-card{
text-decoration:none;
color:#fff;
}

.legal-card p{
margin-top:10px;
opacity:.85;
line-height:1.6;
}

.legal-panel{
max-width:1000px;
margin:auto;
}

.legal-panel h2{
text-align:left;
margin-bottom:10px;
}

.legal-updated{
opacity:.7;
margin-bottom:30px;
font-size:.95rem;
}

.legal-panel h3{
margin-top:28px;
margin-bottom:12px;
font-size:1.15rem;
}

.legal-panel p{
line-height:1.8;
opacity:.9;
margin-bottom:14px;
}

.legal-list{
margin:0 0 18px 20px;
opacity:.9;
line-height:1.8;
}

.legal-list li{
margin-bottom:8px;
}

@media (max-width:768px){
.legal-card-grid{
grid-template-columns:1fr;
gap:20px;
}

.legal-panel h2{
text-align:center;
}
}




/*==================== SOCIAL FOOTER ====================*/

.footer-social{
display:flex;
align-items:center;
justify-content:center;
gap:30px;
margin:40px 0 25px 0;
}

.social-line{
flex:1;
height:1px;
background:linear-gradient(90deg,transparent,#3b556f,transparent);
}

.social-icons{
display:flex;
gap:22px;
align-items:center;
}

.social-icons a{
width:22px;
height:22px;
opacity:.75;
transition:.25s;
}

.social-icons a:hover{
opacity:1;
transform:translateY(-2px);
}

.social-icons svg{
width:100%;
height:100%;
stroke:#b8c7d9;
stroke-width:1.6;
fill:none;
}


/* =============== BLOG HERO =============== */

.blog-hero{
padding:180px 0 120px 0;
text-align:center;

background:
radial-gradient(800px 400px at 50% -100px, rgba(0,194,255,0.18), transparent 70%),
linear-gradient(180deg,#070b14 0%, #0b1222 100%);
}

.blog-hero-inner{
width:90%;
max-width:800px;
margin:auto;
}

.blog-hero h1{
font-size:clamp(2.4rem,5vw,3.4rem);
margin-bottom:24px;
}

.blog-hero p{
font-size:1.15rem;
opacity:.9;
line-height:1.7;
margin-bottom:35px;
}


/* ================= TRY FREE HERO ================= */
.try-hero-inner{
width:90%;
max-width:800px;
margin:auto;
}

.try-hero h1{
font-size:clamp(2.4rem,5vw,3.4rem);
margin-bottom:24px;
}

.try-hero p{
font-size:1.15rem;
opacity:.9;
line-height:1.7;
margin-bottom:35px;
}


/* ================= MOBILE ================= */
@media (max-width:768px){

.pipeline-arrow{
transform:rotate(90deg);
display:block;
margin:10px auto;
}

.footer-top{
grid-template-columns:1fr;
gap:40px;
}

.footer-columns{
grid-template-columns:1fr 1fr;
gap:30px;
}

.footer-bottom{
flex-direction:column;
gap:12px;
text-align:center;
}

.stats-row{
  flex-direction:column;
  gap:14px;
}

.nav-links{
position:absolute;
top:70px;
right:0;
background:#070b14;
width:100%;

flex-direction:column;
gap:20px;
padding:30px 0;

max-height:0;
overflow:hidden;

opacity:0;
transform:translateY(-10px);

transition:
max-height .35s ease,
opacity .25s ease,
transform .35s ease;
}

.nav-links.active{
max-height:500px;
opacity:1;
transform:translateY(0);
}
.menu-toggle{display:flex;}

.hero{
    background-image:url('../public/images/no_text_portrait.png');
    background-position:center;
    padding-top:120px;
}

/* LIGHTER MOBILE HERO OVERLAY */
.hero::before{
    background:linear-gradient(
        180deg,
        rgba(5,8,20,0.55) 0%,
        rgba(5,8,20,0.35) 50%,
        rgba(0,0,0,0.15) 100%
    );
}

.stats-strip{
  padding:28px 0;  /* tighter vertical spacing */
}

.stat-item{
  font-size:1rem;
}

.stat-item strong{
  font-size:1.6rem;   /* still strong but balanced */
}

.trust-row{
  font-size:.9rem;
}

.desktop-text{display:none;}
.mobile-text{display:block;}

.left-content h1{font-size:2rem;}

.grid-3,
.workflow-grid,
.ai-grid{
    grid-template-columns:1fr;
}

.footer-top{
grid-template-columns:1fr;
gap:40px;
}

.footer-columns{
grid-template-columns:1fr 1fr;
gap:30px;
}

.footer-bottom{
flex-direction:column;
gap:12px;
text-align:center;
}
}



/* ==================== ICONS ==================== */

.icon{
width:56px;
height:56px;
margin:0 auto 22px;
display:flex;
align-items:center;
justify-content:center;
}

.icon svg{
width:44px;
height:44px;
stroke:#4f86d9;
stroke-width:2;
fill:none;
stroke-linecap:round;
stroke-linejoin:round;
}


/* =============== TRANSFORMATION SECTION =============== */
.transform-section{
padding:80px 0 20px 0;
}

.transform-grid{
display:grid;
grid-template-columns:1fr auto 1fr;
gap:40px;
align-items:center;
margin-top:30px;
}

.transform-grid img,
.transform-grid video{
width:100%;
border-radius:18px;
border:1px solid rgba(0,194,255,0.25);
box-shadow:0 20px 60px rgba(0,0,0,0.4);
}

.transform-arrow{
font-size:42px;
color:#00c2ff;
text-align:center;
}


/* DESKTOP ARROW MOTION */
.transform-arrow{
font-size:42px;
color:#00c2ff;
text-align:center;
animation:arrowMove 2s ease-in-out infinite;
}

@keyframes arrowMove{
0%,100%{transform:translateX(0);}
50%{transform:translateX(8px);}
}


/* MOBILE ARROW */
@media (max-width:768px){

.transform-grid{
grid-template-columns:1fr;
gap:20px;
}

/* new mobile animation */
.transform-arrow{
animation:arrowMoveMobile 2s ease-in-out infinite;
}

@keyframes arrowMoveMobile{
0%,100%{
transform:rotate(90deg) translateY(0);
}
50%{
transform:rotate(90deg) translateY(8px);
}
}
}



/* ============== CINEMA SECTION =============== */
.cinematic{
padding:90px 0;
}

.cinema-visual{
display:grid;
grid-template-columns:1.2fr 1fr;
gap:50px;
align-items:center;
margin-top:40px;
}

.cinema-visual img{
width:100%;
border-radius:18px;
border:1px solid rgba(0,194,255,0.25);
box-shadow:0 20px 60px rgba(0,0,0,0.4);
}


/* CINEMA IMAGE MOTION */
.cinema-visual{overflow:hidden;}
.cinema-visual img{animation:cinemaZoom 18s ease-in-out infinite alternate;}
@keyframes cinemaZoom{0%{transform:scale(1);}100%{transform:scale(1.08);}}

.cinema-text p{
margin-top:14px;
opacity:.9;
line-height:1.7;
}

@media (max-width:768px){

.cinema-visual{
grid-template-columns:1fr;
gap:30px;
}

.cinema-visual img{
width:100%;
border-radius:18px;
border:1px solid rgba(0,194,255,0.25);
box-shadow:0 20px 60px rgba(0,0,0,0.4);
}

100%{transform:scale(1.08);}
}



/* ================= REACTION SECTION ================= */

.reaction-section{
position:relative;
padding:120px 0;
overflow:hidden;
}

.reaction-section img{
width:100%;
display:block;
border-radius:20px;
}

.reaction-overlay{
position:absolute;
left:50%;
bottom:60px;
transform:translateX(-50%);
max-width:850px;
width:85%;

background:rgba(10,15,30,0.75);
backdrop-filter:blur(12px);

padding:50px 60px;
border-radius:18px;

text-align:center;

border:1px solid rgba(0,194,255,0.25);
box-shadow:0 30px 80px rgba(0,0,0,0.6);
}

.reaction-overlay h2{
font-size:2.2rem;
margin-bottom:20px;
color:#4da6ff;
}

.reaction-overlay p{
opacity:.9;
margin-bottom:30px;
line-height:1.7;
}


@media (max-width:768px){
.about-page .section{
padding:20px 0;
}
.about-page .section h2{
margin-bottom:20px;
}
}


/* ================= VISION SECTION ================= */

.vision-section{
position:relative;
padding:120px 0 220px 0;
overflow:visible;
}

.vision-section img{
width:100%;
display:block;
border-radius:20px;
}

.vision-overlay{
position:absolute;
left:50%;
bottom:100px;
transform:translateX(-50%);
max-width:760px;
width:85%;
background:rgba(10,15,30,0.75);
backdrop-filter:blur(12px);
padding:50px 60px;
border-radius:18px;
text-align:left;
border:1px solid rgba(0,194,255,0.25);
box-shadow:0 30px 80px rgba(0,0,0,0.6);
}

.vision-overlay p{
opacity:.9;
line-height:1.7;
margin-bottom:18px;
}

.vision-overlay h2{
font-size:2.2rem;
margin-bottom:30px;
color:#4da6ff;
}

.vision-overlay p:last-child{
margin-bottom:0;
}

.vision-overlay p{
opacity:.9;
margin-bottom:30px;
line-height:1.7;
}



/* =============== MOBILE FIX =============== */
@media (max-width:768px){
.vision-section{
padding:80px 0 80px 0;
}

.vision-overlay{
position:relative;
left:auto;
bottom:auto;
transform:none;
margin:-80px auto 0 auto;
width:90%;
max-width:420px;
padding:30px;
}

.vision-overlay h2{
font-size:1.5rem;
}

.vision-overlay p{
font-size:0.95rem;
line-height:1.6;
}

.reaction-overlay{
position:relative;
left:auto;
bottom:auto;
transform:none;
margin:-80px auto 0 auto;
width:90%;
max-width:420px;
padding:30px;
}

.reaction-overlay h2{
font-size:1.5rem;
}
}