/* =============================================================
   Vijayan Supramaniam — Great Eastern Life | Design System
   Brand: Great Eastern Red + Gold accents on clean white
   ============================================================= */

:root {
  /* Brand palette — premium Great Eastern red */
  --ge-red: #c8102e;
  --ge-red-dark: #9e0b22;
  --ge-red-deep: #7a0819;
  --ge-red-soft: #fdecee;
  --ge-red-tint: #faf3f4;
  --gold: #c9a227;
  --gold-light: #e6c86a;
  --gold-dark: #a8861a;

  /* Neutrals — cool greys */
  --ink: #1c1e26;
  --slate: #4b5563;
  --muted: #7b8393;
  --line: #e6e8ec;
  --bg: #ffffff;
  --bg-soft: #f4f5f7;
  --bg-grey: #eef0f3;
  --bg-dark: #14161d;

  /* Utility */
  --wa: #25d366;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(20, 22, 30, 0.06);
  --shadow: 0 10px 30px rgba(20, 22, 30, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 22, 30, 0.16);
  --maxw: 1180px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0 0 1em; color: var(--slate); }
section { position: relative; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--ge-red-tint); }
.section--dark { background: var(--bg-dark); color: #fff; }
.section--dark p { color: #b9bdc9; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ge-red);
  background: var(--ge-red-soft); padding: 7px 14px; border-radius: 100px;
  margin-bottom: 18px;
}
.section--dark .eyebrow { background: rgba(200,16,46,0.16); color: #ff6b83; }
.section-title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.section-lead { font-size: 1.08rem; max-width: 640px; margin: 0 auto 8px; }
.section-head { max-width: 720px; margin: 0 auto 54px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 0.98rem; padding: 14px 26px;
  border-radius: 100px; border: 2px solid transparent; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn--primary { background: var(--ge-red); color: #fff; box-shadow: 0 8px 22px rgba(200,16,46,0.28); }
.btn--primary:hover { background: var(--ge-red-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(200,16,46,0.38); }
.btn--gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #2a2100; box-shadow: 0 8px 22px rgba(201,162,39,0.3); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201,162,39,0.4); }
.btn--whatsapp { background: var(--wa); color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,0.3); }
.btn--whatsapp:hover { background: #1eb757; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ge-red); color: var(--ge-red); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,0.98); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__logo { height: 40px; width: auto; display: block; }
.brand__logo--footer { height: 42px; background: #fff; padding: 8px 14px; border-radius: 12px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; padding-left: 12px; border-left: 1px solid var(--line); }
.brand__name { font-weight: 800; font-size: 1rem; letter-spacing: -0.01em; }
.brand__sub { font-size: 0.72rem; color: var(--muted); font-weight: 600; letter-spacing: 0.02em; }

/* Single nav menu (links + CTA) */
.nav__menu { display: flex; align-items: center; gap: 26px; }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  position: relative; font-size: 0.92rem; font-weight: 600; color: var(--slate);
  padding: 8px 12px; border-radius: 8px; transition: color .2s ease, background .2s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--ge-red); border-radius: 2px; transform: scaleX(0); transform-origin: center;
  transition: transform .25s ease;
}
.nav__links a:hover { color: var(--ge-red); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { color: var(--ge-red); }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__book { padding: 11px 20px; font-size: 0.9rem; }

/* Hamburger */
.nav__toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px; z-index: 101;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--transition); }
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 70px 0 90px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -180px; right: -140px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(200,16,46,0.10), transparent 66%); z-index: 0;
}
.hero::after {
  content: ""; position: absolute; bottom: -160px; left: -120px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(201,162,39,0.12), transparent 66%); z-index: 0;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 700;
  color: var(--gold-dark); background: #fff; border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 100px; box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 4px rgba(37,211,102,0.18); }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 18px; }
.hero h1 .accent { color: var(--ge-red); }
.hero__lead { font-size: 1.16rem; max-width: 520px; margin-bottom: 30px; }
.hero__tagline {
  font-size: 1.02rem; font-style: italic; font-weight: 600; color: var(--gold-dark);
  border-left: 3px solid var(--gold); padding-left: 14px; margin: -14px 0 28px; max-width: 480px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__trust { display: flex; gap: 30px; flex-wrap: wrap; }
.hero__trust .stat strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--ink); line-height: 1; }
.hero__trust .stat span { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

/* Hero portrait card */
.hero__visual { position: relative; max-width: 440px; margin-left: auto; }
.hero__poster {
  width: 100%; height: 480px; object-fit: cover; object-position: center 18%;
  border-radius: 22px; box-shadow: var(--shadow-lg); display: block;
  border: 6px solid #fff; background: #fff;
}
.hero__float {
  position: absolute; background: #fff; border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px; z-index: 3;
  font-size: 0.85rem; font-weight: 700;
}
.hero__float--1 { top: 26px; left: -26px; }
.hero__float--2 { bottom: 90px; right: -20px; }
.hero__float .ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.hero__float--1 .ico { background: var(--wa); }
.hero__float--2 .ico { background: var(--gold); }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--bg-dark); color: #fff; padding: 22px 0; }
.trustbar__row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.trustbar__item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 600; color: #cfd3dd; }
.trustbar__item svg { width: 22px; height: 22px; color: var(--gold-light); flex-shrink: 0; }

/* ---------- Cards / Services ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: var(--transition); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--ge-red-soft); color: var(--ge-red); margin-bottom: 20px;
  transition: var(--transition);
}
.card:hover .card__icon { background: var(--ge-red); color: #fff; transform: scale(1.08); }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { font-size: 0.96rem; margin-bottom: 16px; flex: 1; }
.card__link { font-weight: 700; font-size: 0.9rem; color: var(--ge-red); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.card__link svg { width: 16px; height: 16px; transition: var(--transition); }
.card:hover .card__link svg { transform: translateX(4px); }
.card--accent::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--ge-red), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.card--accent:hover::before { transform: scaleX(1); }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about__media { position: relative; max-width: 420px; margin: 0 auto; }
.about__poster {
  width: 100%; max-height: 600px; object-fit: cover; object-position: center top;
  border-radius: 20px; box-shadow: var(--shadow-lg); display: block;
  border: 6px solid #fff; background: #fff;
}
.about__badge {
  position: absolute; bottom: -22px; right: -14px; background: #fff; border-radius: 18px;
  padding: 18px 22px; box-shadow: var(--shadow); text-align: center; border: 1px solid var(--line);
}
.about__badge strong { display: block; font-size: 2rem; color: var(--ge-red); line-height: 1; font-weight: 900; }
.about__badge span { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.about__list { display: grid; gap: 14px; margin: 24px 0 30px; }
.about__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; color: var(--slate); }
.about__list svg { width: 22px; height: 22px; color: var(--wa); flex-shrink: 0; margin-top: 2px; }

/* ---------- Why choose (feature rows) ---------- */
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature__num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  font-weight: 900; font-size: 1.1rem; background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #2a2100;
}
.feature h3 { font-size: 1.1rem; margin-bottom: 6px; }
.feature p { font-size: 0.94rem; margin: 0; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 34px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--ge-red-soft), var(--line), var(--ge-red-soft));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step__circle {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--line); color: var(--ge-red); font-weight: 900; font-size: 1.4rem;
  position: relative; z-index: 1; transition: var(--transition); box-shadow: var(--shadow-sm);
}
.step:hover .step__circle { border-color: var(--ge-red); background: var(--ge-red); color: #fff; transform: scale(1.1); box-shadow: 0 8px 24px rgba(200,16,46,0.28); }
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testi {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px 28px;
  display: flex; flex-direction: column; gap: 16px; transition: var(--transition);
  position: relative; overflow: hidden;
}
.testi::before {
  content: '\201C'; position: absolute; top: -8px; left: 18px;
  font-size: 7rem; line-height: 1; font-weight: 900; color: var(--ge-red-soft);
  font-family: Georgia, serif; pointer-events: none; z-index: 0;
}
.testi:hover {
  box-shadow: 0 16px 40px rgba(200,16,46,0.12); transform: translateY(-6px);
  border-color: rgba(200,16,46,0.18);
}
.testi__stars { color: var(--gold); display: flex; gap: 3px; position: relative; z-index: 1; }
.testi__quote { font-size: 1rem; color: var(--ink); font-style: italic; margin: 0; line-height: 1.7; position: relative; z-index: 1; }
.testi__author { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); position: relative; z-index: 1; }
.testi__avatar {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ge-red), var(--gold)); color: #fff; font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(200,16,46,0.2);
}
.testi__author strong { display: block; font-size: 0.96rem; color: var(--ink); }
.testi__author span { font-size: 0.82rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; background: #fff; transition: var(--transition); }
.faq__item:hover { border-color: #d6d9e0; }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; font-size: 1.02rem; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit;
}
.faq__q .plus { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: var(--transition); }
.faq__q .plus::before, .faq__q .plus::after {
  content: ""; position: absolute; background: var(--ge-red); 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: var(--transition); }
.faq__item.open .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq__a p { padding: 0 24px 20px; margin: 0; font-size: 0.96rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--ge-red), var(--ge-red-dark)); color: #fff; border-radius: 26px; padding: 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: -80px; right: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(201,162,39,0.35), transparent 65%); }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.4rem); position: relative; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 28px; position: relative; font-size: 1.08rem; }
.cta-band .hero__actions { justify-content: center; margin: 0; position: relative; }

/* ---------- Forms ---------- */
.form-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.86rem; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.field label .req { color: var(--ge-red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.96rem; color: var(--ink); background: var(--bg-soft); transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ge-red); background: #fff; box-shadow: 0 0 0 4px rgba(200,16,46,0.1);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; text-align: center; }
.contact-side { display: grid; gap: 16px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; transition: var(--transition); }
.contact-item:hover { border-color: var(--ge-red); box-shadow: var(--shadow-sm); }
.contact-item .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--ge-red-soft); color: var(--ge-red); display: grid; place-items: center; flex-shrink: 0; }
.contact-item .ico--wa { background: rgba(37,211,102,0.14); color: var(--wa); }
.contact-item--wa:hover { border-color: var(--wa); }
.contact-item .ico svg { width: 22px; height: 22px; }
.contact-item strong { display: block; font-size: 0.98rem; }
.contact-item a, .contact-item span { color: var(--slate); font-size: 0.94rem; }
.contact-item a:hover { color: var(--ge-red); }
.fast-reply {
  display: flex; width: fit-content; align-items: center; gap: 5px; margin-top: 6px;
  font-size: 0.78rem; font-weight: 700; color: #148a3f;
  background: rgba(37,211,102,0.12); padding: 3px 10px; border-radius: 100px;
}
.fast-reply__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 3px rgba(37,211,102,0.22); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: #b9bdc9; padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer h4 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer a { color: #b9bdc9; font-size: 0.92rem; line-height: 2.1; transition: var(--transition); }
.footer a:hover { color: var(--gold-light); }
.footer .brand__name { color: #fff; }
.footer__about p { font-size: 0.92rem; margin-top: 16px; max-width: 320px; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06); display: grid; place-items: center; }
.footer__social a:hover { background: var(--ge-red); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }
.footer__disclaimer { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 18px 22px; font-size: 0.8rem; color: #8b90a0; margin-bottom: 34px; }

/* ---------- Floating action buttons (Book + WhatsApp) ---------- */
.fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.fab__btn {
  display: inline-flex; align-items: center; gap: 10px; height: 56px; padding: 0 22px;
  border-radius: 100px; color: #fff; font-weight: 700; font-size: 0.95rem;
  box-shadow: var(--shadow-lg); transition: transform .2s ease, box-shadow .2s ease; white-space: nowrap;
}
.fab__btn svg { width: 26px; height: 26px; flex-shrink: 0; }
.fab__btn:hover { transform: translateY(-3px) scale(1.03); }
.fab__btn--book { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #2a2100; }
.fab__btn--wa { background: var(--wa); animation: wa-pulse 2.6s infinite; }
@keyframes wa-pulse { 0% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: var(--shadow-lg), 0 0 0 14px rgba(37,211,102,0); } 100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(120px);
  background: var(--ink); color: #fff; padding: 15px 24px; border-radius: 100px; font-weight: 600;
  box-shadow: var(--shadow-lg); z-index: 300; transition: var(--transition); display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast svg { width: 20px; height: 20px; color: var(--wa); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--bg-soft); padding: 56px 0; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 10px; }
.page-hero p { max-width: 640px; }
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--ge-red); }
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.3rem; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--slate); font-size: 0.98rem; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal li { margin-bottom: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav__menu { gap: 16px; }
  .nav__links a { padding: 8px 9px; font-size: 0.88rem; }
  .brand__text { display: none; }
}
@media (max-width: 980px) {
  .hero__grid, .about__grid, .form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
  .hero__poster { height: 420px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about__media { max-width: 380px; margin: 0 auto; }
  .form-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .brand__text { display: flex; }
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: 72px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 6px; padding: 18px 24px 26px;
    box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease; z-index: 99;
  }
  .nav__menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__links a { padding: 13px 14px; font-size: 0.98rem; border-radius: 10px; }
  .nav__links a::after { display: none; }
  .nav__links a:hover, .nav__links a.active { background: var(--ge-red-soft); }
  .nav__cta { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 8px; }
  .nav__cta .btn { width: 100%; }
}
@media (max-width: 760px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .steps::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 20px; border-radius: 18px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 48px 0 24px; }
  .footer__about { text-align: center; }
  .footer__about p { margin: 16px auto; }
  .footer__social { justify-content: center; }
  /* Hero */
  .hero { padding: 48px 0 60px; }
  .hero__poster { height: 320px; }
  .hero__float--1 { left: 6px; top: 14px; }
  .hero__float--2 { right: 6px; bottom: 60px; }
  .hero__trust { gap: 18px; justify-content: center; }
  .hero__trust .stat { text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__content { text-align: center; }
  .hero__lead, .hero__tagline { text-align: center; max-width: 100%; margin-left: auto; margin-right: auto; }
  /* Trust bar */
  .trustbar__row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .trustbar { padding: 28px 0; }
  /* About */
  .about__content { text-align: left; }
  .about__badge { right: 0; }
  /* Testimonials — stack cleanly */
  .testi { padding: 26px 22px 22px; }
  .testi::before { font-size: 5rem; top: -4px; left: 12px; }
  /* Process */
  .step { display: flex; align-items: flex-start; gap: 18px; text-align: left; }
  .step__circle { margin: 0; flex-shrink: 0; width: 56px; height: 56px; font-size: 1.2rem; }
  .step h3 { margin-bottom: 4px; }
  /* FABs */
  .fab { bottom: 16px; right: 14px; gap: 10px; }
  .fab__btn { height: 52px; width: 52px; padding: 0; justify-content: center; border-radius: 50%; }
  .fab__btn .fab__label { display: none; }
  /* Contact form */
  .form-card { padding: 24px 18px; }
  .contact-item { padding: 16px; }
  /* Section heads */
  .section-head { margin-bottom: 36px; }
  .section-lead { font-size: 1rem; }
  /* Feature grid on mobile */
  .grid--2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .section-title { font-size: 1.7rem; }
  .btn--lg { padding: 15px 24px; font-size: 0.98rem; }
  .cta-band h2 { font-size: 1.5rem; }
  .hero__badge { font-size: 0.76rem; padding: 6px 13px; }
  .hero__float { padding: 9px 13px; font-size: 0.8rem; }
  .hero__float .ico { width: 28px; height: 28px; }
  .nav { height: 64px; }
  .brand__logo { height: 34px; }
  .brand__name { font-size: 0.88rem; }
  .brand__sub { font-size: 0.66rem; }
}
