/* ==========================================================================
   Rowshan Global Pathways — Design System
   ========================================================================== */

:root {
  /* Brand colours */
  --navy-deep: #07111F;
  --navy-secondary: #0D1B2D;
  --gold: #F4B73F;
  --gold-light: #FFCF69;
  --white: #FFFFFF;
  --bg-light: #F7F9FC;
  --text-grey: #667085;

  --text-dark: #0D1421;
  --border-light: #E6EAF2;

  /* Typography */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(7, 17, 31, 0.06);
  --shadow-md: 0 8px 30px rgba(7, 17, 31, 0.08);
  --shadow-lg: 0 20px 60px rgba(7, 17, 31, 0.14);

  --transition: 0.25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy-deep);
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-weight: 700;
}
p { margin: 0 0 1em; color: var(--text-grey); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 12px 20px;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

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

.section { padding: 96px 0; }
.section-alt { background: var(--bg-light); }

.section-heading { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-heading.light h2,
.section-heading.light .section-lead { color: var(--white); }
.section-heading.light .section-lead { color: rgba(255,255,255,0.72); }

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}

h2 { font-size: clamp(28px, 3.6vw, 42px); }
.section-lead { font-size: 18px; color: var(--text-grey); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-outline-dark {
  border-color: var(--navy-deep);
  color: var(--navy-deep);
}
.btn-outline-dark:hover { background: var(--navy-deep); color: var(--white); }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--navy-deep);
  color: var(--gold-light);
  text-align: center;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
}
.announcement-bar a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.logo img { height: 46px; width: auto; }

.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-secondary);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--navy-deep); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  padding: 24px;
  border-top: 1px solid var(--border-light);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 12px 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy-secondary);
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav .btn-outline-light { border-color: var(--navy-deep); color: var(--navy-deep); }
.mobile-nav.is-open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
  padding: 100px 0 120px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-graphic { width: 100%; height: 100%; object-fit: cover; }
.hero-inner { position: relative; z-index: 1; }
.hero-content { max-width: 640px; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 64px);
  letter-spacing: -0.01em;
}
.accent-text { color: var(--gold); }
.hero-lead {
  color: rgba(255,255,255,0.75);
  font-size: 19px;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.trust-indicators { display: flex; flex-wrap: wrap; gap: 24px 32px; }
.trust-indicators li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 14.5px;
}
.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(244,183,63,0.18);
  color: var(--gold);
  font-size: 12px;
}

/* ---------- Stats ---------- */
.stats-strip { background: var(--navy-secondary); padding: 56px 0 32px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 8px; }
.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--gold);
}
.stat-label { color: rgba(255,255,255,0.72); font-size: 14.5px; font-weight: 500; }
.stats-disclaimer {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 12.5px;
  margin-top: 32px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.about-list { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.about-list li {
  padding-left: 26px;
  position: relative;
  color: var(--text-dark);
  font-size: 15.5px;
}
.about-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.section-note {
  background: var(--bg-light);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14.5px;
}
.link-cta {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy-deep);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  transition: color var(--transition);
}
.link-cta:hover { color: var(--gold); }

.about-visual { position: relative; height: 420px; }
.about-card {
  position: absolute;
  width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 26px;
}
.about-card p { color: var(--text-dark); font-weight: 600; font-size: 14.5px; margin: 0; }
.about-card-icon { font-size: 30px; display: block; margin-bottom: 12px; }
.card-1 { top: 0; left: 10%; background: var(--navy-deep); }
.card-1 p { color: var(--white); }
.card-2 { bottom: 0; right: 0; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.service-icon { font-size: 32px; display: block; margin-bottom: 16px; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; margin: 0; }

/* ---------- Destinations ---------- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.destination-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition);
}
.destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.destination-card::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
}
.dest-usa::before { background: linear-gradient(150deg, #0b1f3a, #1b3a63 60%, #274a78); }
.dest-canada::before { background: linear-gradient(150deg, #14213d, #2a3f66 60%, #3a5686); }
.dest-korea::before { background: linear-gradient(150deg, #1a1030, #362259 60%, #4a2f78); }
.dest-malaysia::before { background: linear-gradient(150deg, #0e2a24, #16473b 60%, #1f6350); }
.dest-europe::before { background: linear-gradient(150deg, #241a08, #4a341a 60%, #6b4d28); }
.dest-more::before { background: linear-gradient(150deg, var(--navy-deep), var(--navy-secondary) 60%, #1f3350); }
.destination-card::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(244,183,63,0.16) 0, transparent 45%);
  z-index: -1;
}
.destination-overlay { padding: 28px; color: var(--white); }
.destination-flag { font-size: 30px; display: block; margin-bottom: 10px; }
.destination-overlay h3 { color: var(--white); margin-bottom: 4px; font-size: 21px; }
.destination-overlay p { color: rgba(255,255,255,0.75); margin: 0; font-size: 14px; }

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 26px; left: 6%; right: 6%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--border-light));
}
.timeline-step { position: relative; text-align: left; }
.timeline-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.timeline-step h3 { font-size: 19px; margin-bottom: 8px; }
.timeline-step p { font-size: 14.5px; }

/* ---------- Why RGP ---------- */
.why-section { background: var(--navy-deep); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.benefit-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.benefit-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(244,183,63,0.35); transform: translateY(-4px); }
.benefit-icon { font-size: 28px; display: block; margin-bottom: 16px; }
.benefit-item h3 { color: var(--white); font-size: 16px; margin: 0; }

.pull-quote {
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--gold-light);
  line-height: 1.5;
  padding: 0;
  border: none;
}

/* ---------- Founder ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.founder-visual { position: relative; display: flex; justify-content: center; }
.founder-portrait {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1.1;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-secondary), var(--navy-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.founder-portrait::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(244,183,63,0.25), transparent 55%);
}
.founder-portrait span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 64px;
  color: var(--gold);
  letter-spacing: 0.05em;
  position: relative;
}
.founder-badge {
  position: absolute;
  bottom: -18px;
  background: var(--white);
  color: var(--navy-deep);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.founder-title { font-family: var(--font-heading); font-weight: 700; color: var(--navy-secondary); margin-bottom: 18px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-deep);
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--gold);
  font-size: 18px;
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy-deep); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
  padding: 0 24px;
}
.faq-answer p { margin: 0 0 20px; font-size: 15px; }
.faq-item.is-open .faq-answer { max-height: 320px; }

/* ---------- Assessment form ---------- */
.assessment-section { background: var(--bg-light); }
.assessment-form {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.hp-field { position: absolute; left: -9999px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}
.form-field-full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy-secondary);
  margin-bottom: 8px;
}
.required { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(244,183,63,0.15);
}
.form-disclaimer { font-size: 12.5px; color: var(--text-grey); margin: 16px 0 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.contact-info address { font-style: normal; color: var(--text-grey); margin-bottom: 12px; line-height: 1.7; }
.contact-buttons { display: flex; gap: 16px; margin: 28px 0; flex-wrap: wrap; }
.social-links { display: flex; gap: 20px; flex-wrap: wrap; }
.social-links a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-secondary);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

.contact-map { height: 100%; }
.map-placeholder {
  height: 100%;
  min-height: 280px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-secondary), var(--navy-deep));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
}
.map-placeholder span { font-size: 40px; }
.map-placeholder p { color: rgba(255,255,255,0.75); margin: 0; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); 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: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 40px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-col li { font-size: 14.5px; color: rgba(255,255,255,0.55); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-legal a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Success page ---------- */
.success-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}
.success-card { max-width: 560px; }
.success-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
  margin: 0 auto 28px;
  color: var(--navy-deep);
}
.legal-page { padding: 140px 24px 100px; max-width: 780px; margin: 0 auto; }
.legal-page h1 { margin-bottom: 24px; }
.legal-page h2 { font-size: 22px; margin-top: 36px; }
.legal-page p, .legal-page li { color: var(--text-grey); }
.legal-page ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .founder-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { height: 320px; margin-top: 40px; }
  .founder-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-actions .btn-primary { display: none; }
  .hamburger { display: flex; }
  .timeline { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .assessment-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .header-inner { height: 70px; }
  .logo img { height: 38px; }
  .hero { padding: 56px 0 72px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-cta { margin-bottom: 32px; }
  .trust-indicators { gap: 14px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .btn-block-mobile { width: 100%; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .announcement-bar p { font-size: 12.5px; }
  .stat-number { font-size: 30px; }
  .founder-portrait span { font-size: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
