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

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{background:#030303;color:#fff;font-family:'Inter',sans-serif;overflow-x:hidden;-webkit-font-smoothing:antialiased;}

/* ── LOADING ── */
#loader{position:fixed;inset:0;z-index:9999;background:#000;display:flex;flex-direction:column;align-items:center;justify-content:center;transition:opacity 1s ease,visibility 1s ease;}
#loader.hidden{opacity:0;visibility:hidden;pointer-events:none;}
#loader-text{font-size:0.7rem;font-weight:500;letter-spacing:0.4em;text-transform:uppercase;color:rgba(255,255,255,0.4);margin-bottom:2.5rem;}
#loader-bar-track{width:180px;height:1px;background:rgba(255,255,255,0.06);border-radius:1px;overflow:hidden;}
#loader-bar-fill{height:100%;width:0%;background:linear-gradient(90deg,#4A90FF,#A78BFA);transition:width 0.15s ease-out;}
#loader-percent{margin-top:1.2rem;font-size:0.6rem;letter-spacing:0.2em;color:rgba(255,255,255,0.25);font-variant-numeric:tabular-nums;}

/* ── CANVAS ── */
#scroll-container{height:600vh;position:relative;}
#frame-canvas{position:fixed;top:0;left:0;width:100vw;height:100vh;z-index:1;mix-blend-mode:lighten;}

/* ── PROGRESS ── */
#progress-track{position:fixed;top:0;left:0;width:100%;height:1px;z-index:100;}
#progress-fill{height:100%;width:0%;background:linear-gradient(90deg,#4A90FF,#A78BFA,#4A90FF);background-size:200%;animation:shimmerBg 3s linear infinite;transition:width 0.05s linear;}
@keyframes shimmerBg{0%{background-position:0%}100%{background-position:200%}}

/* ── SCROLL INDICATOR ── */
#scroll-indicator{position:fixed;bottom:2.5rem;left:50%;transform:translateX(-50%);z-index:10;display:flex;flex-direction:column;align-items:center;gap:0.75rem;opacity:1;transition:opacity 0.6s ease;}
#scroll-indicator.faded{opacity:0;pointer-events:none;}
#scroll-indicator span{font-size:0.6rem;font-weight:500;letter-spacing:0.3em;text-transform:uppercase;color:rgba(255,255,255,0.3);}
.scroll-arrow{width:18px;height:18px;border-right:1px solid rgba(255,255,255,0.25);border-bottom:1px solid rgba(255,255,255,0.25);transform:rotate(45deg);animation:scrollPulse 1.8s ease-in-out infinite;}
@keyframes scrollPulse{0%,100%{opacity:0.2;transform:rotate(45deg) translateY(0);}50%{opacity:0.6;transform:rotate(45deg) translateY(5px);}}

/* ── HERO GLOW ── */
#hero-glow{position:fixed;top:50%;left:50%;width:90vw;height:90vh;transform:translate(-50%,-50%);background:radial-gradient(ellipse at center,rgba(74,144,255,0.05) 0%,transparent 65%);z-index:0;pointer-events:none;animation:glowPulse 6s ease-in-out infinite;}
@keyframes glowPulse{0%,100%{opacity:0.6;}50%{opacity:1;}}

/* ── HERO TEXT ── */
#initial-hero{position:fixed;top:8vh;left:50%;transform:translateX(-50%);z-index:10;text-align:center;width:100%;max-width:820px;padding:0 2rem;opacity:1;transition:opacity 0.7s ease,transform 0.7s ease;}
#initial-hero h1{font-weight:700;font-size:clamp(2.4rem,5vw,4.5rem);letter-spacing:-0.04em;color:#fff;line-height:1.1;background:linear-gradient(135deg,#fff 60%,rgba(255,255,255,0.5));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
#initial-hero.faded{opacity:0;pointer-events:none;transform:translate(-50%,-8vh);}
body.is-mobile #initial-hero{width:95%;top:5vh;}

/* ── NAV ── */
.site-nav{position:sticky;top:0;z-index:50;display:flex;align-items:center;justify-content:space-between;padding:1.2rem 3rem;background:rgba(3,3,3,0.8);backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);border-bottom:1px solid rgba(255,255,255,0.05);transition:background 0.3s ease;}
.nav-logo{font-size:1.3rem;font-weight:700;letter-spacing:-0.04em;color:#fff;text-decoration:none;}
.nav-logo span{background:linear-gradient(135deg,#4A90FF,#A78BFA);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
.nav-links{display:flex;align-items:center;gap:2rem;list-style:none;}
.nav-links a{font-size:0.78rem;font-weight:400;color:rgba(255,255,255,0.45);text-decoration:none;letter-spacing:0.01em;transition:color 0.2s ease;position:relative;}
.nav-links a::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1px;background:linear-gradient(90deg,#4A90FF,#A78BFA);transition:width 0.3s ease;}
.nav-links a:hover{color:#fff;}
.nav-links a:hover::after{width:100%;}
.nav-actions{display:flex;align-items:center;}
.btn-quote-nav{font-size:0.78rem;font-weight:500;color:#fff;background:linear-gradient(135deg,#4A90FF,#6B4FFF);border:none;border-radius:100px;padding:0.55rem 1.5rem;cursor:pointer;transition:opacity 0.2s ease,transform 0.2s ease,box-shadow 0.2s ease;box-shadow:0 4px 20px rgba(74,144,255,0.2);}
.btn-quote-nav:hover{opacity:0.9;transform:translateY(-1px);box-shadow:0 8px 30px rgba(74,144,255,0.35);}

/* Nav hidden during hero animation */
.site-nav.nav-hidden{opacity:0;pointer-events:none;transform:translateY(-100%);}
.site-nav{transition:opacity 0.6s ease,transform 0.6s cubic-bezier(0.4,0,0.2,1);}

/* ── HAMBURGER ── */
.mobile-menu-toggle{display:none;background:none;border:none;cursor:pointer;width:26px;height:18px;position:relative;z-index:100;}
.mobile-menu-toggle span{display:block;width:100%;height:1.5px;background:#fff;position:absolute;left:0;transition:all 0.3s cubic-bezier(0.4,0,0.2,1);border-radius:2px;}
.mobile-menu-toggle span:nth-child(1){top:0;}
.mobile-menu-toggle span:nth-child(2){top:8px;}
.mobile-menu-toggle span:nth-child(3){bottom:0;}
.mobile-menu-toggle.active span:nth-child(1){transform:rotate(45deg);top:8px;}
.mobile-menu-toggle.active span:nth-child(2){opacity:0;}
.mobile-menu-toggle.active span:nth-child(3){transform:rotate(-45deg);top:8px;}

/* ── SECTION BASE ── */
.section-label{display:inline-block;font-size:0.65rem;font-weight:600;letter-spacing:0.18em;text-transform:uppercase;color:#4A90FF;margin-bottom:1rem;opacity:0.8;}

/* ── TESTIMONIALS ── */
.testimonials-section{position:relative;z-index:5;padding:10rem 2rem;background:#030303;border-top:1px solid rgba(255,255,255,0.04);}
.testimonials-container{max-width:1200px;margin:0 auto;}
.testimonials-header{text-align:center;margin-bottom:5rem;}
.testimonials-header h2{font-size:clamp(2rem,4vw,3.5rem);font-weight:700;letter-spacing:-0.04em;color:#fff;line-height:1.1;}
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;}
.testimonial-card{background:rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.07);border-radius:20px;padding:2.5rem;display:flex;flex-direction:column;justify-content:space-between;transition:transform 0.4s cubic-bezier(0.4,0,0.2,1),border-color 0.4s ease,box-shadow 0.4s ease;position:relative;overflow:hidden;}
.testimonial-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(74,144,255,0.04),transparent);opacity:0;transition:opacity 0.4s ease;}
.testimonial-card:hover{transform:translateY(-6px);border-color:rgba(74,144,255,0.25);box-shadow:0 20px 60px rgba(74,144,255,0.08);}
.testimonial-card:hover::before{opacity:1;}
.testimonial-quote{font-size:1rem;color:rgba(255,255,255,0.75);line-height:1.7;margin-bottom:2rem;font-style:italic;}
.testimonial-stars{color:#4A90FF;letter-spacing:2px;font-size:0.8rem;margin-bottom:0.8rem;}
.testimonial-author{font-size:0.85rem;font-weight:600;color:rgba(255,255,255,0.5);}

/* ── PROCESS ── */
.process-section{position:relative;z-index:5;padding:10rem 2rem;background:#030303;border-top:1px solid rgba(255,255,255,0.04);}
.process-container{max-width:1200px;margin:0 auto;}
.process-header{text-align:center;margin-bottom:6rem;}
.process-header h2{font-size:clamp(2rem,4vw,3.5rem);font-weight:700;letter-spacing:-0.04em;color:#fff;margin-bottom:1.5rem;line-height:1.1;}
.process-header p{font-size:1.1rem;color:rgba(255,255,255,0.5);max-width:600px;margin:0 auto;line-height:1.7;}
.process-timeline{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-bottom:6rem;position:relative;padding-top:1.5rem;}
.process-timeline::before{content:'';position:absolute;top:20px;left:24px;right:24px;height:1px;background:linear-gradient(90deg,transparent,rgba(74,144,255,0.3),rgba(167,139,250,0.3),transparent);}
.process-step{position:relative;z-index:1;background:rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.06);border-radius:20px;padding:2.5rem 1.5rem 2rem;transition:border-color 0.4s ease,transform 0.4s cubic-bezier(0.4,0,0.2,1),box-shadow 0.4s ease;margin-top:1.5rem;}
.process-step:hover{border-color:rgba(74,144,255,0.3);transform:translateY(-6px);box-shadow:0 20px 60px rgba(74,144,255,0.08);}
.step-number{font-size:0.65rem;font-weight:700;letter-spacing:0.15em;color:#4A90FF;margin-bottom:1rem;text-transform:uppercase;}
.step-marker{width:28px;height:28px;border-radius:50%;background:#030303;border:1px solid rgba(74,144,255,0.5);position:absolute;top:-14px;left:1.5rem;display:flex;align-items:center;justify-content:center;box-shadow:0 0 20px rgba(74,144,255,0.15);transition:box-shadow 0.4s ease;}
.process-step:hover .step-marker{box-shadow:0 0 30px rgba(74,144,255,0.4);}
.step-marker::after{content:'';width:7px;height:7px;border-radius:50%;background:linear-gradient(135deg,#4A90FF,#A78BFA);}
.step-title{font-size:1.05rem;font-weight:600;color:#fff;margin-bottom:1rem;letter-spacing:-0.02em;}
.step-desc{font-size:0.9rem;color:rgba(255,255,255,0.45);line-height:1.65;}
.process-footer{text-align:center;padding-top:4rem;border-top:1px solid rgba(255,255,255,0.04);}
.process-footer p{font-size:1.15rem;font-weight:500;color:rgba(255,255,255,0.7);letter-spacing:-0.01em;}

/* ── ABOUT ── */
.about-section{position:relative;z-index:5;padding:10rem 2rem;background:#030303;border-top:1px solid rgba(255,255,255,0.04);}
.about-container{max-width:900px;margin:0 auto;text-align:center;}
.about-header{margin-bottom:4rem;}
.about-header h2{font-size:clamp(2rem,4vw,3.5rem);font-weight:700;letter-spacing:-0.04em;color:#fff;margin-bottom:1.5rem;line-height:1.1;}
.about-header p{font-size:1.1rem;color:rgba(255,255,255,0.5);max-width:680px;margin:0 auto;line-height:1.7;}
.about-body{margin-bottom:4rem;}
.about-body p{font-size:1.05rem;color:rgba(255,255,255,0.5);line-height:1.75;max-width:680px;margin:0 auto 2.5rem;}
.about-features{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;max-width:860px;margin:0 auto;}
.feature-item{display:flex;flex-direction:column;align-items:center;gap:0.6rem;padding:1.5rem 1rem;border-radius:16px;background:rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.06);transition:border-color 0.3s ease,transform 0.3s ease;}
.feature-item:hover{border-color:rgba(74,144,255,0.25);transform:translateY(-3px);}
.feature-icon{font-size:1.5rem;}
.feature-text{font-size:0.82rem;font-weight:500;color:rgba(255,255,255,0.7);text-align:center;}
.about-footer{padding-top:4rem;border-top:1px solid rgba(255,255,255,0.04);}
.about-footer p{font-size:1.2rem;font-weight:600;color:#fff;letter-spacing:-0.02em;}

@media(max-width:700px){.about-features{grid-template-columns:repeat(2,1fr);}}

/* ── PRICING ── */
.pricing-section{position:relative;z-index:5;padding:10rem 2rem;background:#030303;border-top:1px solid rgba(255,255,255,0.04);}
.pricing-header{text-align:center;margin-bottom:5rem;}
.pricing-header h2{font-size:clamp(2rem,4vw,3.5rem);font-weight:700;letter-spacing:-0.04em;color:#fff;margin-bottom:1rem;}
.pricing-header p{font-size:1rem;color:rgba(255,255,255,0.4);max-width:500px;margin:0 auto;line-height:1.65;}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;max-width:1100px;margin:0 auto;align-items:center;}
.pricing-card{background:rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.07);border-radius:24px;padding:2.5rem 2rem;transition:transform 0.4s cubic-bezier(0.4,0,0.2,1),border-color 0.4s ease,box-shadow 0.4s ease;position:relative;overflow:hidden;}
.pricing-card:hover{transform:translateY(-6px);border-color:rgba(255,255,255,0.12);box-shadow:0 20px 60px rgba(0,0,0,0.4);}
.pricing-card.highlighted{border-color:rgba(74,144,255,0.35);background:rgba(74,144,255,0.03);padding:3rem 2rem;box-shadow:0 0 80px rgba(74,144,255,0.06);}
.pricing-card.highlighted::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,#4A90FF,#A78BFA,transparent);}
.pricing-card.highlighted:hover{border-color:rgba(74,144,255,0.5);box-shadow:0 30px 80px rgba(74,144,255,0.12);}
.card-badge{display:inline-block;font-size:0.62rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;padding:0.3rem 0.9rem;border-radius:100px;margin-bottom:1.5rem;background:rgba(255,255,255,0.05);color:rgba(255,255,255,0.4);}
.pricing-card.highlighted .card-badge{background:rgba(74,144,255,0.15);color:#6BAAFF;}
.card-title{font-size:1.5rem;font-weight:700;color:#fff;margin-bottom:0.5rem;letter-spacing:-0.03em;}
.card-price{font-size:2.2rem;font-weight:700;color:#fff;letter-spacing:-0.04em;margin-bottom:0.25rem;}
.card-price-extra{font-size:0.75rem;color:rgba(255,255,255,0.3);margin-bottom:2rem;}
.card-features{list-style:none;display:flex;flex-direction:column;gap:0.85rem;margin-bottom:2rem;}
.card-features li{font-size:0.85rem;color:rgba(255,255,255,0.5);display:flex;align-items:center;gap:0.65rem;}
.card-features li::before{content:'✓';font-size:0.7rem;font-weight:700;color:#4A90FF;flex-shrink:0;}
.card-btn{width:100%;padding:0.85rem;border-radius:100px;font-size:0.85rem;font-weight:500;cursor:pointer;transition:all 0.3s ease;background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.08);color:#fff;}
.card-btn:hover{background:rgba(255,255,255,0.09);border-color:rgba(255,255,255,0.15);}
.pricing-card.highlighted .card-btn{background:linear-gradient(135deg,#4A90FF,#6B4FFF);border:none;box-shadow:0 8px 30px rgba(74,144,255,0.25);}
.pricing-card.highlighted .card-btn:hover{box-shadow:0 12px 40px rgba(74,144,255,0.4);transform:translateY(-1px);}

/* ── CONTACT ── */
.contact-section{position:relative;z-index:5;padding:10rem 2rem;background:#030303;border-top:1px solid rgba(255,255,255,0.04);}
.contact-header{text-align:center;margin-bottom:4rem;}
.contact-header h2{font-size:clamp(2rem,4vw,3.5rem);font-weight:700;letter-spacing:-0.04em;color:#fff;}
.contact-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;max-width:700px;margin:0 auto;}
.contact-card{background:rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.07);border-radius:24px;padding:3rem 2rem;transition:transform 0.4s cubic-bezier(0.4,0,0.2,1),border-color 0.4s ease,box-shadow 0.4s ease;display:flex;flex-direction:column;align-items:center;text-align:center;text-decoration:none;position:relative;overflow:hidden;}
.contact-card::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(74,144,255,0.05),transparent);opacity:0;transition:opacity 0.4s ease;}
.contact-card:hover{transform:translateY(-6px);border-color:rgba(74,144,255,0.3);box-shadow:0 20px 60px rgba(74,144,255,0.1);}
.contact-card:hover::before{opacity:1;}
.contact-card svg{width:30px;height:30px;fill:url(#iconGrad);margin-bottom:1.5rem;fill:#4A90FF;}
.contact-card .name{font-size:1.5rem;font-weight:700;color:#fff;margin-bottom:0.5rem;letter-spacing:-0.03em;}
.contact-card .phone{font-size:1rem;color:rgba(255,255,255,0.4);transition:color 0.3s ease;}
.contact-card:hover .phone{color:rgba(255,255,255,0.7);}

/* ── FOOTER ── */
.site-footer{text-align:center;padding:3rem 2rem;border-top:1px solid rgba(255,255,255,0.04);background:#030303;}
.site-footer p{font-size:0.75rem;color:rgba(255,255,255,0.2);letter-spacing:0.05em;}

/* ── REVEAL ANIMATION ── */
.reveal-section{opacity:0;transform:translateY(50px);transition:opacity 0.9s cubic-bezier(0.4,0,0.2,1),transform 0.9s cubic-bezier(0.4,0,0.2,1);}
.reveal-section.visible{opacity:1;transform:translateY(0);}

/* ── STAGGER CHILDREN ── */
.reveal-section.visible .testimonial-card:nth-child(1){transition-delay:0.1s;}
.reveal-section.visible .testimonial-card:nth-child(2){transition-delay:0.2s;}
.reveal-section.visible .testimonial-card:nth-child(3){transition-delay:0.3s;}
.reveal-section.visible .process-step:nth-child(1){transition-delay:0.1s;}
.reveal-section.visible .process-step:nth-child(2){transition-delay:0.2s;}
.reveal-section.visible .process-step:nth-child(3){transition-delay:0.3s;}
.reveal-section.visible .process-step:nth-child(4){transition-delay:0.4s;}
.reveal-section.visible .pricing-card:nth-child(1){transition-delay:0.1s;}
.reveal-section.visible .pricing-card:nth-child(2){transition-delay:0.2s;}
.reveal-section.visible .pricing-card:nth-child(3){transition-delay:0.3s;}

/* ── MOBILE ── */
@media(max-width:900px){
  .pricing-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto;}
  .pricing-card.highlighted{padding:2.5rem 2rem;}
  .testimonials-grid{grid-template-columns:1fr;gap:1.25rem;}
  .process-timeline{grid-template-columns:1fr;gap:1.5rem;padding-top:0;}
  .process-timeline::before{top:0;bottom:0;left:2rem;width:1px;height:auto;right:auto;}
  .process-step{margin-top:0;padding:2rem 1.5rem 2rem 4rem;}
  .step-marker{top:2rem;left:calc(2rem - 14px);}
  .site-nav{padding:1rem 1.5rem;}
  .mobile-menu-toggle{display:block;order:3;margin-left:1rem;}
  .nav-actions{order:2;margin-left:auto;}
  .nav-links{position:fixed;top:0;left:0;width:100%;height:100vh;background:rgba(3,3,3,0.97);backdrop-filter:blur(24px);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:3rem;opacity:0;visibility:hidden;pointer-events:none;transition:opacity 0.4s ease,visibility 0.4s ease;z-index:90;}
  .nav-links.active{opacity:1;visibility:visible;pointer-events:auto;}
  .nav-links a{font-size:1.5rem;font-weight:500;color:#fff;}
}
@media(max-width:800px){.about-grid{grid-template-columns:1fr;gap:3rem;}}
@media(max-width:600px){
  #initial-hero h1{font-size:clamp(2rem,8vw,2.8rem);}
  .contact-grid{grid-template-columns:1fr;}
  .contact-card{padding:2rem 1.5rem;}
  .about-features{grid-template-columns:1fr;}
}
