/* ═══════════════════════════════════════════════════
   VELOURA — The Art of Love | Global Stylesheet
   Designer: Dhara Vyas | Ahmedabad, Gujarat
═══════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=Cinzel:wght@400;500;600&display=swap');

/* ── CSS VARIABLES (BRAND PALETTE) ── */
:root {
  --lavender:    #c8caf4;
  --indigo:      #6167cb;
  --deep-indigo: #2a2e79;
  --navy:        #02053d;
  --steel:       #344569;
  --white:       #ffffff;
  --off-white:   #f9f8ff;
  --cream:       #faf9f6;
  --glass:       rgba(200,202,244,0.12);
  --glass-border:rgba(97,103,203,0.22);
  --shadow-sm:   0 4px 24px rgba(2,5,61,0.08);
  --shadow-md:   0 12px 48px rgba(2,5,61,0.14);
  --shadow-lg:   0 24px 80px rgba(2,5,61,0.20);
  --shadow-glow: 0 0 40px rgba(97,103,203,0.25);
  --font-display:'Cormorant Garamond', serif;
  --font-caps:   'Cinzel', serif;
  --font-body:   'DM Sans', sans-serif;
  --ease-silk:   cubic-bezier(0.4,0,0.2,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --nav-h:       80px;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--off-white); }
::-webkit-scrollbar-thumb { background:linear-gradient(180deg,var(--indigo),var(--deep-indigo)); border-radius:10px; }

/* ── CUSTOM CURSOR ── */
body { cursor:none; }
#cursor {
  position:fixed; top:0; left:0; z-index:9999;
  pointer-events:none;
}
#cursor .dot {
  width:8px; height:8px; border-radius:50%;
  background:var(--indigo);
  position:absolute; transform:translate(-50%,-50%);
  transition:width .2s,height .2s,background .2s;
}
#cursor .ring {
  width:32px; height:32px; border-radius:50%;
  border:1.5px solid var(--indigo);
  position:absolute; transform:translate(-50%,-50%);
  transition:all .12s var(--ease-silk);
  opacity:0.6;
}
body:has(a:hover,button:hover) #cursor .ring {
  width:48px; height:48px; opacity:1;
  border-color:var(--lavender);
}

/* ── SELECTION ── */
::selection { background:var(--lavender); color:var(--navy); }

/* ═══ NAVIGATION ═══ */
#nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--nav-h);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 5%;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  border-bottom:1px solid rgba(97,103,203,0.1);
  transition:all .4s var(--ease-silk);
}
#nav.scrolled {
  height:64px;
  box-shadow:var(--shadow-sm);
  background:rgba(255,255,255,0.98);
}
.nav-logo { text-decoration:none; display:flex; align-items:center; gap:14px; }
.nav-logo svg { width:52px; height:52px; }
.nav-logo-text { display:flex; flex-direction:column; line-height:1.1; }
.nav-brand {
  font-family:var(--font-caps); font-size:1.5rem; font-weight:600;
  color:var(--deep-indigo); letter-spacing:0.18em;
  background:linear-gradient(90deg,var(--deep-indigo),var(--indigo),var(--deep-indigo));
  background-size:200% auto;
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  animation:brandShimmer 4s linear infinite;
}
@keyframes brandShimmer {
  0%{background-position:0% center} 100%{background-position:200% center}
}
.nav-tagline { font-size:0.52rem; letter-spacing:0.38em; color:var(--steel); text-transform:uppercase; font-weight:400; }
.nav-links {
  display:flex; align-items:center; list-style:none;
  gap:0;
}
.nav-links > li { position:relative; }
.nav-links > li > a {
  display:block; padding:8px 16px;
  font-size:0.75rem; font-weight:500; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--steel); text-decoration:none;
  transition:color .25s; position:relative;
}
.nav-links > li > a::after {
  content:''; position:absolute; bottom:4px; left:16px; right:16px; height:1px;
  background:var(--indigo); transform:scaleX(0); transform-origin:right;
  transition:transform .3s var(--ease-silk);
}
.nav-links > li > a:hover { color:var(--deep-indigo); }
.nav-links > li > a:hover::after { transform:scaleX(1); transform-origin:left; }
.dropdown-menu {
  display:none; position:absolute; top:calc(100% + 8px); left:50%;
  transform:translateX(-50%);
  background:var(--white); min-width:220px;
  border:1px solid var(--glass-border);
  box-shadow:var(--shadow-md);
  border-top:2px solid var(--indigo);
  animation:dropDown .2s var(--ease-silk);
}
.nav-links > li:hover .dropdown-menu { display:block; }
@keyframes dropDown { from{opacity:0;transform:translate(-50%,-10px)} to{opacity:1;transform:translate(-50%,0)} }
.dropdown-menu a {
  display:block; padding:10px 20px;
  font-size:0.78rem; color:var(--steel); text-decoration:none;
  border-bottom:1px solid rgba(97,103,203,0.07);
  transition:all .2s;
}
.dropdown-menu a:hover { background:var(--off-white); color:var(--deep-indigo); padding-left:28px; }
.nav-btn-cta {
  background:linear-gradient(135deg,var(--indigo),var(--deep-indigo));
  color:var(--white) !important; padding:10px 24px !important;
  font-weight:500 !important; border-radius:2px;
  transition:all .3s var(--ease-silk) !important;
  box-shadow:0 4px 16px rgba(97,103,203,0.35);
}
.nav-btn-cta::after { display:none !important; }
.nav-btn-cta:hover { box-shadow:0 8px 28px rgba(97,103,203,0.5) !important; transform:translateY(-2px); }
.hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.hamburger span { display:block; width:22px; height:1.5px; background:var(--navy); transition:all .3s; }
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(4.5px,4.5px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(4.5px,-4.5px); }
.mobile-menu {
  display:none; position:fixed; top:var(--nav-h); left:0; right:0; bottom:0;
  background:var(--white); z-index:999; overflow-y:auto;
  padding:40px 6%;
  flex-direction:column;
}
.mobile-menu.open { display:flex; animation:fadeIn .3s ease; }
.mobile-menu a {
  font-family:var(--font-display); font-size:1.8rem; font-weight:400;
  color:var(--navy); text-decoration:none;
  padding:14px 0; border-bottom:1px solid rgba(97,103,203,0.1);
  letter-spacing:0.05em; transition:color .2s;
}
.mobile-menu a:hover { color:var(--indigo); }
.mobile-menu .m-sub { padding:4px 0 4px 20px; }
.mobile-menu .m-sub a { font-family:var(--font-body); font-size:1rem; padding:8px 0; }
.mobile-cta {
  margin-top:24px;
  background:linear-gradient(135deg,var(--indigo),var(--deep-indigo)) !important;
  color:var(--white) !important; padding:14px 28px !important;
  text-align:center; border-radius:4px;
  font-family:var(--font-body) !important; font-size:0.9rem !important; font-weight:500 !important;
}

/* ═══ BUTTONS ═══ */
.btn {
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 36px; border:none; cursor:pointer;
  font-family:var(--font-body); font-size:0.8rem;
  font-weight:500; letter-spacing:0.18em; text-transform:uppercase;
  text-decoration:none; position:relative; overflow:hidden;
  transition:all .35s var(--ease-silk);
}
.btn-primary {
  background:linear-gradient(135deg,var(--indigo),var(--deep-indigo));
  color:var(--white);
  box-shadow:0 4px 20px rgba(97,103,203,0.4);
}
.btn-primary::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,var(--deep-indigo),var(--navy));
  opacity:0; transition:opacity .35s;
}
.btn-primary:hover::before { opacity:1; }
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 12px 36px rgba(97,103,203,0.5); }
.btn-primary span { position:relative; z-index:1; }
.btn-outline {
  background:transparent; color:var(--deep-indigo);
  border:1.5px solid var(--deep-indigo);
}
.btn-outline:hover { background:var(--deep-indigo); color:var(--white); }
.btn-ghost {
  background:transparent; color:var(--white);
  border:1px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { background:rgba(255,255,255,0.12); border-color:var(--lavender); }

/* ═══ HERO ═══ */
#hero {
  min-height:100vh; display:flex; align-items:center;
  position:relative; overflow:hidden;
  background:linear-gradient(150deg, var(--navy) 0%, #0d1160 35%, #1a1f8a 65%, var(--steel) 100%);
  padding-top:var(--nav-h);
}
.hero-bg-orbs { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.orb {
  position:absolute; border-radius:50%; filter:blur(80px);
  animation:orbDrift var(--t,15s) ease-in-out infinite var(--d,0s) alternate;
}
@keyframes orbDrift {
  0%{transform:translate(0,0) scale(1)} 100%{transform:translate(var(--tx,30px),var(--ty,-30px)) scale(1.15)}
}
.orb-1 { width:500px;height:500px; background:rgba(97,103,203,0.25); top:-100px;right:-100px; --t:18s;--tx:-40px;--ty:40px; }
.orb-2 { width:350px;height:350px; background:rgba(200,202,244,0.12); bottom:-50px;left:10%; --t:12s;--d:-4s;--tx:60px;--ty:-60px; }
.orb-3 { width:250px;height:250px; background:rgba(42,46,121,0.35); top:30%;left:30%; --t:10s;--d:-2s; }
.hero-particles { position:absolute; inset:0; pointer-events:none; }
.particle {
  position:absolute; width:2px;height:2px; border-radius:50%;
  background:var(--lavender); opacity:0.5;
  animation:particleFly var(--pt,8s) linear infinite var(--pd,0s);
}
@keyframes particleFly {
  0%{transform:translateY(100vh) translateX(0); opacity:0}
  10%{opacity:.6}
  90%{opacity:.3}
  100%{transform:translateY(-100px) translateX(var(--px,20px)); opacity:0}
}
.hero-inner {
  position:relative; z-index:2; width:100%; max-width:1300px; margin:0 auto;
  padding:80px 5% 100px;
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}
.hero-content {}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:12px;
  font-size:0.68rem; letter-spacing:0.5em; text-transform:uppercase;
  color:var(--lavender); font-weight:400; margin-bottom:28px;
  animation:slideRight .8s var(--ease-silk) .1s both;
}
.hero-eyebrow::before { content:''; width:32px; height:1px; background:var(--indigo); }
@keyframes slideRight { from{opacity:0;transform:translateX(-24px)} to{opacity:1;transform:translateX(0)} }
.hero-title {
  font-family:var(--font-display);
  font-size:clamp(3rem,5.5vw,5.5rem);
  font-weight:300; line-height:1.05;
  color:var(--white); margin-bottom:20px;
  animation:slideUp .9s var(--ease-silk) .2s both;
}
@keyframes slideUp { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
.hero-title em { font-style:italic; color:var(--lavender); }
.hero-subtitle {
  font-family:var(--font-display); font-size:clamp(1rem,1.8vw,1.4rem);
  font-style:italic; font-weight:300;
  color:rgba(200,202,244,0.7); margin-bottom:32px;
  animation:slideUp .9s var(--ease-silk) .35s both;
}
.hero-desc {
  font-size:0.9rem; line-height:1.9; color:rgba(200,202,244,0.6);
  font-weight:300; max-width:460px; margin-bottom:44px;
  animation:slideUp .9s var(--ease-silk) .45s both;
}
.hero-buttons {
  display:flex; gap:16px; flex-wrap:wrap;
  animation:slideUp .9s var(--ease-silk) .55s both;
}
.hero-visual {
  display:flex; align-items:center; justify-content:center;
  animation:heroEntrance 1.2s var(--ease-spring) .3s both;
}
@keyframes heroEntrance { from{opacity:0;transform:scale(0.7) rotateY(30deg)} to{opacity:1;transform:scale(1) rotateY(0)} }
.hero-logo-wrap {
  position:relative; width:380px; height:420px;
  display:flex; align-items:center; justify-content:center;
  animation:float 6s ease-in-out infinite;
  transform-style:preserve-3d;
}
@keyframes float {
  0%,100%{transform:translateY(0) rotateY(-3deg)}
  50%{transform:translateY(-22px) rotateY(3deg)}
}
.hero-logo-glow {
  position:absolute; inset:-40px;
  background:radial-gradient(ellipse at center, rgba(97,103,203,0.3) 0%, transparent 70%);
  border-radius:50%; animation:glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.1)} }
.hero-logo-svg { width:100%; height:100%; filter:drop-shadow(0 20px 60px rgba(97,103,203,0.5)); }
.hero-stats {
  position:absolute; bottom:60px; left:50%; transform:translateX(-50%);
  width:100%; max-width:1300px; padding:0 5%;
  display:flex; gap:64px;
  animation:slideUp 1s var(--ease-silk) .8s both;
}
.stat {}
.stat-n { font-family:var(--font-display); font-size:2.8rem; font-weight:400; color:var(--lavender); line-height:1; }
.stat-l { font-size:0.68rem; letter-spacing:0.2em; color:rgba(200,202,244,0.5); text-transform:uppercase; margin-top:4px; }
.hero-scroll {
  position:absolute; bottom:28px; right:5%;
  display:flex; flex-direction:column; align-items:center; gap:8px;
  animation:fadeIn 1s .9s both;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.scroll-line {
  width:1px; height:60px;
  background:linear-gradient(to bottom, transparent, var(--lavender));
  animation:scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{transform:scaleY(1);opacity:.5} 50%{transform:scaleY(1.3);opacity:1} }
.scroll-text { font-size:0.6rem; letter-spacing:0.35em; color:rgba(200,202,244,0.4); text-transform:uppercase; writing-mode:vertical-rl; }

/* ═══ SECTION BASICS ═══ */
section { padding:100px 5%; }
.section-inner { max-width:1300px; margin:0 auto; }
.section-badge {
  display:inline-flex; align-items:center; gap:12px;
  font-size:0.68rem; letter-spacing:0.45em; text-transform:uppercase;
  color:var(--indigo); font-weight:500; margin-bottom:20px;
}
.section-badge::before,.section-badge::after { content:''; flex:1; height:1px; background:var(--indigo); min-width:24px; max-width:40px; }
.section-title {
  font-family:var(--font-display);
  font-size:clamp(2.2rem,4vw,3.8rem);
  font-weight:400; line-height:1.12;
  color:var(--navy);
}
.section-title em { font-style:italic; color:var(--indigo); }
.section-sub {
  font-size:0.9rem; line-height:1.9; color:var(--steel);
  font-weight:300; max-width:580px;
}
.text-center { text-align:center; }
.text-center .section-sub { margin:0 auto; }
.text-center .section-badge { justify-content:center; }

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
  opacity:0; transform:translateY(40px);
  transition:opacity .8s var(--ease-silk), transform .8s var(--ease-silk);
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-40px); transition:opacity .8s var(--ease-silk),transform .8s var(--ease-silk); }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(40px); transition:opacity .8s var(--ease-silk),transform .8s var(--ease-silk); }
.reveal-right.visible { opacity:1; transform:translateX(0); }
.delay-1{transition-delay:.1s} .delay-2{transition-delay:.2s} .delay-3{transition-delay:.3s}
.delay-4{transition-delay:.4s} .delay-5{transition-delay:.5s}

/* ═══ ABOUT STRIP ═══ */
#about-strip {
  padding:60px 5%;
  background:linear-gradient(90deg,var(--navy) 0%,var(--deep-indigo) 100%);
  overflow:hidden;
}
.strip-ticker {
  display:flex; align-items:center; gap:48px;
  animation:ticker 20s linear infinite;
  white-space:nowrap;
}
.strip-item {
  display:flex; align-items:center; gap:14px;
  font-family:var(--font-display); font-size:1.2rem; font-weight:400;
  color:rgba(200,202,244,0.7); letter-spacing:0.05em; flex-shrink:0;
}
.strip-dot { width:5px;height:5px;border-radius:50%; background:var(--indigo); flex-shrink:0; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══ ABOUT SECTION ═══ */
#about { background:var(--cream); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; margin-top:64px; }
.about-visual { position:relative; }
.about-card-3d {
  perspective:1000px;
  transform-style:preserve-3d;
}
.about-card-inner {
  width:100%; aspect-ratio:3/4; max-width:440px;
  background:linear-gradient(145deg,var(--navy) 0%,var(--deep-indigo) 100%);
  border-radius:4px; position:relative; overflow:hidden;
  transform:rotateY(-8deg) rotateX(4deg);
  box-shadow:var(--shadow-lg), var(--shadow-glow);
  transition:transform .6s var(--ease-silk);
}
.about-card-3d:hover .about-card-inner { transform:rotateY(0deg) rotateX(0deg); }
.about-card-pattern {
  position:absolute; inset:0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(200,202,244,0.03) 12px, rgba(200,202,244,0.03) 13px),
    repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(97,103,203,0.04) 12px, rgba(97,103,203,0.04) 13px);
}
.about-card-content {
  position:absolute; inset:0; display:flex; flex-direction:column;
  align-items:center; justify-content:center; padding:40px;
}
.about-butterfly { width:180px; height:180px; opacity:0.35; animation:float 6s ease-in-out infinite 2s; }
.about-card-label {
  position:absolute; bottom:30px; left:30px; right:30px;
  border-top:1px solid rgba(200,202,244,0.2); padding-top:16px;
}
.about-card-label p { font-size:0.65rem; letter-spacing:0.38em; color:var(--lavender); text-transform:uppercase; }
.about-card-label h3 { font-family:var(--font-display); font-size:1.6rem; color:var(--white); font-weight:400; margin-top:4px; }
.about-badge {
  position:absolute; top:30px; right:-20px;
  background:linear-gradient(135deg,var(--indigo),var(--deep-indigo));
  color:var(--white); padding:16px 20px; border-radius:4px;
  box-shadow:var(--shadow-md); text-align:center;
  animation:float 5s ease-in-out infinite 1s;
}
.about-badge-n { font-family:var(--font-display); font-size:2.5rem; font-weight:400; line-height:1; }
.about-badge-l { font-size:0.65rem; letter-spacing:0.2em; color:rgba(200,202,244,0.8); text-transform:uppercase; }
.about-text { display:flex; flex-direction:column; gap:24px; }
.about-text h2 { font-family:var(--font-display); font-size:clamp(2rem,3.5vw,3.2rem); font-weight:400; line-height:1.1; color:var(--navy); }
.about-text h2 em { font-style:italic; color:var(--indigo); }
.about-text p { font-size:0.92rem; line-height:1.9; color:var(--steel); font-weight:300; }
.signature { font-family:var(--font-display); font-size:2rem; font-style:italic; color:var(--indigo); margin-top:8px; }
.about-features { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:12px; }
.about-feature {
  display:flex; align-items:flex-start; gap:12px; padding:16px;
  background:var(--white); border:1px solid rgba(97,103,203,0.12);
  border-left:3px solid var(--indigo);
}
.about-feature-icon { font-size:1.2rem; flex-shrink:0; margin-top:2px; }
.about-feature-text p { font-size:0.78rem; font-weight:500; color:var(--navy); margin-bottom:3px; }
.about-feature-text span { font-size:0.72rem; color:var(--steel); font-weight:300; }

/* ═══ CATEGORIES SECTION ═══ */
#categories { background:var(--off-white); }
.categories-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:64px;
}
.cat-card {
  position:relative; overflow:hidden;
  background:var(--white); border:1px solid rgba(97,103,203,0.1);
  transition:all .4s var(--ease-silk);
  cursor:pointer; text-decoration:none; display:block;
  transform-style:preserve-3d;
}
.cat-card::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(145deg,var(--navy) 0%,var(--deep-indigo) 100%);
  opacity:0; transition:opacity .4s;
}
.cat-card:hover { transform:translateY(-8px) rotateX(3deg); box-shadow:var(--shadow-lg), var(--shadow-glow); }
.cat-card:hover::before { opacity:1; }
.cat-card-visual {
  height:220px; display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
  background:linear-gradient(135deg,var(--off-white) 0%,rgba(200,202,244,0.3) 100%);
  transition:all .4s;
}
.cat-card:hover .cat-card-visual { background:transparent; }
.cat-icon {
  font-size:4rem; transition:transform .4s var(--ease-spring);
  position:relative; z-index:1;
}
.cat-card:hover .cat-icon { transform:scale(1.2) rotate(5deg); }
.cat-card-pattern {
  position:absolute; inset:0; opacity:0.06;
  background:repeating-linear-gradient(45deg,var(--indigo) 0px,var(--indigo) 1px,transparent 1px,transparent 12px);
  transition:opacity .4s;
}
.cat-card:hover .cat-card-pattern { opacity:0.12; }
.cat-card-body { padding:24px 28px 28px; position:relative; z-index:1; }
.cat-card-body h3 {
  font-family:var(--font-display); font-size:1.4rem; font-weight:500;
  color:var(--navy); margin-bottom:8px; transition:color .3s;
}
.cat-card:hover .cat-card-body h3 { color:var(--white); }
.cat-card-body p { font-size:0.8rem; color:var(--steel); line-height:1.7; transition:color .3s; }
.cat-card:hover .cat-card-body p { color:rgba(200,202,244,0.75); }
.cat-arrow {
  position:absolute; bottom:24px; right:24px;
  width:36px; height:36px; border-radius:50%;
  background:rgba(97,103,203,0.1); display:flex; align-items:center; justify-content:center;
  color:var(--indigo); font-size:1rem; transition:all .3s var(--ease-spring);
}
.cat-card:hover .cat-arrow { background:var(--indigo); color:var(--white); transform:translateX(4px); }

/* ═══ PROCESS SECTION ═══ */
#process { background:var(--cream); }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:64px; position:relative; }
.process-steps::before {
  content:''; position:absolute; top:56px; left:10%; right:10%; height:1px;
  background:linear-gradient(90deg, transparent, var(--lavender), var(--indigo), var(--lavender), transparent);
}
.process-step { text-align:center; padding:0 20px; position:relative; }
.step-num {
  width:56px; height:56px; border-radius:50%;
  background:linear-gradient(135deg,var(--indigo),var(--deep-indigo));
  color:var(--white); font-family:var(--font-display); font-size:1.4rem;
  display:flex; align-items:center; justify-content:center; margin:0 auto 24px;
  box-shadow:0 8px 24px rgba(97,103,203,0.4);
  position:relative; z-index:1;
  transition:transform .3s var(--ease-spring);
}
.process-step:hover .step-num { transform:scale(1.15); }
.step-icon { font-size:1.8rem; margin-bottom:12px; }
.step-title { font-family:var(--font-display); font-size:1.15rem; font-weight:500; color:var(--navy); margin-bottom:10px; }
.step-desc { font-size:0.8rem; color:var(--steel); line-height:1.7; font-weight:300; }

/* ═══ TESTIMONIALS ═══ */
#testimonials { background:linear-gradient(150deg,var(--navy) 0%,var(--deep-indigo) 100%); padding:100px 5%; overflow:hidden; }
.testimonials-wrap { max-width:1300px; margin:0 auto; }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:64px; }
.testi-card {
  background:rgba(255,255,255,0.06); backdrop-filter:blur(12px);
  border:1px solid rgba(200,202,244,0.12);
  padding:36px; position:relative;
  transition:all .35s var(--ease-silk);
}
.testi-card:hover { background:rgba(255,255,255,0.1); transform:translateY(-6px); border-color:rgba(97,103,203,0.35); }
.testi-quote { font-size:3rem; line-height:1; color:var(--indigo); opacity:0.4; margin-bottom:16px; font-family:var(--font-display); }
.testi-text { font-family:var(--font-display); font-size:1.05rem; line-height:1.7; color:rgba(200,202,244,0.85); font-style:italic; margin-bottom:24px; font-weight:300; }
.testi-author { display:flex; align-items:center; gap:14px; }
.testi-avatar {
  width:44px; height:44px; border-radius:50%;
  background:linear-gradient(135deg,var(--indigo),var(--deep-indigo));
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-size:1.1rem; color:var(--white);
}
.testi-name { font-weight:500; font-size:0.85rem; color:var(--lavender); }
.testi-loc { font-size:0.72rem; color:rgba(200,202,244,0.45); }
.testi-stars { color:#f0c040; font-size:0.7rem; margin-bottom:2px; }

/* ═══ DESIGNER SECTION ═══ */
#designer { background:var(--off-white); }
.designer-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; margin-top:64px; }
.designer-card {
  background:linear-gradient(145deg,var(--navy),var(--deep-indigo));
  padding:56px 48px; text-align:center; position:relative; overflow:hidden;
}
.designer-card::before {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(45deg,transparent,transparent 20px,rgba(200,202,244,0.02) 20px,rgba(200,202,244,0.02) 21px);
}
.designer-avatar {
  width:130px; height:130px; border-radius:50%;
  background:linear-gradient(135deg,var(--indigo),var(--lavender));
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 24px; font-size:4rem;
  box-shadow:0 0 0 4px rgba(97,103,203,0.3), 0 0 0 8px rgba(97,103,203,0.1);
  position:relative; z-index:1;
}
.designer-name { font-family:var(--font-display); font-size:2rem; color:var(--white); margin-bottom:6px; }
.designer-role { font-size:0.72rem; letter-spacing:0.35em; color:var(--lavender); text-transform:uppercase; margin-bottom:24px; }
.designer-bio { font-size:0.88rem; line-height:1.85; color:rgba(200,202,244,0.7); font-weight:300; position:relative; z-index:1; }
.designer-socials { display:flex; gap:14px; justify-content:center; margin-top:24px; position:relative; z-index:1; }
.dsocial {
  width:38px; height:38px; border-radius:50%;
  border:1px solid rgba(200,202,244,0.2);
  display:flex; align-items:center; justify-content:center;
  color:var(--lavender); text-decoration:none; font-size:0.9rem;
  transition:all .25s;
}
.dsocial:hover { background:var(--indigo); border-color:var(--indigo); color:var(--white); }
.designer-text {}
.designer-text h2 { font-family:var(--font-display); font-size:clamp(2rem,3vw,3rem); font-weight:400; color:var(--navy); margin-bottom:20px; }
.designer-text h2 em { font-style:italic; color:var(--indigo); }
.designer-text p { font-size:0.9rem; line-height:1.9; color:var(--steel); font-weight:300; margin-bottom:16px; }
.designer-certs { display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.cert-chip {
  padding:6px 16px; background:var(--white);
  border:1px solid rgba(97,103,203,0.2); border-radius:100px;
  font-size:0.72rem; color:var(--deep-indigo); font-weight:500;
}

/* ═══ CTA BANNER ═══ */
#cta-banner {
  background:linear-gradient(135deg,var(--deep-indigo) 0%,var(--navy) 50%,#0d1050 100%);
  padding:100px 5%; text-align:center; position:relative; overflow:hidden;
}
#cta-banner::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 50%, rgba(97,103,203,0.2) 0%, transparent 70%);
}
.cta-inner { position:relative; z-index:1; max-width:700px; margin:0 auto; }
.cta-inner h2 { font-family:var(--font-display); font-size:clamp(2rem,4vw,3.5rem); color:var(--white); margin-bottom:20px; font-weight:400; }
.cta-inner h2 em { font-style:italic; color:var(--lavender); }
.cta-inner p { font-size:0.92rem; color:rgba(200,202,244,0.6); margin-bottom:40px; line-height:1.8; }
.cta-buttons { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; }

/* ═══ MAP SECTION ═══ */
#map-section { background:var(--cream); padding:100px 5%; }
.map-grid { display:grid; grid-template-columns:1fr 2fr; gap:60px; align-items:start; margin-top:48px; }
.contact-info {}
.contact-info h3 { font-family:var(--font-display); font-size:1.8rem; font-weight:400; color:var(--navy); margin-bottom:28px; }
.contact-item { display:flex; gap:16px; align-items:flex-start; margin-bottom:24px; }
.contact-icon {
  width:44px; height:44px; border-radius:50%;
  background:linear-gradient(135deg,var(--indigo),var(--deep-indigo));
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:1rem; flex-shrink:0;
}
.contact-text p { font-weight:500; color:var(--navy); font-size:0.85rem; margin-bottom:2px; }
.contact-text a { font-size:0.88rem; color:var(--steel); text-decoration:none; transition:color .2s; display:block; }
.contact-text a:hover { color:var(--indigo); }
.map-embed { border-radius:4px; overflow:hidden; box-shadow:var(--shadow-md); }
.map-embed iframe { display:block; width:100%; height:420px; border:none; }

/* ═══ FOOTER ═══ */
footer {
  background:var(--navy); color:rgba(200,202,244,0.7);
  padding:80px 5% 0;
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; max-width:1300px; margin:0 auto; padding-bottom:60px; }
.footer-brand {}
.footer-logo { display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.footer-logo svg { width:44px; height:44px; }
.footer-brand-name { font-family:var(--font-caps); font-size:1.4rem; color:var(--white); letter-spacing:0.15em; }
.footer-brand-tag { font-size:0.6rem; letter-spacing:0.35em; color:var(--indigo); text-transform:uppercase; }
.footer-desc { font-size:0.83rem; line-height:1.85; font-weight:300; max-width:300px; margin-bottom:24px; }
.footer-socials { display:flex; gap:12px; }
.fsocial {
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(200,202,244,0.15);
  display:flex; align-items:center; justify-content:center;
  color:rgba(200,202,244,0.6); text-decoration:none; font-size:0.85rem;
  transition:all .25s;
}
.fsocial:hover { background:var(--indigo); border-color:var(--indigo); color:var(--white); }
.footer-col h4 {
  font-family:var(--font-caps); font-size:0.75rem; letter-spacing:0.25em;
  color:var(--white); text-transform:uppercase; margin-bottom:20px;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a {
  font-size:0.82rem; color:rgba(200,202,244,0.6); text-decoration:none;
  transition:color .2s; font-weight:300;
}
.footer-col ul li a:hover { color:var(--lavender); }
.footer-bottom {
  border-top:1px solid rgba(200,202,244,0.1);
  padding:24px 0;
  display:flex; align-items:center; justify-content:space-between;
  font-size:0.75rem; color:rgba(200,202,244,0.4);
  max-width:1300px; margin:0 auto;
}
.footer-bottom a { color:rgba(200,202,244,0.4); text-decoration:none; }
.footer-bottom a:hover { color:var(--lavender); }

/* ═══ FLOATING BUTTONS ═══ */
#floating-wa {
  position:fixed; bottom:28px; right:28px; z-index:900;
  width:58px; height:58px; border-radius:50%;
  background:linear-gradient(135deg,#25D366,#128C7E);
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; color:var(--white); font-size:1.6rem;
  box-shadow:0 6px 24px rgba(37,211,102,0.5);
  animation:waPulse 2.5s ease-in-out infinite;
  transition:all .25s var(--ease-spring);
}
#floating-wa:hover { transform:scale(1.12) translateY(-4px); box-shadow:0 12px 40px rgba(37,211,102,0.6); }
@keyframes waPulse {
  0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.5),0 0 0 0 rgba(37,211,102,0.3)}
  50%{box-shadow:0 6px 24px rgba(37,211,102,0.5),0 0 0 14px rgba(37,211,102,0)}
}
#floating-call {
  position:fixed; bottom:28px; right:100px; z-index:900;
  width:58px; height:58px; border-radius:50%;
  background:linear-gradient(135deg,var(--indigo),var(--deep-indigo));
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; color:var(--white); font-size:1.4rem;
  box-shadow:0 6px 24px rgba(97,103,203,0.5);
  animation:callRing 3s ease-in-out infinite;
  transition:all .25s var(--ease-spring);
}
#floating-call:hover { transform:scale(1.12) translateY(-4px); }
@keyframes callRing {
  0%,80%,100%{transform:rotate(0deg)}
  10%{transform:rotate(-12deg)}
  20%{transform:rotate(12deg)}
  30%{transform:rotate(-10deg)}
  40%{transform:rotate(10deg)}
  50%{transform:rotate(-5deg)}
  60%{transform:rotate(5deg)}
}
.floating-tooltip {
  position:absolute; right:70px; top:50%; transform:translateY(-50%);
  background:var(--navy); color:var(--white); white-space:nowrap;
  padding:6px 14px; border-radius:4px; font-size:0.72rem; font-weight:500;
  opacity:0; pointer-events:none; transition:all .25s;
}
#floating-wa:hover .floating-tooltip,
#floating-call:hover .floating-tooltip { opacity:1; }

/* ═══ SERVICE PAGE ═══ */
.service-hero {
  min-height:70vh; display:flex; align-items:center;
  background:linear-gradient(150deg,var(--navy) 0%,var(--deep-indigo) 60%,var(--steel) 100%);
  padding:calc(var(--nav-h) + 60px) 5% 80px;
  position:relative; overflow:hidden;
}
.service-hero::before {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(45deg,transparent,transparent 30px,rgba(200,202,244,0.02) 30px,rgba(200,202,244,0.02) 31px);
}
.service-hero-inner { position:relative; z-index:1; max-width:1300px; margin:0 auto; width:100%; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.service-breadcrumb {
  display:flex; align-items:center; gap:8px;
  font-size:0.72rem; color:rgba(200,202,244,0.5); margin-bottom:20px;
  letter-spacing:0.1em;
}
.service-breadcrumb a { color:rgba(200,202,244,0.5); text-decoration:none; }
.service-breadcrumb a:hover { color:var(--lavender); }
.service-breadcrumb span { color:rgba(200,202,244,0.25); }
.service-hero h1 { font-family:var(--font-display); font-size:clamp(2.8rem,5vw,5rem); font-weight:300; color:var(--white); line-height:1.05; margin-bottom:20px; }
.service-hero h1 em { font-style:italic; color:var(--lavender); }
.service-hero-desc { font-size:1rem; line-height:1.8; color:rgba(200,202,244,0.65); font-weight:300; margin-bottom:36px; }
.service-icon-large { font-size:10rem; opacity:0.15; position:absolute; right:10%; top:50%; transform:translateY(-50%); animation:float 6s ease-in-out infinite; }
.service-content { max-width:1300px; margin:0 auto; padding:100px 5%; display:grid; grid-template-columns:2fr 1fr; gap:60px; }
.service-article {}
.service-article h2 { font-family:var(--font-display); font-size:2.2rem; font-weight:400; color:var(--navy); margin:40px 0 16px; }
.service-article h2:first-of-type { margin-top:0; }
.service-article h3 { font-family:var(--font-display); font-size:1.4rem; font-weight:500; color:var(--deep-indigo); margin:28px 0 12px; }
.service-article p { font-size:0.92rem; line-height:1.95; color:var(--steel); font-weight:300; margin-bottom:20px; }
.service-article ul { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:24px; }
.service-article ul li { display:flex; align-items:flex-start; gap:12px; font-size:0.9rem; color:var(--steel); font-weight:300; }
.service-article ul li::before { content:'◈'; color:var(--indigo); font-size:0.7rem; margin-top:4px; flex-shrink:0; }
.service-sidebar { display:flex; flex-direction:column; gap:24px; }
.sidebar-card { background:var(--white); border:1px solid rgba(97,103,203,0.1); padding:28px; border-top:3px solid var(--indigo); }
.sidebar-card h4 { font-family:var(--font-display); font-size:1.2rem; font-weight:500; color:var(--navy); margin-bottom:16px; }
.sidebar-card p { font-size:0.83rem; line-height:1.75; color:var(--steel); font-weight:300; margin-bottom:16px; }
.sidebar-card ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.sidebar-card ul li { font-size:0.82rem; color:var(--steel); padding:6px 0; border-bottom:1px solid rgba(97,103,203,0.07); }
.sidebar-card ul li:last-child { border-bottom:none; }
.sidebar-cta-card {
  background:linear-gradient(145deg,var(--deep-indigo),var(--navy));
  padding:32px; color:var(--white); text-align:center;
}
.sidebar-cta-card h4 { font-family:var(--font-display); font-size:1.3rem; color:var(--white); margin-bottom:12px; }
.sidebar-cta-card p { font-size:0.82rem; color:rgba(200,202,244,0.7); margin-bottom:20px; font-weight:300; }
.sidebar-cta-card .btn { width:100%; justify-content:center; padding:12px 20px; }
.service-benefits { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:40px; }
.benefit-card { padding:20px; background:var(--off-white); border-left:3px solid var(--indigo); }
.benefit-card h4 { font-family:var(--font-display); font-size:1.1rem; color:var(--navy); margin-bottom:6px; }
.benefit-card p { font-size:0.8rem; color:var(--steel); line-height:1.6; font-weight:300; }
.service-related { background:var(--off-white); padding:80px 5%; }
.related-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:40px; }
.related-card {
  background:var(--white); border:1px solid rgba(97,103,203,0.1);
  padding:24px; text-decoration:none;
  transition:all .3s var(--ease-silk); text-align:center;
}
.related-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-sm); border-color:var(--indigo); }
.related-card .r-icon { font-size:2.5rem; display:block; margin-bottom:10px; }
.related-card h4 { font-family:var(--font-display); font-size:1.1rem; color:var(--navy); }

/* ═══ LEGAL PAGES ═══ */
.legal-hero {
  background:linear-gradient(135deg,var(--navy),var(--deep-indigo));
  padding:calc(var(--nav-h) + 60px) 5% 80px;
  text-align:center;
}
.legal-hero h1 { font-family:var(--font-display); font-size:3.5rem; font-weight:300; color:var(--white); margin-bottom:16px; }
.legal-hero p { font-size:0.9rem; color:rgba(200,202,244,0.6); }
.legal-content { max-width:900px; margin:0 auto; padding:80px 5%; }
.legal-content h2 { font-family:var(--font-display); font-size:1.8rem; font-weight:500; color:var(--navy); margin:48px 0 16px; padding-top:24px; border-top:1px solid rgba(97,103,203,0.1); }
.legal-content h2:first-of-type { border-top:none; margin-top:0; }
.legal-content p { font-size:0.9rem; line-height:1.95; color:var(--steel); font-weight:300; margin-bottom:16px; }
.legal-content ul { list-style:none; margin-bottom:20px; display:flex; flex-direction:column; gap:8px; }
.legal-content ul li { display:flex; align-items:flex-start; gap:10px; font-size:0.9rem; color:var(--steel); font-weight:300; line-height:1.7; }
.legal-content ul li::before { content:'›'; color:var(--indigo); font-size:1rem; flex-shrink:0; }
.legal-updated { display:inline-flex; align-items:center; gap:8px; font-size:0.8rem; color:var(--indigo); background:rgba(97,103,203,0.08); padding:8px 16px; border-radius:100px; margin-bottom:40px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; text-align:center; }
  .hero-visual { display:none; }
  .hero-stats { flex-wrap:wrap; gap:40px; }
  .about-grid,.designer-grid { grid-template-columns:1fr; }
  .categories-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
  .process-steps { grid-template-columns:repeat(2,1fr); gap:48px; }
  .process-steps::before { display:none; }
  .service-hero-inner { grid-template-columns:1fr; }
  .service-icon-large { display:none; }
  .service-content { grid-template-columns:1fr; }
  .service-sidebar { flex-direction:row; flex-wrap:wrap; }
  .service-sidebar > * { flex:1; min-width:240px; }
  .related-grid { grid-template-columns:repeat(2,1fr); }
  .map-grid { grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  :root{--nav-h:64px}
  body { cursor:auto; }
  #cursor { display:none; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  section { padding:70px 5%; }
  .hero-stats { gap:28px; }
  .categories-grid { grid-template-columns:1fr; }
  .about-features { grid-template-columns:1fr; }
  .service-benefits { grid-template-columns:1fr; }
  .cta-buttons { flex-direction:column; align-items:center; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:12px; text-align:center; }
  .hero-buttons { justify-content:center; }
  #floating-wa { bottom:20px; right:20px; width:52px; height:52px; }
  #floating-call { right:82px; bottom:20px; width:52px; height:52px; }
  .process-steps { grid-template-columns:1fr; }
  .strip-ticker { animation-duration:14s; }
}

/* ═══ PAGE LOADER ═══ */
#page-loader {
  position:fixed; inset:0; z-index:9998;
  background:var(--navy); display:flex; align-items:center; justify-content:center;
  transition:opacity .6s ease .2s, visibility .6s ease .2s;
}
#page-loader.loaded { opacity:0; visibility:hidden; }
.loader-content { text-align:center; animation:loaderPop .6s var(--ease-spring); }
@keyframes loaderPop { from{opacity:0;transform:scale(0.7)} to{opacity:1;transform:scale(1)} }
.loader-logo { width:90px; height:90px; margin-bottom:20px; }
.loader-bar { width:180px; height:2px; background:rgba(200,202,244,0.15); border-radius:10px; overflow:hidden; margin:0 auto; }
.loader-fill { height:100%; background:linear-gradient(90deg,var(--indigo),var(--lavender)); border-radius:10px; animation:load 1.4s var(--ease-silk) forwards; }
@keyframes load { from{width:0} to{width:100%} }
.loader-brand { font-family:var(--font-caps); font-size:1.6rem; color:var(--white); letter-spacing:0.2em; margin-bottom:12px; }
