/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0B1E3D;
  --navy2:   #112347;
  --navy3:   #0d1a30;
  --cream:   #F6F0E4;
  --cream2:  #EDE5D4;
  --white:   #FDFAF5;
  --gold:    #C6974A;
  --gold2:   #E0B46A;
  --gold3:   #F2D08A;
  --muted:   #8A8070;
  --muted2:  #B0A898;

  /* Glassmorphism tokens */
  --glass-dark:   rgba(11, 30, 61, 0.35);
  --glass-light:  rgba(253, 250, 245, 0.18);
  --glass-gold:   rgba(198, 151, 74, 0.12);
  --glass-blur:   blur(20px) saturate(1.6);
  --glass-border-dark:  rgba(198, 151, 74, 0.22);
  --glass-border-light: rgba(253, 250, 245, 0.28);
  --f-d: 'Cormorant Garamond', serif;
  --f-h: 'Bebas Neue', sans-serif;
  --f-b: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-b);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--navy);
}

::selection { background: var(--gold); color: #fff; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }


/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s;
}
.cursor-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1.5px solid rgba(198,151,74,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}


/* ════════════════════════════════
   GLASSMORPHISM NAV
   ════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 64px;
  /* Glass from the start — always frosted */
  background: var(--glass-dark);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border-dark);
  box-shadow: 0 8px 40px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: padding 0.4s, background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  padding: 14px 64px;
  background: rgba(11, 30, 61, 0.72);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  box-shadow: 0 12px 50px rgba(0,0,0,0.3), inset 0 1px 0 rgba(198,151,74,0.1);
  border-bottom-color: rgba(198,151,74,0.3);
}
.nav-logo {
  font-family: var(--f-d); font-size: 34px;
  font-weight: 600; letter-spacing: 2px; color: var(--white);
  display: flex; align-items: center;  /* aligns logo + text side by side */
   line-height: 1; 
}
.nav-logo span { color: var(--gold2); line-height: 1;}
.nav-logo-img {
  height: 34px;          /* ← adjust this to make logo bigger or smaller */
  width: auto;
  vertical-align: middle;
  position: relative;
  top: -1px;             
  object-fit: contain;
    filter: brightness(1.2) drop-shadow(0 0 6px rgba(198,151,74,0.3));
   /* slight brightness boost so PNG looks crisp */
}

.nav-links {
  display: flex; gap: 38px; list-style: none;
  font-size: 12px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.nav-links a { color: rgba(246,240,228,0.7); transition: color 0.3s; position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold2); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold2); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 11px 26px; border: 1px solid transparent;
  cursor: pointer; font-family: var(--f-b);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-cta:hover { background: transparent; border-color: var(--gold2); color: var(--gold2); }


/* ════════════════════════════════
   HERO
   ════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 64px 90px;
  position: relative; overflow: hidden;
  background:
  linear-gradient(160deg,
    rgba(11,30,61,0.75) 0%,      /* ← this number controls dimness */
    rgba(19,43,82,0.65) 45%,     /* increase toward 0.9 = more dim */
    rgba(26,58,96,0.55) 70%,     /* decrease toward 0.3 = more visible */
    rgba(14,34,64,0.80) 100%
  ),
  url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab') center/cover no-repeat;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.h-orb1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198,151,74,0.15) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.h-orb2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,58,96,0.6) 0%, transparent 70%);
  bottom: 0; left: 10%; pointer-events: none;
}
.h-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(198,151,74,0.20) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,151,74,0.20) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 20%, transparent 100%);
}
.h-nbg {
  position: absolute; right: 40px; bottom: -40px;
  font-family: var(--f-h);
  font-size: clamp(200px, 24vw, 360px);
  color: rgba(198,151,74,0.30); line-height: 1;
  text-shadow: 0 0 120px rgba(198,151,74,0.30);
  pointer-events: none; letter-spacing: -5px;
}
.h-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(198,151,74,0.12);
  border: 1px solid rgba(198,151,74,0.3);
  padding: 8px 18px; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold3); margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
  position: relative; z-index: 1;
  width: fit-content;
  margin-top: max(110px, 13vh);
}
.h-badge::before { content: '✦'; font-size: 8px; }
h1.htitle {
  font-family: var(--f-d);
  font-size: clamp(58px, 9vw, 126px);
  font-weight: 300; line-height: 0.9;
  letter-spacing: -1.5px; color: var(--white);
  max-width: 960px;
  opacity: 0; animation: fadeUp 0.9s ease 0.4s forwards;
}
h1.htitle em { font-style: italic; color: var(--gold2); display: block; }
.h-bot {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-top: 56px;
  opacity: 0; animation: fadeUp 0.8s ease 0.7s forwards;
}
.h-desc { max-width: 340px; font-size: 14px; color: rgba(246,240,228,0.55); line-height: 1.85; font-weight: 300; }
.h-ctas { display: flex; gap: 18px; align-items: center; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 34px; border: none; cursor: pointer;
  font-family: var(--f-b); border-radius: 2px;
  transition: all 0.3s;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(198,151,74,0.35); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 28px; transition: all 0.3s; border-radius: 2px;
}
.btn-wa:hover { background: #1ebe59; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.3); }
.btn-wa svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.h-scroll {
  position: absolute; bottom: 32px; left: 64px;
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(246,240,228,0.3);
  opacity: 0; animation: fadeUp 0.8s ease 1s forwards;
}
.scroll-line { width: 40px; height: 1px; background: rgba(246,240,228,0.2); }


/* ── VIDEO MOCKUP ── */
.vsec { background: var(--cream); padding: 80px 64px; }
.vid-lbl {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
  display: flex; align-items: center; gap: 14px;
}
.vid-lbl::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.vwrap {
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(11,30,61,0.12);
  box-shadow: 0 40px 120px rgba(11,30,61,0.15);
  background: #fff;
}
.bbar {
  background: #F2EDE4; padding: 11px 20px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(11,30,61,0.08);
}
.bdot { width: 10px; height: 10px; border-radius: 50%; }
.bdot:nth-child(1) { background: #FF5F57; }
.bdot:nth-child(2) { background: #FEBC2E; }
.bdot:nth-child(3) { background: #28C840; }
.burl {
  flex: 1; margin-left: 10px;
  background: rgba(11,30,61,0.06); border-radius: 4px;
  height: 22px; display: flex; align-items: center;
  padding: 0 12px; font-size: 11px; color: var(--muted); font-family: monospace;
}
.vscr {
  position: relative; aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0B1E3D, #132B52);
  overflow: hidden;
}
.dui {
  position: absolute; inset: 0; padding: 20px;
  display: grid;
  grid-template-columns: 190px 1fr;
  grid-template-rows: 46px 1fr;
  gap: 10px;
}
.dsb {
  grid-row: 1 / 3;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 16px;
}
.dlogo { font-family: var(--f-d); font-size: 14px; color: var(--gold2); margin-bottom: 18px; font-weight: 600; }
.dnav {
  height: 28px; border-radius: 5px;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center;
  padding: 0 10px; font-size: 10px;
  color: rgba(255,255,255,0.3); gap: 7px; margin-bottom: 5px;
}
.dnav.act { background: rgba(198,151,74,0.18); color: var(--gold2); }
.ddot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.dtop {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 0 14px; gap: 8px;
}
.dtb { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.07); }
.dmain {
  display: grid;
  grid-template-columns: repeat(3,1fr) 1.3fr;
  grid-template-rows: 88px 1fr;
  gap: 10px;
}
.dc {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 12px;
}
.dcl { font-size: 8px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.dcv { font-family: var(--f-d); font-size: 20px; color: #fff; font-weight: 500; }
.dcc { font-size: 8px; color: #5DBB63; margin-top: 3px; }
.dchart-c { grid-column: 1 / 4; grid-row: 2; }
.dpie { grid-row: 1 / 3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.cbars { height: 100%; display: flex; align-items: flex-end; gap: 5px; padding: 12px; }
.cbar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--gold2) 0%, rgba(198,151,74,0.25) 100%);
  animation: barGrow 1.5s ease forwards; transform-origin: bottom;
}
.ply {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  z-index: 2; cursor: pointer; transition: background 0.4s;
}
.ply:hover { background: rgba(0,0,0,0.35); }
.pc {
  width: 68px; height: 68px;
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold);
  margin-bottom: 14px; transition: all 0.4s;
}
.ply:hover .pc { background: var(--gold); color: #fff; transform: scale(1.1); }
.pt { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); }


/* ── TICKER ── */
.ticker {
  border-top: 1px solid rgba(11,30,61,0.1);
  border-bottom: 1px solid rgba(11,30,61,0.1);
  padding: 15px 0; overflow: hidden; background: var(--cream2);
}
.track { display: flex; gap: 50px; animation: tick 28s linear infinite; white-space: nowrap; }
.ti { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 14px; }
.ts { color: var(--gold); }


/* ════════════════════════════════
   SHARED SECTION + GLASS TITLE BUBBLES
   ════════════════════════════════ */
section { padding: 120px 64px; position: relative; }

/* Section Label (small tag above title) */
.sl {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 12px;
}
.sl::before { content: ''; width: 26px; height: 1px; background: var(--gold); }

/* ── GLASS TITLE BUBBLE ──
   Wraps the .sl + .st pair inside a frosted pill/bubble */
.section-glass-bubble {
  display: inline-block;
  position: relative;
  padding: 28px 42px 32px;
  margin-bottom: 50px;
  border-radius: 24px;

  /* Glassmorphism core */
  background: rgba(253, 250, 245, 0.14);
  backdrop-filter: blur(22px) saturate(1.8);
  -webkit-backdrop-filter: blur(22px) saturate(1.8);

  /* Layered border — bright top edge, subtle bottom */
  border: 1px solid rgba(253, 250, 245, 0.32);
  border-bottom-color: rgba(253, 250, 245, 0.12);
  border-right-color: rgba(253, 250, 245, 0.16);

  /* Depth & glow */
  box-shadow:
    0 8px 32px rgba(11,30,61,0.08),
    0 2px 8px rgba(11,30,61,0.04),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -1px 0 rgba(0,0,0,0.04);
}

/* Dark-section bubbles (Services, Why Us, CTA) use gold-tinted glass */
.dark-section .section-glass-bubble {
  background: rgba(198, 151, 74, 0.08);
  backdrop-filter: blur(24px) saturate(1.9);
  -webkit-backdrop-filter: blur(24px) saturate(1.9);
  border-color: rgba(198, 151, 74, 0.25);
  border-bottom-color: rgba(198, 151, 74, 0.1);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.2),
    0 2px 8px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(198,151,74,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.1);
}

/* Shine sweep on the bubble */
.section-glass-bubble::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    130deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.04) 40%,
    transparent 60%
  );
  pointer-events: none;
}

.st {
  font-family: var(--f-d);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 300; line-height: 1.04; letter-spacing: -0.5px;
  color: var(--navy);
}
.st em { font-style: italic; color: var(--gold); }

/* Override title color inside dark sections */
.dark-section .st { color: var(--white); }
.dark-section .st em { color: var(--gold2); }
.dark-section .sl { color: var(--gold2); }
.dark-section .sl::before { background: var(--gold2); }


/* ════════════════════════════════
   ABOUT
   ════════════════════════════════ */
.about { background: var(--white); }
.ai { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.astats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(11,30,61,0.08);
  border: 1px solid rgba(11,30,61,0.08);
}
.astat { background: var(--white); padding: 38px 34px; transition: background 0.3s; }
.astat:hover { background: var(--cream); }
.snum { font-family: var(--f-d); font-size: clamp(44px,5vw,66px); font-weight: 300; color: var(--gold); line-height: 1; }
.slbl { font-size: 12px; color: var(--muted); margin-top: 8px; }
.atxt p { color: var(--muted); font-weight: 300; line-height: 1.9; font-size: 15px; margin-bottom: 22px; }
.atxt p strong { color: var(--navy); font-weight: 500; }
.sig { font-family: var(--f-d); font-size: 22px; color: var(--gold); font-style: italic; margin-top: 28px; }


/* ════════════════════════════════
   SERVICES
   ════════════════════════════════ */
.services { background: var(--navy); }
.sgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.sc {
  position: relative; overflow: hidden;
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.07);
  padding: 44px 36px 40px; min-height: 380px;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.sc::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(3px) brightness(0.22) saturate(0.8);
  transform: scale(1.08); z-index: 0;
  transition: filter 0.5s, transform 0.5s;
}
.sc::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(11,30,61,0.7) 0%, rgba(11,30,61,0.45) 100%);
  z-index: 1; transition: background 0.5s;
}
.sc:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); border-color: rgba(198,151,74,0.35); }
.sc:hover::before { filter: blur(2px) brightness(0.32) saturate(1.1); transform: scale(1.12); }
.sc:hover::after { background: linear-gradient(160deg, rgba(11,30,61,0.55) 0%, rgba(11,30,61,0.3) 100%); }
.sc > * { position: relative; z-index: 2; }
.sc.c1::before { background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=800&auto=format&fit=crop'); }
.sc.c2::before { background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=800&auto=format&fit=crop'); }
.sc.c3::before { background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=800&auto=format&fit=crop'); }
.sc.c4::before { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&auto=format&fit=crop'); }
.sc.c5::before { background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=800&auto=format&fit=crop'); }
.sc.c6::before { background-image: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=800&auto=format&fit=crop'); }
.snbg { font-family: var(--f-h); font-size: 64px; color: rgba(255, 255, 255, 0.18); line-height: 1; margin-bottom: 18px; transition: color 0.4s; }
.sc:hover .snbg { color: rgba(198,151,74,0.35); }
.sico {
  width: 44px; height: 44px; border: 1px solid rgba(198,151,74,0.35);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 22px;
  background: rgba(198,151,74,0.08); transition: all 0.4s;
}
.sc:hover .sico { background: rgba(198,151,74,0.2); border-color: var(--gold2); }
.sname { font-family: var(--f-d); font-size: 24px; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.sdesc { font-size: 13px; color: rgba(246,240,228,0.6); line-height: 1.8; font-weight: 300; flex: 1; }
.sarr { margin-top: 24px; color: var(--gold2); font-size: 18px; display: inline-block; transition: transform 0.3s; }
.sc:hover .sarr { transform: translate(4px, -4px); }
.stag {
  position: absolute; top: 20px; right: 20px; z-index: 3;
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  background: rgba(198,151,74,0.2); border: 1px solid rgba(198,151,74,0.35);
  color: var(--gold2); padding: 4px 10px; border-radius: 2px;
}
/* Sub-service bullet list inside cards */
.slist {
  list-style: none; margin-top: 10px;
  display: flex; flex-direction: column; gap: 5px;
}
.slist li {
  font-size: 12px; color: rgba(246,240,228,0.55);
  padding-left: 14px; position: relative; line-height: 1.5;
}
.slist li::before {
  content: '›'; position: absolute; left: 0;
  color: var(--gold2); font-size: 13px; line-height: 1.4;
}


/* ════════════════════════════════
   PROCESS
   ════════════════════════════════ */
.process { background: var(--cream); }
.pi { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.pstps { display: flex; flex-direction: column; }
.pstep {
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(11,30,61,0.1);
  cursor: pointer; border-radius: 4px; transition: background 0.3s;
}
.pstep:first-child { border-top: 1px solid rgba(11,30,61,0.1); }
.psbg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(8px) brightness(0.1) saturate(0.5);
  transform: scale(1.1); opacity: 0; transition: opacity 0.5s;
}
.pstep:hover .psbg { opacity: 1; }
.psi { position: relative; z-index: 1; display: flex; gap: 28px; padding: 32px 24px; }
.pnum { font-family: var(--f-h); font-size: 44px; color: rgba(11,30,61,0.18); width: 48px; flex-shrink: 0; line-height: 1; transition: color 0.3s; }
.pstep:hover .pnum { color: var(--gold); }
.ptitle { font-family: var(--f-d); font-size: 20px; font-weight: 500; margin-bottom: 8px; color: var(--navy); }
.pdesc { font-size: 13px; color: var(--muted); line-height: 1.8; font-weight: 300; }
.pstep.p1 .psbg { background-image: url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=800&auto=format&fit=crop'); }
.pstep.p2 .psbg { background-image: url('https://images.unsplash.com/photo-1518186285589-2f7649de83e0?w=800&auto=format&fit=crop'); }
.pstep.p3 .psbg { background-image: url('https://images.unsplash.com/photo-1504868584819-f8e8b4b6d7e3?w=800&auto=format&fit=crop'); }
.pstep.p4 .psbg { background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800&auto=format&fit=crop'); }
.pstep.p5 .psbg { background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=800&auto=format&fit=crop'); }
.pvis {
  position: sticky; top: 100px;
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(11,30,61,0.1);
  background: var(--navy);
  padding: 48px; min-height: 380px;
  display: flex; flex-direction: column; justify-content: center;
}
.pvnum { font-family: var(--f-h); font-size: 110px; color: rgba(251, 251, 251, 0.179); line-height: 1; margin-bottom: 16px; }
.pvtitle { font-family: var(--f-d); font-size: 30px; font-weight: 300; color: var(--gold2); font-style: italic; margin-bottom: 14px; transition: all 0.4s; }
.pvdesc { font-size: 13px; color: rgba(246,240,228,0.5); line-height: 1.9; font-weight: 300; transition: all 0.4s; }


/* ════════════════════════════════
   WHY US
   ════════════════════════════════ */
.why { background: var(--navy2); }
.wg { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.wc {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(198,151,74,0.12);
  border-radius: 8px; padding: 48px 42px; transition: all 0.4s;
}
.wc:hover { background: rgba(198,151,74,0.06); border-color: rgba(198,151,74,0.3); transform: translateY(-4px); }
.wico { font-size: 28px; margin-bottom: 18px; }
.wtitle { font-family: var(--f-d); font-size: 23px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.wdesc { font-size: 13px; color: rgba(246,240,228,0.5); line-height: 1.9; font-weight: 300; }


/* ════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════ */
.testi { background: var(--cream2); }
.tcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tc {
  background: var(--white); border: 1px solid rgba(11,30,61,0.1);
  border-radius: 8px; padding: 40px; position: relative; overflow: hidden;
  transition: all 0.4s; box-shadow: 0 4px 20px rgba(11,30,61,0.04);
}
.tc:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(11,30,61,0.1); border-color: rgba(198,151,74,0.3); }
.tqm { font-family: var(--f-d); font-size: 60px; color: rgba(198,151,74,0.12); position: absolute; top: 14px; right: 20px; line-height: 1; }
.tstar { color: var(--gold); font-size: 12px; margin-bottom: 18px; letter-spacing: 2px; }
.ttext { font-family: var(--f-d); font-size: 17px; font-style: italic; line-height: 1.75; color: var(--navy); margin-bottom: 26px; font-weight: 400; }
.tmeta { display: flex; align-items: center; gap: 12px; }
.tav {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-d); font-weight: 600; color: #fff; font-size: 14px;
}
.tname { font-size: 13px; font-weight: 500; color: var(--navy); }
.trole { font-size: 11px; color: var(--muted); margin-top: 2px; }


/* ════════════════════════════════
   CTA
   ════════════════════════════════ */
.cta {
  background: linear-gradient(135deg, #0B1E3D 0%, #132B52 50%, #0E2240 100%);
  padding: 140px 64px; text-align: center; position: relative; overflow: hidden;
}
.cta-bgt {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--f-h); font-size: clamp(120px, 20vw, 300px);
  color: rgba(198,151,74,0.04); white-space: nowrap; pointer-events: none; letter-spacing: 10px;
}
.cta-orb {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198,151,74,0.08), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.ctatitle {
  font-family: var(--f-d); font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 300; line-height: 1.02; max-width: 780px;
  margin: 0 auto 20px; color: var(--white);
  position: relative; z-index: 1;
}
.ctatitle em { font-style: italic; color: var(--gold2); }
.ctasub {
  font-size: 14px; color: rgba(246,240,228,0.45); max-width: 460px;
  margin: 0 auto 50px; font-weight: 300;
  position: relative; z-index: 1; line-height: 1.8;
}
.cta-acts {
  display: flex; gap: 18px; justify-content: center;
  align-items: center; position: relative; z-index: 1; flex-wrap: wrap;
}


/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
footer { background: var(--navy3); border-top: 1px solid rgba(198,151,74,0.2); padding: 80px 64px 40px; }
.ftop { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.fbrand { font-family: var(--f-d); font-size: 30px; font-weight: 500; color: var(--white); margin-bottom: 14px; }
.fbrand span { color: var(--gold2); }
.ftagline { font-size: 13px; color: rgba(246,240,228,0.4); line-height: 1.8; font-weight: 300; max-width: 250px; }
.fcol h4 { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.flinks { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.flinks a { font-size: 13px; color: rgba(246,240,228,0.4); transition: color 0.3s; }
.flinks a:hover { color: var(--white); }
.fbot { border-top: 1px solid rgba(198,151,74,0.15); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }
.fcopy { font-size: 12px; color: rgba(246,240,228,0.25); }
.fsoc { display: flex; gap: 10px; }
.fsb {
  width: 34px; height: 34px; border: 1px solid rgba(198,151,74,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(246,240,228,0.3);
  transition: all 0.3s; border-radius: 3px;
}
.fsb:hover { border-color: var(--gold); color: var(--gold); }


/* ════════════════════════════════
   ANIMATIONS & REVEALS
   ════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(48px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hero, section, .vsec { padding-left: 24px; padding-right: 24px; }
  .ai, .pi { grid-template-columns: 1fr; gap: 40px; }
  .sgrid { grid-template-columns: 1fr; }
  .wg { grid-template-columns: 1fr; }
  .tcards { grid-template-columns: 1fr; }
  .ftop { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pvis { display: none; }
  .cta-acts { flex-direction: column; }
  h1.htitle { font-size: clamp(48px, 12vw, 90px); }
  .section-glass-bubble { padding: 20px 24px 24px; border-radius: 16px; }
}
