/* ============================================================
   ريف للأسر المنتجة | Reef for Productive Families
   Design System: teal (REEF brand) + gold accents, RTL Arabic
   Fonts: Cairo (headings), Tajawal (body), El Messiri (logo)
   ============================================================ */

:root {
  --reef-50: #f1faf9;
  --reef-100: #e3f5f4;
  --reef-200: #c3eae8;
  --reef-300: #93d8d5;
  --reef-400: #58bebb;
  --reef-500: #2ba6a2;
  --reef-600: #0e9f9c;
  --reef-700: #0b8380;
  --reef-800: #096b68;
  --reef-900: #064e4c;
  --reef-950: #043635;
  --gold-300: #ffd97a;
  --gold-400: #f8c14d;
  --gold-500: #f0b429;
  --gold-600: #d99a0f;
  --gold-700: #b87e0a;
  --ink-900: #0b2e2d;
  --ink-700: #24413f;
  --ink-500: #5a7472;
  --ink-400: #7b9290;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --wa-bg: #e8f9ef;

  --font-head: "Cairo", "Tajawal", sans-serif;
  --font-body: "Tajawal", "Cairo", sans-serif;
  --font-logo: "El Messiri", "Cairo", sans-serif;

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 24px 70px -24px rgba(6, 78, 76, 0.28);
  --shadow-md: 0 14px 40px -18px rgba(6, 78, 76, 0.22);
  --shadow-sm: 0 8px 24px -12px rgba(6, 78, 76, 0.16);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-700);
  background: var(--white);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.section { padding: 88px 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.35;
  font-weight: 800;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--reef-100);
  color: var(--reef-800);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}

.eyebrow svg { width: 17px; height: 17px; }

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--ink-500);
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 48px;
}

.center { text-align: center; }

.highlight {
  color: var(--reef-600);
  position: relative;
  isolation: isolate;
}

.highlight::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 4px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 25 1 50 6 T 98 4' stroke='%23f0b429' stroke-width='5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  z-index: -1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16.5px;
  padding: 15px 30px;
  border-radius: 100px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--reef-600), var(--reef-800));
  color: var(--white);
  box-shadow: 0 14px 30px -12px rgba(14, 159, 156, 0.55);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -14px rgba(14, 159, 156, 0.65);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(37, 211, 102, 0.55);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  background: var(--whatsapp-dark);
  box-shadow: 0 20px 40px -14px rgba(37, 211, 102, 0.6);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--ink-900);
  box-shadow: 0 14px 30px -12px rgba(240, 180, 41, 0.55);
}

.btn-gold:hover { transform: translateY(-3px); }

.btn-outline {
  background: var(--white);
  color: var(--reef-800);
  border: 2px solid var(--reef-300);
}

.btn-outline:hover {
  background: var(--reef-50);
  border-color: var(--reef-500);
}

.btn-lg { padding: 18px 38px; font-size: 17.5px; }

.btn-sm { padding: 10px 20px; font-size: 14.5px; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(14, 159, 156, 0.12);
  transition: box-shadow 0.3s ease;
}

.header.scrolled { box-shadow: 0 8px 30px -18px rgba(6, 78, 76, 0.3); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 78px;
}

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

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--reef-600), var(--reef-900));
  display: grid;
  place-items: center;
  color: var(--gold-400);
  box-shadow: 0 8px 20px -8px rgba(6, 78, 76, 0.5);
  flex-shrink: 0;
}

.logo-mark svg { width: 28px; height: 28px; }

.logo-text { line-height: 1.2; }

.logo-text strong {
  display: block;
  font-family: var(--font-logo);
  font-size: 21px;
  font-weight: 700;
  color: var(--reef-900);
}

.logo-text span {
  display: block;
  font-size: 12.5px;
  color: var(--reef-600);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav { display: flex; align-items: center; gap: 6px; }

.nav a {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink-700);
  padding: 9px 15px;
  border-radius: 100px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover { color: var(--reef-700); background: var(--reef-50); }

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: var(--reef-800);
  background: var(--reef-50);
  border: 1.5px solid var(--reef-200);
  padding: 10px 18px;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.2s ease;
  direction: ltr;
}

.header-phone svg { width: 18px; height: 18px; color: var(--reef-600); }

.header-phone:hover { background: var(--reef-100); transform: translateY(-2px); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--reef-50);
  border: 1.5px solid var(--reef-200);
  place-items: center;
}

.nav-toggle svg { width: 24px; height: 24px; color: var(--reef-800); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(14, 159, 156, 0.18), transparent 60%),
    radial-gradient(800px 480px at 5% 20%, rgba(240, 180, 41, 0.12), transparent 60%),
    linear-gradient(180deg, #f6fcfb 0%, #eef9f8 55%, var(--white) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(14, 159, 156, 0.14) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
  padding: 76px 0 90px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1.5px solid var(--reef-200);
  color: var(--reef-800);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 9px 18px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}

.hero-badge .pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero h1 {
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 22px;
}

.hero p.lead {
  font-size: 18.5px;
  color: var(--ink-500);
  margin-bottom: 30px;
  max-width: 560px;
}

.hero-checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 34px;
  max-width: 520px;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink-700);
}

.hero-checks li svg {
  width: 24px;
  height: 24px;
  color: var(--reef-600);
  flex-shrink: 0;
}

.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--reef-200);
  border-radius: var(--radius-md);
  padding: 13px 20px;
  box-shadow: var(--shadow-sm);
}

.stat-pill strong {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 900;
  color: var(--reef-800);
  line-height: 1;
}

.stat-pill span { font-size: 13px; color: var(--ink-500); font-weight: 600; }

.hero-visual { position: relative; }

.hero-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--reef-100);
  transform: rotate(1.5deg);
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 13px 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--reef-100);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
  animation: floaty 5s ease-in-out infinite;
  z-index: 3;
}

.float-card svg { width: 30px; height: 30px; flex-shrink: 0; }

.float-card small { display: block; font-weight: 500; color: var(--ink-500); font-size: 12.5px; }

.fc-1 { top: 6%; right: -14px; animation-delay: 0s; }
.fc-2 { bottom: 14%; left: -18px; animation-delay: 1.6s; }
.fc-3 { top: 42%; left: -24px; animation-delay: 3s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--reef-900);
  color: var(--white);
  padding: 22px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-bar p {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-bar p svg { width: 22px; height: 22px; color: var(--gold-400); flex-shrink: 0; }

.trust-list { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.trust-list li { font-size: 14.5px; font-weight: 600; color: var(--reef-100); display: flex; align-items: center; gap: 8px; }

.trust-list li svg { width: 18px; height: 18px; color: var(--gold-400); }

/* ---------- Services ---------- */
.services { background: var(--white); position: relative; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--white);
  border: 1.5px solid var(--reef-100);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--reef-600), var(--gold-400));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--reef-200); }

.card:hover::before { opacity: 1; }

.card-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: var(--reef-50);
  color: var(--reef-700);
  border: 1.5px solid var(--reef-100);
}

.card-icon svg { width: 30px; height: 30px; }

.card h3 { font-size: 20px; margin-bottom: 10px; }

.card p { font-size: 15.5px; color: var(--ink-500); margin-bottom: 16px; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14.5px;
  color: var(--reef-700);
}

.card-link svg { width: 17px; height: 17px; transition: transform 0.25s ease; }

.card-link:hover svg { transform: translateX(-5px); }

/* ---------- Why us / 100% ---------- */
.why {
  background: linear-gradient(180deg, #eef9f8, #e3f5f4);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 159, 156, 0.14), transparent 65%);
  top: -160px;
  left: -120px;
}

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.why-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--reef-100);
  transition: transform 0.3s ease;
}

.why-item:hover { transform: translateY(-6px); }

.why-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--reef-100), var(--reef-200));
  color: var(--reef-800);
}

.why-icon svg { width: 38px; height: 38px; }

.why-item h3 { font-size: 19px; margin-bottom: 8px; }

.why-item p { font-size: 15px; color: var(--ink-500); }

.why-100 {
  margin-top: 44px;
  background: linear-gradient(120deg, var(--reef-800), var(--reef-950));
  border-radius: var(--radius-lg);
  padding: 34px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-100::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  pointer-events: none;
}

.why-100 h3 {
  color: var(--white);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
}

.why-100 p { color: var(--reef-100); margin-top: 6px; max-width: 620px; font-size: 15.5px; }

.why-100 .big {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 76px);
  font-weight: 900;
  color: var(--gold-400);
  line-height: 1;
  text-align: center;
}

.why-100 .big small { font-size: 16px; font-weight: 700; color: var(--reef-100); display: block; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; position: relative; }

.step {
  position: relative;
  text-align: center;
  background: var(--white);
  border: 1.5px solid var(--reef-100);
  border-radius: var(--radius-lg);
  padding: 34px 22px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.step:hover { transform: translateY(-6px); }

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--reef-600), var(--reef-800));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px -10px rgba(14, 159, 156, 0.6);
  position: relative;
}

.step-icon { width: 44px; height: 44px; border-radius: 14px; margin: 0 auto 14px; display: grid; place-items: center; background: var(--gold-300); color: var(--gold-700); }

.step-icon svg { width: 24px; height: 24px; }

.step h3 { font-size: 17.5px; margin-bottom: 8px; }

.step p { font-size: 14.5px; color: var(--ink-500); }

.step-arrow {
  position: absolute;
  top: 40px;
  left: -20px;
  width: 40px;
  height: 40px;
  z-index: 2;
}

.step-arrow svg { width: 40px; height: 40px; color: var(--gold-500); }

/* ---------- Benefits ---------- */
.benefits { background: var(--white); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.benefits-list { display: grid; gap: 18px; }

.benefit-item {
  display: flex;
  gap: 16px;
  background: var(--reef-50);
  border: 1.5px solid var(--reef-100);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  align-items: flex-start;
  transition: transform 0.25s ease, background 0.25s ease;
}

.benefit-item:hover { transform: translateX(-6px); background: var(--reef-100); }

.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--white);
  color: var(--reef-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.benefit-icon svg { width: 24px; height: 24px; }

.benefit-item h3 { font-size: 17.5px; margin-bottom: 3px; }

.benefit-item p { font-size: 14.5px; color: var(--ink-500); }

.benefits-visual { position: relative; }

.benefits-visual .hero-card { transform: rotate(-1.5deg); }

/* ---------- Eligibility ---------- */
.eligibility { background: linear-gradient(180deg, #eef9f8, #f6fcfb); }

.elig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.elig-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--reef-100);
}

.elig-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  margin-bottom: 22px;
}

.elig-card h3 svg { width: 30px; height: 30px; color: var(--reef-600); }

.elig-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 15.5px;
  border-bottom: 1px dashed var(--reef-100);
}

.elig-list li:last-child { border-bottom: none; }

.elig-list li svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }

.elig-ok svg { color: var(--reef-600); }
.elig-no svg { color: #e1574d; }

.elig-note {
  margin-top: 30px;
  background: var(--white);
  border: 1.5px dashed var(--gold-400);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-700);
  font-weight: 600;
}

.elig-note svg { width: 26px; height: 26px; color: var(--gold-600); flex-shrink: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--reef-700), var(--reef-950));
  color: var(--white);
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
}

.cta-inner {
  position: relative;
  text-align: center;
  padding: 76px 0;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  margin-bottom: 14px;
}

.cta-inner p { color: var(--reef-100); font-size: 17.5px; max-width: 640px; margin: 0 auto 34px; }

.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.cta-phone-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  color: var(--gold-400);
  direction: ltr;
}

.cta-phone-line svg { width: 22px; height: 22px; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }

.faq-wrap { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--reef-100);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open { border-color: var(--reef-300); box-shadow: var(--shadow-sm); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: right;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink-900);
}

.faq-q .faq-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--reef-50);
  color: var(--reef-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-q .faq-toggle svg { width: 18px; height: 18px; }

.faq-item.open .faq-toggle { transform: rotate(180deg); background: var(--reef-600); color: var(--white); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }

.faq-a-inner { padding: 0 24px 22px; font-size: 15.5px; color: var(--ink-500); }

.faq-a-inner a { color: var(--reef-700); font-weight: 700; }

.faq-more {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  color: var(--ink-500);
}

.faq-more strong { color: var(--reef-700); }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, #eef9f8, #f6fcfb); }

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: stretch; }

.contact-info { display: grid; gap: 18px; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--reef-100);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact-card .c-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--reef-50);
  color: var(--reef-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-card .c-icon svg { width: 28px; height: 28px; }

.contact-card h3 { font-size: 17.5px; margin-bottom: 4px; }

.contact-card p { font-size: 15px; color: var(--ink-500); }

.contact-card .phone-link {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: var(--reef-800);
  direction: ltr;
  display: inline-block;
}

.contact-card .wa-link {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  color: var(--whatsapp-dark);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--reef-100);
}

.contact-form-card h3 { font-size: 22px; margin-bottom: 6px; }

.contact-form-card p { font-size: 15px; color: var(--ink-500); margin-bottom: 22px; }

.field { margin-bottom: 16px; }

.field label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 14.5px; color: var(--ink-700); margin-bottom: 7px; }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink-900);
  background: var(--reef-50);
  border: 1.5px solid var(--reef-100);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}

.field textarea { min-height: 96px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--reef-500);
  background: var(--white);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit { width: 100%; }

.form-note { font-size: 13px; color: var(--ink-400); text-align: center; margin-top: 12px; }

/* ---------- Footer ---------- */
.footer { background: var(--reef-950); color: var(--reef-100); padding: 60px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer h4 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 18px;
  font-weight: 800;
}

.footer-brand p { font-size: 14.5px; color: var(--reef-200); margin: 16px 0 20px; max-width: 320px; }

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--reef-100);
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover { background: var(--reef-600); transform: translateY(-3px); }

.footer-social svg { width: 20px; height: 20px; }

.footer-links li { margin-bottom: 10px; }

.footer-links a { font-size: 14.5px; color: var(--reef-200); transition: color 0.2s ease, padding-right 0.2s ease; display: inline-flex; align-items: center; gap: 8px; }

.footer-links a svg { width: 14px; height: 14px; color: var(--gold-400); }

.footer-links a:hover { color: var(--white); }

.footer-contact li { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 14.5px; color: var(--reef-200); }

.footer-contact li svg { width: 18px; height: 18px; color: var(--gold-400); flex-shrink: 0; }

.footer-contact a { direction: ltr; display: inline-block; font-weight: 700; }

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--reef-300);
}

.footer-disclaimer p { max-width: 760px; }

.footer-disclaimer .kw-line { color: var(--gold-400); font-weight: 600; }

/* ---------- Floating buttons ---------- */
.floating-btns {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.fab {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease;
}

.fab:hover { transform: scale(1.1); }

.fab svg { width: 30px; height: 30px; }

.fab-wa { background: linear-gradient(135deg, #2ce07c, var(--whatsapp-dark)); }
.fab-call { background: linear-gradient(135deg, var(--reef-500), var(--reef-800)); }

.fab .fab-label {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink-900);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  font-family: var(--font-body);
}

.fab:hover .fab-label { opacity: 1; }

.fab-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: ring 2s infinite;
}

@keyframes ring {
  0% { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--white);
  border-top: 1.5px solid var(--reef-100);
  box-shadow: 0 -8px 24px -12px rgba(6, 78, 76, 0.2);
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
}

.mobile-call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 10px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14.5px;
}

.mobile-call-bar a svg { width: 19px; height: 19px; }

.mcb-call { background: linear-gradient(135deg, var(--reef-500), var(--reef-800)); color: var(--white); }
.mcb-wa { background: var(--whatsapp); color: var(--white); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 18px 20px;
    border-bottom: 1px solid var(--reef-100);
    box-shadow: 0 24px 40px -24px rgba(6, 78, 76, 0.25);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 16px; font-size: 16px; border-radius: 12px; }
  .nav a:hover { background: var(--reef-50); }
  .nav-toggle { display: grid; }
  .header-phone { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; padding-top: 56px; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .step-arrow { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .elig-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .fc-1 { right: -6px; }
  .fc-2 { left: -6px; }
  .fc-3 { left: -8px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 8px; }
  .stat-pill { flex: 1; justify-content: center; padding: 10px 12px; }
  .stat-pill strong { font-size: 20px; }
  .stat-pill span { font-size: 11.5px; }
  .hero-cta .btn { width: 100%; }
  .trust-bar-inner { justify-content: center; text-align: center; }
  .trust-list { justify-content: center; }
  .why-100 { padding: 28px 22px; justify-content: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-disclaimer { flex-direction: column; text-align: center; }
  .float-card { padding: 10px 14px; font-size: 12.5px; }
  .fc-1 { top: 2%; }
  .fc-2 { bottom: 8%; }
  .fc-3 { display: none; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 72px; }
  .floating-btns { bottom: 92px; left: 14px; }
  .fab { width: 54px; height: 54px; }
  .fab svg { width: 26px; height: 26px; }
}
