*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy-mid: #132040;
  --navy-light: #1e3260;
  --teal: #0db8a4;
  --teal-light: #3dd6c4;
  --teal-pale: #e0f7f5;
  --gold: #d4a843;
  --gold-light: #f0c96a;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --text-muted: #8a96a8;
  --text-body: #2e3a4e;
  --border: rgba(255,255,255,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5% 0 0;
  height: 72px;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  padding-left: 0;
  margin-left: 0;
}

.logo-icon {
  width: 40px; height: 40px;
  position: relative;
}

.logo-icon svg { width: 100%; height: 100%; }

.logo-text {
  display: flex; flex-direction: column; line-height: 1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 10px; font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--teal-light); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 9px 22px;
  border-radius: 6px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--teal-light) !important; }

.nav-domain {
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}

.hero-bg-wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(13,184,164,0.12);
}

.hero-bg-circle:nth-child(1) {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
}

.hero-bg-circle:nth-child(2) {
  width: 900px; height: 900px;
  top: -350px; right: -250px;
}

.hero-bg-circle:nth-child(3) {
  width: 1200px; height: 1200px;
  top: -500px; right: -400px;
}

.hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,184,164,0.08) 0%, transparent 70%);
  top: -100px; right: 0;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,184,164,0.12);
  border: 1px solid rgba(13,184,164,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px; font-weight: 500;
  color: var(--teal-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--teal);
  display: block;
}

.hero p {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 520px;
}

.hero-actions {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal);
  color: var(--navy);
  font-size: 15px; font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 15px; font-weight: 400;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-light);
}

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 60px;
  max-width: 480px;
}

.stat {
  background: rgba(255,255,255,0.04);
  padding: 20px 24px;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--teal);
  display: block;
}

.stat-label {
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.hero-fish {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.08;
  z-index: 1;
}

/* ── SECTION BASE ── */
section { padding: 96px 5%; }

.section-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 17px; font-weight: 300;
  color: #5a6a7e;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 56px;
}

/* ── PRODUCTS ── */
.products { background: var(--off-white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}

.product-card.featured {
  background: var(--navy);
  border-color: transparent;
}

.product-card.featured .product-title { color: var(--white); }
.product-card.featured .product-desc { color: rgba(255,255,255,0.55); }
.product-card.featured .product-rate-label { color: rgba(255,255,255,0.4); }
.product-card.featured .product-rate { color: var(--teal); }

.product-card-accent {
  position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  border-radius: 0 16px 0 120px;
  background: rgba(13,184,164,0.07);
}

.product-card.featured .product-card-accent {
  background: rgba(13,184,164,0.15);
}

.product-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}

.product-card.featured .product-icon {
  background: rgba(13,184,164,0.18);
}

.product-icon svg { width: 24px; height: 24px; color: var(--teal); }

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.product-desc {
  font-size: 14px; font-weight: 300;
  color: #6a7a8e;
  line-height: 1.65;
  margin-bottom: 28px;
}

.product-rate {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700;
  color: var(--navy);
}

.product-rate-label {
  font-size: 12px; font-weight: 400;
  color: var(--text-muted);
  margin-top: 4px;
}

.product-features {
  list-style: none;
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 10px;
}

.product-features li {
  font-size: 13px;
  color: #6a7a8e;
  display: flex; align-items: center; gap: 10px;
}

.product-card.featured .product-features li { color: rgba(255,255,255,0.5); }

.product-features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--teal-pale);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%230db8a4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ── HOW IT WORKS ── */
.process { background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0.3;
}

.step {
  text-align: center;
  padding: 0 24px 0;
  position: relative;
}

.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--teal-pale);
  border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700;
  color: var(--teal);
  position: relative; z-index: 1;
}

.step-title {
  font-size: 17px; font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px; font-weight: 300;
  color: #6a7a8e;
  line-height: 1.65;
}

/* ── BRANCHES ── */
.branches { background: var(--navy); }

.branches .section-title { color: var(--white); }
.branches .section-sub { color: rgba(255,255,255,0.5); }
.branches .section-label { color: var(--gold); }

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.branch-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 32px;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.branch-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(13,184,164,0.3);
}

.branch-number {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 60px; font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
}

.branch-city-tag {
  display: inline-block;
  background: rgba(13,184,164,0.15);
  color: var(--teal);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 20px;
}

.branch-city {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.branch-province {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.branch-detail {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}

.branch-detail-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.branch-detail-icon svg { width: 15px; height: 15px; }

.branch-detail-text {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.branch-detail-text strong {
  display: block;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  margin-bottom: 2px;
}

.branch-tag {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px; font-weight: 500;
}

.tag-hq {
  background: rgba(212,168,67,0.15);
  color: var(--gold-light);
}

/* ── ELIGIBILITY ── */
.eligibility { background: var(--off-white); }

.elig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.elig-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 18px;
}

.elig-list li {
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 15px; font-weight: 400;
  color: var(--text-body);
  line-height: 1.5;
}

.elig-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 8px;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
}

.elig-icon svg { width: 14px; height: 14px; color: var(--teal); }

.elig-cta-box {
  background: var(--navy);
  border-radius: 20px;
  padding: 48px 40px;
  position: sticky; top: 100px;
}

.elig-cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.elig-cta-box p {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 32px;
}

.elig-cta-box .btn-primary {
  width: 100%; justify-content: center;
}

.elig-cta-phone {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px;
  font-size: 14px; color: rgba(255,255,255,0.4);
}

.elig-cta-phone a {
  color: var(--teal);
  font-weight: 500;
  text-decoration: none;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.05);
}

.testi-stars {
  display: flex; gap: 4px;
  margin-bottom: 20px;
}

.testi-stars svg { width: 16px; height: 16px; fill: var(--gold); }

.testi-quote {
  font-size: 15px; font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex; align-items: center; gap: 12px;
}

.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: var(--teal);
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px; font-weight: 600;
  color: var(--navy);
}

.testi-location {
  font-size: 12px; color: var(--text-muted);
  margin-top: 2px;
}

/* ── FOOTER ── */
footer {
  background: #060e1c;
  padding: 72px 5% 36px;
  color: rgba(255,255,255,0.5);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 36px;
}

.footer-brand p {
  font-size: 14px; font-weight: 300;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 280px;
}

.footer-domain {
  display: inline-block;
  font-size: 12px; font-weight: 500;
  color: var(--teal);
  background: rgba(13,184,164,0.1);
  padding: 4px 12px; border-radius: 4px;
  margin-top: 16px;
  letter-spacing: 0.04em;
}

.footer-col h4 {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--teal); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}

.footer-bottom p { font-size: 12px; }

.footer-reg {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-fish { display: none; }
  .elig-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
}
