/* ============================================================
   Rowshan Global Pathways — Stylesheet
   Design tokens live in :root as CSS variables for easy tuning.
   ============================================================ */

:root {
  /* Brand colors */
  --navy: #07111f;
  --navy-2: #0d1b2d;
  --gold: #f4b73f;
  --gold-light: #ffcf69;
  --white: #ffffff;
  --bg-light: #f7f9fc;
  --text-grey: #667085;
  --text-dark: #10182b;

  --border-soft: #e6e9f0;
  --shadow-soft: 0 10px 30px -12px rgba(7, 17, 31, 0.14);
  --shadow-lift: 0 20px 45px -18px rgba(7, 17, 31, 0.28);

  /* Type */
  --font-head: "Manrope", "Segoe UI", sans-serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;

  /* Layout */
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--text-grey); }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

@media (max-width: 768px) {
  section { padding: 64px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(244, 183, 63, 0.1);
  border: 1px solid rgba(244, 183, 63, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p { font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 14px 30px -12px rgba(244, 183, 63, 0.55);
}
.btn-primary:hover { box-shadow: 0 18px 38px -12px rgba(244, 183, 63, 0.7); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: rgba(7, 17, 31, 0.18);
  color: var(--navy);
}
.btn-outline:hover { border-color: var(--navy); background: rgba(7,17,31,0.03); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

.btn-whatsapp {
  background: #ffffff12;
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
}
.btn-whatsapp:hover { background: #ffffff22; }

.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px;
  letter-spacing: 0.01em;
}
.announce strong { color: var(--gold-light); }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: 44px; border-radius: 10px; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text .brand-short { font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: 0.14em; color: var(--gold); }
.brand-text .brand-full { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--navy); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: var(--white);
  cursor: pointer;
}
.hamburger span { width: 20px; height: 2px; background: var(--navy); margin: 0 auto; transition: transform .25s ease, opacity .25s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 480;
  padding: 28px 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--navy);
}
.mobile-nav .btn { margin-top: 24px; }

@media (max-width: 980px) {
  .main-nav, .header-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
}
@media (min-width: 981px) {
  .mobile-nav { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(circle at 15% 0%, #16283f 0%, var(--navy) 55%), var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 88px 0 80px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(244,183,63,0.16), transparent 45%),
    radial-gradient(circle at 100% 90%, rgba(244,183,63,0.08), transparent 40%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,183,63,0.12);
  border: 1px solid rgba(244,183,63,0.35);
  color: var(--gold-light);
  font-family: var(--font-head); font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(36px, 5.4vw, 60px);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--gold-light); }
.hero p.lead {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px 30px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); }
.trust-item svg { width: 20px; height: 20px; color: var(--gold-light); flex: none; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(160deg, rgba(244,183,63,0.22), rgba(13,27,45,0.2)),
    conic-gradient(from 210deg at 30% 30%, #0d1b2d, #16283f, #1c3552, #0d1b2d);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-lift);
}
.hero-visual .globe-ring {
  position: absolute; inset: 10%;
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: 50%;
}
.hero-visual .globe-ring.small { inset: 24%; border-color: rgba(244,183,63,0.35); }
.hero-visual .pin {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: rgba(7,17,31,0.75);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12.5px; font-weight: 700; color: var(--white);
  font-family: var(--font-head);
}
.hero-visual .pin .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); flex: none; }
.hero-visual .pin.p1 { top: 14%; left: 8%; }
.hero-visual .pin.p2 { top: 34%; right: 6%; }
.hero-visual .pin.p3 { bottom: 30%; left: 12%; }
.hero-visual .pin.p4 { bottom: 12%; right: 14%; }
.hero-visual .core {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 6px;
  text-align: center;
}
.hero-visual .core .num { font-family: var(--font-head); font-weight: 800; font-size: 42px; color: var(--white); }
.hero-visual .core .lbl { font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 0.06em; text-transform: uppercase; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
}

/* ---------- Stats ---------- */
.stats-section { background: var(--navy-2); color: var(--white); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 4vw, 44px); color: var(--gold-light); }
.stat .lbl { font-size: 14px; color: rgba(255,255,255,0.72); margin-top: 6px; }
.stats-disclaimer { text-align: center; font-size: 12.5px; color: rgba(255,255,255,0.5); margin: 30px 0 0; }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; }
.about-list { list-style: none; margin: 26px 0 30px; padding: 0; display: grid; gap: 14px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--text-dark); font-size: 15px; }
.about-list li svg { flex: none; width: 20px; height: 20px; color: var(--gold); margin-top: 2px; }
.about-note {
  background: var(--bg-light);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  font-size: 14.5px;
}
.about-side {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about-side::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(244,183,63,0.18), transparent 50%);
}
.about-side h3 { color: var(--white); position: relative; }
.about-side p { color: rgba(255,255,255,0.72); position: relative; }
.about-side .factors { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; position: relative; }
.about-side .factor {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13.5px; font-weight: 600;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: transparent; }
.service-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.service-num { font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--gold); }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(160deg, #fff4de, #ffe6ae);
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 26px; height: 26px; color: var(--navy); }
.service-card h3 { font-size: 19px; }
.service-card p { font-size: 14.5px; margin: 0; }

@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Destinations ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--white);
  isolation: isolate;
  border: 1px solid rgba(7,17,31,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.dest-card::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--bg, linear-gradient(160deg, #16283f, #0d1b2d));
}
.dest-card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,17,31,0.05), rgba(7,17,31,0.85));
}
.dest-card .flag { font-size: 30px; margin-bottom: 8px; }
.dest-card h3 { color: var(--white); margin-bottom: 4px; font-size: 21px; }
.dest-card p { color: rgba(255,255,255,0.82); font-size: 13.5px; margin: 0; }
.dest-usa { --bg: linear-gradient(160deg, #1c3552, #0d1b2d); }
.dest-canada { --bg: linear-gradient(160deg, #24314a, #0d1b2d); }
.dest-korea { --bg: linear-gradient(160deg, #2c2140, #0d1b2d); }
.dest-malaysia { --bg: linear-gradient(160deg, #1f3d38, #0d1b2d); }
.dest-europe { --bg: linear-gradient(160deg, #33283f, #0d1b2d); }
.dest-more { --bg: linear-gradient(160deg, #3a2c17, #0d1b2d); }
.dest-note { text-align: center; font-size: 13.5px; color: var(--text-grey); margin-top: 28px; }

@media (max-width: 980px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .dest-grid { grid-template-columns: 1fr; } }

/* ---------- How it works ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.timeline::before {
  content: "";
  position: absolute; top: 34px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--border-soft) 0 10px, transparent 10px 18px);
}
.step { position: relative; text-align: left; }
.step-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--navy);
  margin-bottom: 18px; position: relative; z-index: 2;
  box-shadow: 0 8px 20px -8px rgba(244,183,63,0.5);
}
.step h3 { font-size: 18px; }
.step p { font-size: 14px; }

@media (max-width: 900px) {
  .timeline { grid-template-columns: 1fr; gap: 8px; }
  .timeline::before { top: 0; bottom: 0; left: 33px; right: auto; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--border-soft) 0 10px, transparent 10px 18px); }
  .step { display: grid; grid-template-columns: 68px 1fr; gap: 20px; align-items: start; padding-bottom: 34px; }
  .step-num { margin-bottom: 0; }
}

/* ---------- Why choose ---------- */
.why-section { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.why-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(244,183,63,0.12), transparent 45%);
}
.why-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-section h2 { color: var(--white); font-size: clamp(28px, 4vw, 40px); }
.why-section > .container > p { display:none; }
.why-copy p { color: rgba(255,255,255,0.72); font-size: 16px; }
.why-benefits { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 16px; }
.why-benefits li {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 16px 18px;
  font-weight: 700; font-size: 14.5px;
}
.why-benefits li svg { width: 20px; height: 20px; color: var(--gold-light); flex: none; }
.quote-card {
  background: linear-gradient(160deg, rgba(244,183,63,0.14), rgba(255,255,255,0.03));
  border: 1px solid rgba(244,183,63,0.3);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
}
.quote-card .mark { font-family: var(--font-head); font-size: 64px; color: var(--gold); line-height: 1; margin-bottom: 10px; display:block; }
.quote-card blockquote { margin: 0; font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--white); line-height: 1.4; }

@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Team ---------- */
.team-lead-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 30px; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: left;
  transition: box-shadow .28s ease, transform .28s ease;
}
.team-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.team-photo-wrap { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.team-photo-wrap img { width: 78px; height: 78px; border-radius: 16px; object-fit: cover; border: 1px solid var(--border-soft); }
.team-name { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--navy); }
.team-role { font-size: 13px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.04em; }
.team-quote { font-size: 14.5px; font-style: italic; color: var(--text-dark); border-left: 3px solid var(--gold); padding-left: 14px; margin: 0; }

.ambassadors-block {
  margin-top: 44px;
  background: var(--bg-light);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 34px;
  align-items: center;
}
.ambassadors-block img { border-radius: var(--radius-md); border: 1px solid var(--border-soft); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.ambassadors-block h3 { font-size: 20px; }

@media (max-width: 980px) { .team-lead-grid { grid-template-columns: 1fr; } }
@media (max-width: 800px) { .ambassadors-block { grid-template-columns: 1fr; } }

/* ---------- Founder ---------- */
.founder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.founder-photo-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-lift);
}
.founder-photo-card img { border-radius: 14px; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.founder-stat {
  margin-top: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--white);
  display: flex; align-items: center; justify-content: space-between;
}
.founder-stat .num { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--gold-light); }
.founder-stat .lbl { font-size: 12.5px; color: rgba(255,255,255,0.75); }

.founder-copy .role { color: var(--gold); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; display:block; }
.founder-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 26px; }
.founder-tags span {
  background: var(--bg-light);
  border: 1px solid var(--border-soft);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; color: var(--navy);
}

@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; } .founder-photo-card { max-width: 340px; margin: 0 auto; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; text-align: left; cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--navy);
}
.faq-q .plus { flex: none; width: 24px; height: 24px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--navy); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-q .plus::before { width: 14px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 14px; transition: transform .25s ease; }
.faq-item.open .plus::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p { padding: 0 24px 22px; font-size: 14.5px; margin: 0; }
.faq-item.open .faq-a { max-height: 260px; }

/* ---------- Assessment Form ---------- */
.assess-section { background: var(--bg-light); }
.assess-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: flex-start; }
.assess-side h2 { font-size: clamp(26px, 3.6vw, 36px); }
.assess-points { list-style: none; margin: 24px 0; padding: 0; display: grid; gap: 14px; }
.assess-points li { display: flex; gap: 12px; font-weight: 600; font-size: 14.5px; }
.assess-points li svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 13.5px; margin-bottom: 8px; color: var(--navy); }
.field .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--bg-light);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-disclaimer { font-size: 12.5px; color: var(--text-grey); margin-top: 16px; }
.hp-field { position: absolute; left: -9999px; }

@media (max-width: 980px) { .assess-wrap { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } .form-card { padding: 26px 20px; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-card h3 { color: var(--white); }
.contact-line { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-line svg { width: 20px; height: 20px; color: var(--gold-light); flex: none; margin-top: 2px; }
.contact-line span { color: rgba(255,255,255,0.82); font-size: 14.5px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.social-row { display: flex; gap: 12px; margin-top: 26px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.social-btn:hover { background: rgba(244,183,63,0.2); transform: translateY(-3px); }
.social-btn svg { width: 20px; height: 20px; color: var(--white); }

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  min-height: 340px;
}
.map-card iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy-2); color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand-text .brand-full { color: var(--white); }
.footer-grid h4 { color: var(--white); font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-grid a { font-size: 14.5px; color: rgba(255,255,255,0.7); }
.footer-grid a:hover { color: var(--gold-light); }
.footer-desc { font-size: 14.5px; max-width: 300px; margin-top: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; padding: 26px 0; font-size: 13px;
}
.footer-bottom .legal-links { display: flex; gap: 18px; }
.footer-disclaimer { text-align: center; font-size: 12.5px; padding-bottom: 24px; color: rgba(255,255,255,0.45); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  z-index: 600;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: var(--white); }
.wa-float::before {
  content: "";
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 560px) {
  .wa-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Simple pages (success / privacy / terms) ---------- */
.simple-page { padding: 90px 0; min-height: 60vh; }
.simple-page .icon-circle {
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
  box-shadow: 0 16px 34px -12px rgba(244,183,63,0.55);
}
.simple-page .icon-circle svg { width: 42px; height: 42px; color: var(--navy); }
.simple-page-content { max-width: 640px; margin: 0 auto; text-align: center; }
.simple-page-content h1 { font-size: clamp(30px, 4vw, 42px); }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 20px; margin-top: 34px; }
.legal-content p, .legal-content li { font-size: 15px; }
