/* Davila Capital Global — Home experience v3 */

.home-v2 {
  --green: #07192d;
  --green-mid: #123c69;
  --green-light: #3d6d96;
  --gold: #f2b66d;
  --gold-light: #ffd29a;
  --gold-dark: #d98a3d;
  --coral: #ff7468;
  --teal: #4ed8c7;
  --cream: #f7f3ec;
  --cream-dark: #ebe4d9;
  --white: #ffffff;
  --text: #102033;
  --text-mid: #46566a;
  --text-muted: #718096;
  --border: rgba(16, 32, 51, .11);
  --font-title: 'DM Serif Display', Georgia, serif;
  --font: 'Manrope', sans-serif;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 8px 24px rgba(7, 25, 45, .07);
  --shadow: 0 22px 60px rgba(7, 25, 45, .12);
  --shadow-lg: 0 38px 100px rgba(7, 25, 45, .18);
  --nav-h: 82px;
  --transition: .32s cubic-bezier(.2, .8, .2, 1);
  color: var(--text);
  background: var(--cream);
}

.home-v2::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 18%, rgba(78, 216, 199, .08), transparent 24%),
    radial-gradient(circle at 92% 55%, rgba(255, 116, 104, .06), transparent 24%),
    var(--cream);
}

.home-v2 ::selection {
  color: var(--green);
  background: var(--gold-light);
}

.home-v2 .container { max-width: 1240px; }

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  z-index: 2000;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
  box-shadow: 0 0 18px rgba(242, 182, 109, .55);
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  left: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  opacity: .25;
  background: radial-gradient(circle, rgba(78, 216, 199, .14), transparent 68%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity .25s ease;
}

/* Navigation */
.home-v2 .navbar {
  height: var(--nav-h);
  background: rgba(7, 25, 45, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.home-v2 .navbar.scrolled {
  height: 72px;
  background: rgba(7, 25, 45, .92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.home-v2 .nav-container { max-width: 1240px; }
.home-v2 .nav-logo-img { height: 58px; filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .16)); }
.home-v2 .nav-links { gap: clamp(.5rem, 1.5vw, 1.5rem); }
.home-v2 .nav-links a {
  position: relative;
  color: rgba(255, 255, 255, .74);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.home-v2 .nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -9px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transition: left var(--transition), right var(--transition);
}
.home-v2 .nav-links a:hover::after,
.home-v2 .nav-links a.active::after { left: 0; right: 0; }
.home-v2 .nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .72rem 1.2rem;
  color: var(--green);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 28px rgba(242, 182, 109, .24);
}
.home-v2 .nav-links a.nav-cta:hover {
  background: linear-gradient(135deg, #ffe1b9, var(--gold));
  box-shadow: 0 14px 36px rgba(242, 182, 109, .36);
}

/* Shared typography and buttons */
.home-v2 .section-header { margin-bottom: clamp(2.8rem, 6vw, 5rem); }
.home-v2 .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  color: var(--gold-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.home-v2 .section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}
.home-v2 .section-title {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 1.1rem;
  color: var(--text);
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  font-weight: 400;
  line-height: .99;
  letter-spacing: -.035em;
}
.home-v2 .section-subtitle {
  max-width: 720px;
  color: var(--text-mid);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.75;
}
.home-v2 .btn {
  min-height: 52px;
  padding: .9rem 1.45rem;
  border-radius: 14px;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: -.015em;
  transform: translate3d(var(--magnetic-x, 0), var(--magnetic-y, 0), 0);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}
.home-v2 .btn i { font-size: 1.08rem; transition: transform var(--transition); }
.home-v2 .btn:hover i { transform: translateX(3px); }
.home-v2 .btn-gold-glow {
  color: var(--green);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 40px rgba(242, 182, 109, .28), inset 0 1px 0 rgba(255, 255, 255, .7);
}
.home-v2 .btn-gold-glow:hover {
  box-shadow: 0 22px 52px rgba(242, 182, 109, .38), inset 0 1px 0 rgba(255, 255, 255, .8);
}
.home-v2 .btn-glass {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
}
.home-v2 .btn-glass:hover { border-color: rgba(255, 255, 255, .45); background: rgba(255, 255, 255, .12); }
.home-v2 .btn-dark-solid {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-mid), var(--green));
  box-shadow: 0 16px 36px rgba(7, 25, 45, .18);
}
.home-v2 .btn-dark-solid:hover { background: linear-gradient(135deg, #174d81, var(--green)); box-shadow: 0 22px 50px rgba(7, 25, 45, .26); }
.home-v2 .btn-outline-dark {
  color: var(--green-mid);
  border: 1px solid rgba(18, 60, 105, .18);
  background: rgba(18, 60, 105, .035);
}
.home-v2 .btn-outline-dark:hover { color: var(--white); border-color: var(--green-mid); background: var(--green-mid); }
.home-v2 .btn-gold-solid {
  color: var(--green);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 15px 36px rgba(242, 182, 109, .18);
}
.home-v2 .btn-gold-solid:hover { background: linear-gradient(135deg, #ffe0b3, var(--gold)); box-shadow: 0 20px 48px rgba(242, 182, 109, .3); }

/* Hero */
.home-v2 .hero {
  min-height: max(760px, 100svh);
  padding-top: var(--nav-h);
  color: var(--white);
  background:
    linear-gradient(90deg, #020e1e 0%, #03182d 43%, rgba(3, 24, 45, .96) 55%, rgba(3, 27, 51, .62) 72%, rgba(3, 27, 51, .12) 100%) center / cover no-repeat,
    url('../img/hero-shield-v3.jpg') right center / auto 100% no-repeat,
    #03182d;
  isolation: isolate;
}
.home-v2 .hero-bg-pattern {
  opacity: .34;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(78, 216, 199, .1), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(242, 182, 109, .1), transparent 25%),
    radial-gradient(circle at 55% 100%, rgba(29, 92, 140, .17), transparent 36%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .13;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-aurora {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(45px);
  opacity: .32;
  animation: aurora-drift 10s ease-in-out infinite alternate;
}
.hero-aurora-one { width: 340px; height: 340px; top: 8%; right: 5%; opacity: .16; background: var(--gold); }
.hero-aurora-two { width: 440px; height: 440px; bottom: -22%; left: 18%; opacity: .18; background: #1c6f91; animation-delay: -4s; }
.home-v2 .hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: clamp(5rem, 9vw, 8rem);
}
.home-v2 .hero-text { max-width: 720px; }
.home-v2 .hero-badge {
  width: fit-content;
  margin-bottom: 1.5rem;
  padding: .6rem .9rem;
  color: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 100px;
  background: rgba(255, 255, 255, .065);
  backdrop-filter: blur(12px);
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .015em;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(78, 216, 199, .12), 0 0 18px var(--teal);
  animation: pulse-dot 2s ease-in-out infinite;
}
.home-v2 .hero-headline {
  margin-bottom: 1.4rem;
  color: var(--white);
  font-size: clamp(3.3rem, 6.2vw, 6.25rem);
  font-weight: 400;
  line-height: .89;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.home-v2 .hero-headline .highlight {
  color: transparent;
  background: linear-gradient(100deg, var(--gold-light), var(--gold), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 8px 28px rgba(242, 182, 109, .14));
}
.home-v2 .hero-subtext {
  max-width: 650px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.72;
}
.home-v2 .hero-actions { gap: .8rem; margin-bottom: 1.8rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.25rem;
  color: rgba(255, 255, 255, .62);
  font-size: .73rem;
  font-weight: 700;
}
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-trust i { color: var(--teal); font-size: .9rem; }

.hero-visual {
  position: relative;
  min-height: 560px;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .18s ease-out;
}
.hero-art-stage {
  position: absolute;
  inset: -5% -2% -6% 1%;
  z-index: 2;
  display: none;
  place-items: center;
  transform: translateZ(42px);
}
.hero-art-glow {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 182, 109, .28), rgba(78, 216, 199, .11) 38%, transparent 72%);
  filter: blur(24px);
  animation: logo-breathe 4s ease-in-out infinite;
}
.hero-shield-art {
  position: relative;
  z-index: 2;
  width: min(98%, 520px);
  height: auto;
  max-height: 108%;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: 0 45px 100px rgba(0, 0, 0, .18);
  mix-blend-mode: screen;
  transform: translateZ(58px);
  animation: logo-float 5s ease-in-out infinite;
  -webkit-mask-image: radial-gradient(ellipse 72% 78% at 50% 48%, #000 56%, rgba(0,0,0,.88) 69%, transparent 94%);
  mask-image: radial-gradient(ellipse 72% 78% at 50% 48%, #000 56%, rgba(0,0,0,.88) 69%, transparent 94%);
}
.hero-art-label {
  position: absolute;
  z-index: 5;
  bottom: 13%;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .8rem;
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 100px;
  background: rgba(7, 25, 45, .88);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .22);
  backdrop-filter: blur(15px);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateZ(78px);
}
.hero-art-label i { color: var(--gold); }
.hero-orbit { position: absolute; z-index: 1; pointer-events: none; border: 1px solid rgba(255, 255, 255, .12); border-radius: 50%; }
.orbit-one { inset: -2% 0 4% -4%; z-index: 4; border-color: rgba(255, 255, 255, .2); box-shadow: 0 0 30px rgba(78, 216, 199, .08); animation: orbit-spin 18s linear infinite; }
.orbit-two { inset: 8% -8% -7% 7%; border-color: rgba(242, 182, 109, .2); animation: orbit-spin 26s linear reverse infinite; }
.hero-orbit::before { content: ''; position: absolute; top: 9%; left: 19%; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 22px var(--gold); }
.home-v2 .scroll-down { bottom: 1.2rem; width: 48px; height: 48px; border-color: rgba(255, 255, 255, .14); background: rgba(255, 255, 255, .06); backdrop-filter: blur(10px); }

/* Value strip */
.home-v2 .stats-bar {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  border: 0;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 25, 45, .09);
}
.home-v2 .stats-grid { grid-template-columns: repeat(4, 1fr); }
.home-v2 .stat-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 2rem 1.2rem;
  text-align: left;
  border-color: var(--border);
}
.stat-icon { display: grid; place-items: center; flex: 0 0 44px; width: 44px; height: 44px; color: var(--green-mid); border-radius: 14px; background: linear-gradient(135deg, rgba(78, 216, 199, .18), rgba(242, 182, 109, .18)); font-size: 1.22rem; }
.home-v2 .stat-item strong { display: block; margin-bottom: .18rem; color: var(--text); font-size: .8rem; }
.home-v2 .stat-item small { display: block; color: var(--text-muted); font-size: .66rem; line-height: 1.4; }

/* Why us */
.home-v2 .why-us { position: relative; padding-block: clamp(6rem, 10vw, 10rem); background: var(--cream); }
.home-v2 .why-us::before { content: ''; position: absolute; width: 340px; height: 340px; top: 4%; left: -12%; border-radius: 50%; background: radial-gradient(circle, rgba(78, 216, 199, .12), transparent 70%); }
.home-v2 .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; perspective: 1200px; }
.home-v2 .card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 2rem;
  border: 1px solid rgba(16, 32, 51, .09);
  border-radius: 24px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 15px 40px rgba(7, 25, 45, .055), inset 0 1px 0 rgba(255, 255, 255, .8);
  backdrop-filter: blur(14px);
  transform-style: preserve-3d;
  transform: perspective(950px) translateY(var(--lift, 0)) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .18s ease-out, box-shadow var(--transition), border-color var(--transition);
}
.home-v2 .card::after { content: ''; position: absolute; width: 160px; height: 160px; right: -75px; bottom: -90px; border-radius: 50%; background: radial-gradient(circle, rgba(242, 182, 109, .22), transparent 70%); transition: transform .45s ease; }
.home-v2 .card:hover { --lift: -8px; border-color: rgba(242, 182, 109, .35); box-shadow: 0 28px 65px rgba(7, 25, 45, .12); }
.home-v2 .card:hover::after { transform: scale(1.5); }
.home-v2 .card-icon { width: 54px; height: 54px; margin-bottom: 2.3rem; color: var(--green-mid); border: 1px solid rgba(18, 60, 105, .08); border-radius: 16px; background: linear-gradient(135deg, rgba(78, 216, 199, .2), rgba(255, 255, 255, .8)); box-shadow: 0 10px 26px rgba(7, 25, 45, .07); }
.home-v2 .card-number { position: absolute; top: 2.1rem; right: 2rem; color: rgba(16, 32, 51, .16); font-family: var(--font-title); font-size: 1.4rem; }
.home-v2 .card h3 { margin-bottom: .75rem; color: var(--text); font-family: var(--font); font-size: 1rem; font-weight: 800; }
.home-v2 .card p { color: var(--text-mid); font-size: .86rem; line-height: 1.72; }

/* Insurers */
.home-v2 .insurers { padding-block: 4rem; border: 0; background: var(--white); }
.home-v2 .insurers-label { color: var(--text-muted); letter-spacing: .18em; }
.home-v2 .insurers-logos { gap: .7rem; }
.home-v2 .insurer-badge { padding: .72rem 1.3rem; color: var(--text-mid); border-color: rgba(16, 32, 51, .08); background: #fbfaf8; font-size: .74rem; box-shadow: inset 0 1px 0 var(--white); }
.home-v2 .insurer-badge:hover { color: var(--green-mid); border-color: rgba(18, 60, 105, .24); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* Plans */
.home-v2 .plans { position: relative; overflow: hidden; padding-block: clamp(6rem, 10vw, 10rem); background: linear-gradient(180deg, #f4efe7, #f9f7f2); }
.home-v2 .plans::before { content: ''; position: absolute; inset: 0; opacity: .36; pointer-events: none; background-image: radial-gradient(rgba(18, 60, 105, .12) 1px, transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.home-v2 .plans .container { position: relative; }
.home-v2 .plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; align-items: stretch; perspective: 1400px; }
.home-v2 .plan-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: clamp(1.7rem, 3vw, 2.4rem);
  gap: 1rem;
  border: 1px solid rgba(16, 32, 51, .1);
  border-radius: 28px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 20px 55px rgba(7, 25, 45, .07), inset 0 1px 0 var(--white);
  transform-style: preserve-3d;
  transform: perspective(1100px) translateY(var(--lift, 0)) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .18s ease-out, box-shadow var(--transition), border-color var(--transition);
}
.home-v2 .plan-card::after { content: ''; position: absolute; width: 260px; height: 260px; top: -160px; right: -130px; border-radius: 50%; background: radial-gradient(circle, rgba(78, 216, 199, .16), transparent 70%); }
.home-v2 .plan-card:hover { --lift: -7px; border-color: rgba(18, 60, 105, .22); box-shadow: 0 32px 75px rgba(7, 25, 45, .13); }
.home-v2 .plan-card.plan-featured {
  --lift: 0;
  color: var(--white);
  border-color: rgba(242, 182, 109, .48);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 116, 104, .18), transparent 28%),
    radial-gradient(circle at 0 100%, rgba(78, 216, 199, .15), transparent 30%),
    linear-gradient(145deg, #0b2a49, #06182b);
  box-shadow: 0 30px 80px rgba(7, 25, 45, .25), inset 0 1px 0 rgba(255, 255, 255, .12);
}
.home-v2 .plan-card.plan-featured:hover { --lift: -7px; }
.home-v2 .plan-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: .25rem; color: var(--green-mid); border-radius: 17px; background: linear-gradient(135deg, rgba(78, 216, 199, .2), rgba(242, 182, 109, .22)); font-size: 1.45rem; }
.home-v2 .plan-featured .plan-icon { color: var(--gold-light); border: 1px solid rgba(255, 255, 255, .12); background: rgba(255, 255, 255, .08); }
.home-v2 .plan-badge { top: 1.4rem; left: auto; right: 1.4rem; transform: none; display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .8rem; color: var(--green); background: linear-gradient(135deg, var(--gold-light), var(--gold)); font-size: .66rem; }
.home-v2 .plan-category { color: var(--gold-dark); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.home-v2 .plan-featured .plan-category { color: var(--gold-light); }
.home-v2 .plan-name { color: var(--text); font-family: var(--font-title); font-size: clamp(2.25rem, 4vw, 3.6rem); font-weight: 400; line-height: .98; letter-spacing: -.03em; }
.home-v2 .plan-name-gold { color: var(--white); }
.home-v2 .plan-copy { max-width: 570px; color: var(--text-mid); font-size: .88rem; line-height: 1.68; }
.home-v2 .plan-featured .plan-copy { color: rgba(255, 255, 255, .65); }
.home-v2 .plan-features { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; margin-block: .4rem .8rem; }
.home-v2 .plan-features li { gap: .5rem; padding: .65rem .7rem; color: var(--text-mid); border: 1px solid rgba(16, 32, 51, .07); border-radius: 11px; background: rgba(247, 243, 236, .62); font-size: .76rem; line-height: 1.45; }
.home-v2 .plan-features li i { color: var(--teal); }
.home-v2 .plan-featured .plan-features li { color: rgba(255, 255, 255, .72); border-color: rgba(255, 255, 255, .09); background: rgba(255, 255, 255, .055); }
.home-v2 .plan-cta { margin-top: auto; }
.plans-disclaimer { max-width: 920px; margin: 2rem auto 0; color: var(--text-muted); font-size: .68rem; line-height: 1.65; text-align: center; }

/* Dreams / strategy */
.home-v2 .dreams { overflow: hidden; padding-block: clamp(6rem, 10vw, 10rem); background: var(--white); }
.home-v2 .dreams-inner { grid-template-columns: .9fr 1.1fr; gap: clamp(4rem, 8vw, 8rem); }
.home-v2 .dreams-image { position: relative; min-height: 650px; transform-style: preserve-3d; transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); transition: transform .18s ease-out; }
.dreams-image-halo { position: absolute; inset: 8% -10% -6% 8%; border-radius: 50%; filter: blur(15px); background: radial-gradient(circle at center, rgba(78, 216, 199, .2), rgba(242, 182, 109, .12) 45%, transparent 68%); }
.home-v2 .dreams-photo { position: absolute; inset: 0 5% 4% 0; width: 95%; max-width: none; height: 96%; margin: 0; border: 1px solid rgba(18, 60, 105, .12); border-radius: 34px; box-shadow: var(--shadow-lg); transform: translateZ(36px); }
.dreams-quote { position: absolute; right: -4%; bottom: 7%; z-index: 3; display: flex; align-items: flex-start; gap: .8rem; max-width: 260px; padding: 1.2rem; color: var(--white); border: 1px solid rgba(255, 255, 255, .13); border-radius: 18px; background: rgba(7, 25, 45, .9); box-shadow: 0 24px 55px rgba(7, 25, 45, .25); backdrop-filter: blur(16px); transform: translateZ(75px); }
.dreams-quote i { color: var(--gold); font-size: 1.4rem; }
.dreams-quote span { font-family: var(--font-title); font-size: 1rem; line-height: 1.3; }
.home-v2 .dreams-content .section-title { margin-inline: 0; max-width: 620px; }
.home-v2 .dreams-text { max-width: 640px; margin-bottom: 2rem; color: var(--text-mid); font-size: 1.02rem; line-height: 1.78; }
.home-v2 .dreams-list { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-bottom: 2rem; }
.home-v2 .dreams-list li { padding: 1rem; border: 1px solid rgba(16, 32, 51, .08); border-radius: 16px; background: #fbfaf8; }
.home-v2 .dreams-icon { width: 42px; height: 42px; color: var(--green-mid); border-radius: 13px; background: linear-gradient(135deg, rgba(78, 216, 199, .18), rgba(242, 182, 109, .18)); }
.home-v2 .dreams-list li div strong { color: var(--text); font-size: .8rem; line-height: 1.35; }
.home-v2 .dreams-list li div p { color: var(--text-muted); font-size: .72rem; line-height: 1.55; }

/* Career */
.home-v2 .work { position: relative; overflow: hidden; padding-block: clamp(6rem, 10vw, 9rem); background: linear-gradient(145deg, #07192d, #0b3151); }
.home-v2 .work::before { content: ''; position: absolute; inset: 0; opacity: .2; background: radial-gradient(circle at 10% 80%, var(--teal), transparent 28%), radial-gradient(circle at 88% 10%, var(--coral), transparent 26%); }
.home-v2 .work .container { position: relative; }
.home-v2 .work .section-title { max-width: 850px; color: var(--white); }
.home-v2 .work .section-subtitle { color: rgba(255, 255, 255, .62); }
.home-v2 .steps-grid { gap: 1rem; }
.home-v2 .step-card { position: relative; overflow: hidden; min-height: 250px; padding: 2rem; text-align: left; border-color: rgba(255, 255, 255, .1); border-radius: 22px; background: rgba(255, 255, 255, .055); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08); backdrop-filter: blur(16px); }
.home-v2 .step-card:hover { border-color: rgba(242, 182, 109, .26); background: rgba(255, 255, 255, .09); transform: translateY(-7px); }
.home-v2 .step-number { position: absolute; top: 1.5rem; right: 1.5rem; color: rgba(255, 255, 255, .15); font-family: var(--font-title); font-size: 2.5rem; letter-spacing: 0; }
.home-v2 .step-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 2.2rem; color: var(--green); border-radius: 15px; background: linear-gradient(135deg, var(--gold-light), var(--gold)); font-size: 1.35rem; }
.home-v2 .step-card h3 { font-family: var(--font); font-size: 1rem; font-weight: 800; }
.home-v2 .step-card p { color: rgba(255, 255, 255, .58); }
.home-v2 .perk { color: var(--gold-light); border-color: rgba(242, 182, 109, .2); background: rgba(242, 182, 109, .08); }
.home-v2 .work-cta .btn { width: auto; }

/* Contact */
.home-v2 .contact { position: relative; overflow: hidden; padding-block: clamp(6rem, 10vw, 10rem); background: linear-gradient(180deg, #f7f3ec, #eee6db); }
.home-v2 .contact::before { content: ''; position: absolute; width: 580px; height: 580px; left: -300px; top: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(78, 216, 199, .16), transparent 68%); }
.home-v2 .contact-inner { position: relative; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.home-v2 .contact-info .section-title { margin-inline: 0; max-width: 560px; }
.home-v2 .contact-text { max-width: 570px; color: var(--text-mid); font-size: 1rem; line-height: 1.78; }
.contact-promises { display: flex; flex-wrap: wrap; gap: .6rem; margin: -1rem 0 2rem; }
.contact-promises span { display: inline-flex; align-items: center; gap: .35rem; padding: .45rem .7rem; color: var(--green-mid); border: 1px solid rgba(18, 60, 105, .1); border-radius: 100px; background: rgba(255, 255, 255, .54); font-size: .68rem; font-weight: 700; }
.contact-promises i { color: #2aa897; }
.home-v2 .contact-details { gap: .8rem; }
.home-v2 .contact-detail { padding: .8rem; border: 1px solid transparent; border-radius: 14px; }
.home-v2 .contact-detail-link { margin: 0; }
.home-v2 .contact-detail-link:hover { border-color: rgba(18, 60, 105, .1); background: rgba(255, 255, 255, .55); transform: translateX(5px); }
.home-v2 .contact-detail i { display: grid; place-items: center; width: 42px; height: 42px; margin: 0; color: var(--green-mid); border-radius: 13px; background: rgba(255, 255, 255, .78); box-shadow: var(--shadow-sm); }
.home-v2 .contact-form-wrap { position: relative; padding: clamp(1.6rem, 4vw, 3rem); border: 1px solid rgba(255, 255, 255, .8); border-radius: 30px; background: rgba(255, 255, 255, .82); box-shadow: 0 35px 90px rgba(7, 25, 45, .13), inset 0 1px 0 var(--white); backdrop-filter: blur(18px); }
.home-v2 .contact-form-wrap::before { content: ''; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(135deg, rgba(78, 216, 199, .45), transparent 35%, rgba(242, 182, 109, .45)); }
.form-heading { margin-bottom: 1.8rem; }
.form-heading span { display: inline-block; margin-bottom: .65rem; color: var(--gold-dark); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.form-heading h3 { margin-bottom: .5rem; color: var(--text); font-size: clamp(1.65rem, 3vw, 2.35rem); font-weight: 400; line-height: 1.05; }
.form-heading p { color: var(--text-muted); font-size: .78rem; line-height: 1.6; }
.home-v2 .contact-form { gap: .9rem; }
.home-v2 .form-group label { color: var(--text); font-size: .72rem; font-weight: 800; }
.home-v2 .form-group input,
.home-v2 .form-group select,
.home-v2 .form-group textarea { min-height: 48px; padding: .78rem .95rem; color: var(--text); border: 1px solid rgba(16, 32, 51, .1); border-radius: 12px; background-color: rgba(247, 243, 236, .7); font-size: .82rem; }
.home-v2 .form-group textarea { min-height: 100px; }
.home-v2 .form-group input:focus,
.home-v2 .form-group select:focus,
.home-v2 .form-group textarea:focus { border-color: rgba(18, 60, 105, .45); background-color: var(--white); box-shadow: 0 0 0 4px rgba(18, 60, 105, .08); }
.home-v2 .form-check label { color: var(--text-muted); font-size: .68rem; }
.home-v2 .form-check label a { color: var(--green-mid); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.home-v2 .form-check input[type='checkbox'] { accent-color: var(--green-mid); }
.form-microcopy { display: flex; align-items: center; justify-content: center; gap: .35rem; color: var(--text-muted); font-size: .64rem; }
.form-microcopy i { color: #2aa897; }
.form-error { display: none; align-items: flex-start; gap: .55rem; padding: .8rem; color: #9f352f; border: 1px solid rgba(255, 116, 104, .25); border-radius: 11px; background: rgba(255, 116, 104, .08); font-size: .72rem; line-height: 1.5; }
.form-error.show { display: flex; }
.home-v2 .form-success { border-color: rgba(78, 216, 199, .3); background: rgba(78, 216, 199, .1); }

/* Footer and floating controls */
.home-v2 .footer { background: #061426; }
.home-v2 .footer-inner { grid-template-columns: 1.35fr .9fr .9fr .7fr; border-color: rgba(255, 255, 255, .07); }
.home-v2 .footer-tagline { color: rgba(255, 255, 255, .46); }
.home-v2 .footer-links h4 { color: var(--gold); }
.home-v2 .footer-links ul li a,
.home-v2 .footer-links ul li span { color: rgba(255, 255, 255, .46); font-size: .78rem; }
.home-v2 .footer-bottom { padding-bottom: 2rem; }
.footer-disclaimer { margin-top: 1rem; color: rgba(255, 255, 255, .3); font-size: .62rem; line-height: 1.55; text-align: center; }
.home-v2 .float-wsp { width: 58px; height: 58px; border: 3px solid rgba(255, 255, 255, .76); box-shadow: 0 16px 36px rgba(37, 211, 102, .36); }
.home-v2 .float-wsp::before { content: attr(data-label); position: absolute; right: 68px; width: max-content; padding: .55rem .75rem; color: var(--white); border-radius: 10px; background: var(--green); box-shadow: var(--shadow); font-size: .68rem; font-weight: 700; opacity: 0; transform: translateX(8px); pointer-events: none; transition: var(--transition); }
.home-v2 .float-wsp:hover::before { opacity: 1; transform: translateX(0); }
.home-v2 .back-to-top { color: var(--white); border-color: rgba(255, 255, 255, .12); background: rgba(7, 25, 45, .88); backdrop-filter: blur(12px); }

/* Motion */
.js-reveal { opacity: 0; transform: translateY(34px) scale(.985); transition: opacity .75s cubic-bezier(.2, .8, .2, 1), transform .75s cubic-bezier(.2, .8, .2, 1); transition-delay: var(--reveal-delay, 0ms); }
.js-reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

@keyframes aurora-drift { to { transform: translate3d(35px, 18px, 0) scale(1.16); } }
@keyframes pulse-dot { 50% { opacity: .55; transform: scale(.75); } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes logo-float { 50% { transform: translate3d(0, -10px, 60px) scale(1.015); } }
@keyframes logo-breathe { 50% { opacity: .62; transform: scale(1.18); } }

/* Responsive */
@media (max-width: 1120px) {
  .home-v2 .nav-links { gap: .7rem; }
  .home-v2 .nav-links a { font-size: .74rem; }
  .home-v2 .hero-content { grid-template-columns: 1fr .82fr; gap: 3rem; }
  .hero-visual { min-height: 500px; }
  .home-v2 .stats-grid { grid-template-columns: 1fr 1fr; }
  .home-v2 .stat-item:nth-child(2) { border-right: 0; }
  .home-v2 .stat-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .home-v2 .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; }
  .home-v2 .footer-links:last-child { grid-column: 2; }
}

@media (max-width: 900px) {
  .cursor-glow { display: none; }
  .home-v2 .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 75% 70%, rgba(18, 74, 116, .42), transparent 34%),
      linear-gradient(145deg, #020e1e, #031b33);
  }
  .home-v2 .hero-content { grid-template-columns: 1fr; padding-block: 5rem 7rem; }
  .home-v2 .hero-text { max-width: 760px; }
  .home-v2 .hero-headline { font-size: clamp(3.3rem, 10vw, 5.5rem); }
  .hero-visual { width: min(100%, 540px); min-height: 600px; margin-inline: auto; }
  .hero-art-stage { display: grid; }
  .home-v2 .cards-grid { grid-template-columns: 1fr 1fr; }
  .home-v2 .plans-grid { grid-template-columns: 1fr; }
  .home-v2 .dreams-inner { grid-template-columns: 1fr; }
  .home-v2 .dreams-image { width: min(100%, 560px); min-height: 640px; margin-inline: auto; }
  .home-v2 .contact-inner { grid-template-columns: 1fr; }
  .home-v2 .contact-info { max-width: 680px; }
}

@media (max-width: 768px) {
  .home-v2 { --nav-h: 70px; }
  .home-v2 .navbar,
  .home-v2 .navbar.scrolled { height: var(--nav-h); }
  .home-v2 .nav-logo-img { height: 48px; }
  .home-v2 .nav-links { inset: var(--nav-h) 0 0; gap: .35rem; padding-top: 2.5rem; background: rgba(6, 20, 38, .97); backdrop-filter: blur(18px); }
  .home-v2 .nav-links a { padding-block: 1rem; font-size: 1rem; }
  .home-v2 .nav-links a:not(.nav-cta)::after { display: none; }
  .home-v2 .nav-links a.nav-cta { justify-content: center; margin-top: 1rem; }
  .home-v2 .hero-content { padding-block: 4rem 6rem; }
  .home-v2 .hero-headline { font-size: clamp(3rem, 14vw, 4.8rem); }
  .home-v2 .hero-subtext { font-size: .98rem; }
  .home-v2 .hero-actions { flex-direction: column; }
  .home-v2 .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 520px; }
  .hero-art-stage { inset: 0; }
  .hero-shield-art { width: min(100%, 500px); }
  .home-v2 .stats-grid { grid-template-columns: 1fr; }
  .home-v2 .stat-item { border-right: 0; border-top: 1px solid var(--border); }
  .home-v2 .stat-item:first-child { border-top: 0; }
  .home-v2 .cards-grid { grid-template-columns: 1fr; }
  .home-v2 .card { min-height: auto; }
  .home-v2 .plans-grid { max-width: none; }
  .home-v2 .plan-features { grid-template-columns: 1fr; }
  .home-v2 .dreams-image { min-height: 540px; }
  .home-v2 .dreams-list { grid-template-columns: 1fr; }
  .dreams-quote { right: 0; }
  .home-v2 .footer-inner { grid-template-columns: 1fr 1fr; }
  .home-v2 .footer-links:last-child { grid-column: auto; }
  [data-tilt] { --tilt-x: 0deg !important; --tilt-y: 0deg !important; }
}

@media (max-width: 520px) {
  .home-v2 .container { padding-inline: 1.15rem; }
  .home-v2 .hero-headline { font-size: clamp(2.75rem, 14vw, 4rem); }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-visual { min-height: 455px; }
  .hero-photo-caption span { font-size: 1.1rem; }
  .hero-shield-art { width: 104%; }
  .hero-art-label { bottom: 10%; font-size: .54rem; }
  .home-v2 .section-title { font-size: clamp(2.2rem, 12vw, 3.4rem); }
  .home-v2 .plan-card { padding: 1.4rem; }
  .home-v2 .plan-badge { position: static; width: fit-content; order: -1; }
  .home-v2 .dreams-image { min-height: 460px; }
  .dreams-quote { max-width: 225px; padding: 1rem; }
  .home-v2 .contact-form-wrap { padding: 1.3rem; border-radius: 24px; }
  .home-v2 .footer-inner { grid-template-columns: 1fr; }
  .home-v2 .float-wsp::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .home-v2 *, .home-v2 *::before, .home-v2 *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js-reveal { opacity: 1; transform: none; }
}

.home-v2 :focus-visible { outline: 3px solid var(--teal); outline-offset: 4px; }
