/* ═══════════════════════════════════════════════
   SAFE ASSETS — RASI
   Brand: Warm trust · Kerala · Educate first
   Palette: Deep forest green + warm ivory + gold
   Fonts: Playfair Display + DM Sans
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --green-deep:   #0B4D3B;
  --green-mid:    #1A7A5E;
  --green-light:  #2EA87A;
  --gold:         #C8973A;
  --gold-light:   #E8C97A;
  --ivory:        #FAF7F2;
  --ivory-dark:   #F0EBE1;
  --cream:        #EDE8DF;
  --text-dark:    #1A1512;
  --text-mid:     #4A3F35;
  --text-soft:    #7A6E64;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 12px rgba(11,77,59,0.08);
  --shadow-md:    0 8px 40px rgba(11,77,59,0.12);
  --shadow-lg:    0 20px 60px rgba(11,77,59,0.18);
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--green-deep);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }
p  { color: var(--text-mid); line-height: 1.75; }
em { font-style: italic; color: var(--green-mid); }
strong { font-weight: 600; color: var(--text-dark); }

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

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,77,59,0.08);
  padding: 0 clamp(20px, 4vw, 60px);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--green-deep); line-height: 1.1; }
.nav-logo-sub { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 7px 14px; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500; color: var(--text-mid);
  transition: all 0.2s; cursor: pointer; white-space: nowrap;
}
.nav-link:hover { background: var(--ivory-dark); color: var(--green-deep); }
.nav-link.active { color: var(--green-mid); font-weight: 600; }
.nav-cta {
  background: var(--green-deep); color: white !important;
  padding: 9px 20px !important; border-radius: 20px !important;
  font-weight: 600 !important; font-size: 13px !important;
  transition: transform 0.15s, background 0.15s !important;
}
.nav-cta:hover { background: var(--green-mid) !important; transform: translateY(-1px); }

/* hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--green-deep); border-radius: 2px; transition: all 0.3s; }
.nav-mobile { display: none; flex-direction: column; background: var(--ivory); border-top: 1px solid var(--cream); padding: 16px 20px; gap: 4px; }
.nav-mobile .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); }
.nav-mobile.open { display: flex; }

/* ── SECTION WRAPPER ── */
.section { padding: clamp(50px, 8vw, 100px) clamp(20px, 5vw, 60px); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  padding: 13px 28px; border-radius: 28px; border: none; cursor: pointer;
  transition: all 0.2s; text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--green-deep); color: white; }
.btn-primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--green-deep); border: 2px solid var(--green-deep); }
.btn-outline:hover { background: var(--green-deep); color: white; transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: #B8872A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,151,58,0.3); }
.btn-wa {
  background: #25D366; color: #075E54;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover { background: #1FBD5A; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.4); }

/* ── CARD ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(11,77,59,0.08);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ── DIVIDER ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--cream), transparent); margin: 0; }

/* ── GREEN SECTION BG ── */
.bg-green { background: var(--green-deep); }
.bg-green h1, .bg-green h2, .bg-green h3, .bg-green h4 { color: white; }
.bg-green p { color: rgba(255,255,255,0.8); }
.bg-green .section-label { color: var(--gold-light); }
.bg-green .section-label::before { background: var(--gold-light); }

.bg-cream { background: var(--cream); }
.bg-ivory { background: var(--ivory-dark); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  padding: clamp(60px, 10vw, 100px) clamp(20px, 5vw, 60px) clamp(50px, 8vw, 80px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 640px; }
.page-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,0.6); }
.page-breadcrumb a { color: rgba(255,255,255,0.6); }
.page-breadcrumb a:hover { color: white; }
.page-breadcrumb span { color: rgba(255,255,255,0.35); }

/* ── FOOTER ── */
.footer {
  background: var(--green-deep);
  padding: clamp(40px, 6vw, 70px) clamp(20px, 5vw, 60px) 24px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand img { height: 52px; width: auto; filter: brightness(10); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); font-size: 14px; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); font-size: 13px; transition: color 0.2s; }
.footer-bottom-links a:hover { color: white; }

/* ── WA FLOAT BUTTON ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 58px; height: 58px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
.wa-float-pulse {
  position: absolute; width: 100%; height: 100%;
  border-radius: 50%; background: rgba(37,211,102,0.4);
  animation: wa-pulse 2.5s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── TICK LIST ── */
.tick-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tick-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-mid); font-size: 15px; line-height: 1.6; }
.tick-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--green-deep); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; margin-top: 2px;
}
.tick-list.gold li::before { background: var(--gold); }
.tick-list.white li { color: rgba(255,255,255,0.85); }
.tick-list.white li::before { background: rgba(255,255,255,0.2); color: var(--gold-light); }

/* ── QUOTE BLOCK ── */
.quote-block {
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  background: var(--ivory-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--green-deep);
  line-height: 1.7;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── UTILS ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold) !important; }
.text-green { color: var(--green-mid) !important; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── CHAT WIDGET (shared) ── */
.chat-fab {
  position: fixed; bottom: 96px; right: 28px; z-index: 490;
  width: 52px; height: 52px;
  background: var(--green-deep); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); cursor: pointer;
  border: none; transition: transform 0.2s;
}
.chat-fab:hover { transform: scale(1.08); }
.chat-fab svg { width: 24px; height: 24px; stroke: white; fill: none; }

.chat-panel {
  position: fixed; bottom: 0; right: 20px; z-index: 480;
  width: 340px; max-height: 520px;
  background: white; border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.15);
  display: flex; flex-direction: column;
  transform: translateY(100%); transition: transform 0.35s cubic-bezier(0.34,1.3,0.64,1);
}
.chat-panel.open { transform: translateY(0); }
.chat-panel-head {
  background: var(--green-deep); border-radius: 16px 16px 0 0;
  padding: 14px 18px; display: flex; align-items: center; justify-content: space-between;
}
.chat-panel-head-left { display: flex; align-items: center; gap: 10px; }
.chat-panel-head-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.chat-panel-head-name { font-size: 14px; font-weight: 600; color: white; }
.chat-panel-head-status { font-size: 11px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 5px; }
.online-dot { width: 7px; height: 7px; background: #4ADE80; border-radius: 50%; }
.chat-close-btn { background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; font-size: 20px; line-height: 1; }
.chat-msgs { flex: 1; overflow-y: auto; padding: 16px; background: #F8FBF9; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { display: flex; flex-direction: column; }
.chat-msg.bot { align-items: flex-start; }
.chat-msg.user { align-items: flex-end; }
.chat-bubble {
  max-width: 85%; padding: 10px 14px; border-radius: 14px;
  font-size: 13.5px; line-height: 1.55;
}
.bot .chat-bubble { background: white; color: var(--text-dark); border: 1px solid #E0EDE9; border-bottom-left-radius: 4px; }
.user .chat-bubble { background: var(--green-deep); color: white; border-bottom-right-radius: 4px; }
.chat-time { font-size: 10px; color: #9BBFB2; margin-top: 3px; padding: 0 4px; }
.chat-sugg { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 4px; }
.chat-sugg-btn {
  background: #E1F5EE; border: 1.5px solid #9FE1CB;
  color: var(--green-deep); font-size: 12px; font-weight: 500;
  padding: 5px 11px; border-radius: 20px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.15s; border: none;
}
.chat-sugg-btn:hover { background: var(--green-light); color: white; }
.chat-input-area { padding: 12px; border-top: 1px solid #EEF5F2; background: white; }
.chat-input-row { display: flex; gap: 8px; }
.chat-input {
  flex: 1; background: #F0F4F2; border: 1.5px solid #E0EDE9;
  border-radius: 20px; padding: 10px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 13.5px; color: var(--text-dark);
  outline: none; transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--green-mid); }
.chat-send {
  width: 38px; height: 38px; background: var(--green-deep);
  border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.15s;
}
.chat-send:hover { transform: scale(1.08); }
.chat-send svg { width: 16px; height: 16px; }
.chat-wa-cta { margin-top: 8px; text-align: center; font-size: 11.5px; color: #9BBFB2; }
.chat-wa-cta button { background: none; border: none; color: var(--green-mid); font-size: 11.5px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.typing-dots { display: flex; gap: 4px; padding: 4px 0; }
.typing-dots span { width: 7px; height: 7px; background: #9BBFB2; border-radius: 50%; animation: tdot 1.2s infinite; }
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes tdot { 0%,80%,100%{transform:translateY(0)} 40%{transform:translateY(-6px)} }
.chat-wa-redirect {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25D366; color: #075E54; font-size: 12px; font-weight: 700;
  padding: 7px 14px; border-radius: 20px; border: none; cursor: pointer;
  margin-top: 8px; font-family: 'DM Sans', sans-serif;
}
/* HOME PAGE CSS */

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green-mid) 60%, #1A8A6A 100%);
  position: relative; overflow: hidden;
  padding: clamp(60px,10vw,100px) clamp(20px,5vw,60px) 0;
}
.hero::before {
  content:''; position:absolute; top:-120px; right:-120px;
  width:500px; height:500px; border-radius:50%;
  background: rgba(255,255,255,0.04);
}
.hero::after {
  content:''; position:absolute; bottom:60px; left:-80px;
  width:300px; height:300px; border-radius:50%;
  background: rgba(200,151,58,0.06);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px; font-weight: 600;
}
.hero-h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: white; line-height: 1.1;
  margin-bottom: 20px;
}
.hero-h1 em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  line-height: 1.8; margin-bottom: 28px;
}
.hero-trust-msg { margin-bottom: 32px; }
.hero-trust-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.1rem;
  color: rgba(255,255,255,0.9); line-height: 1.6;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}
.hero-trust-quote em { color: var(--gold-light); }
.hero-trust-name { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 8px; padding-left: 19px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero photo frame */
.hero-card-stack { position: relative; padding-bottom: 40px; }
.hero-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow-lg);
}
.hero-photo { width: 100%; height: 420px; object-fit: cover; object-position: top; display: block; }
.hero-photo-badge {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: rgba(11,77,59,0.9); backdrop-filter: blur(8px);
  color: white; font-size: 13px; font-weight: 500;
  padding: 10px 16px; border-radius: 10px;
  display: flex; align-items: center; gap: 8px;
}
.badge-dot { width: 8px; height: 8px; background: #4ADE80; border-radius: 50%; flex-shrink:0; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.8)} }
.hero-stat-card {
  position: absolute;
  background: white; border-radius: var(--radius);
  padding: 14px 20px; box-shadow: var(--shadow-md);
  text-align: center; min-width: 110px;
}
.hero-stat-1 { bottom: 10px; left: -30px; }
.hero-stat-2 { top: 40px; right: -30px; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--green-deep); }
.hero-stat-label { font-size: 11px; color: var(--text-soft); margin-top: 2px; }

/* Assets strip */
.hero-assets-protected {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px; position: relative; z-index: 1;
}
.hero-assets-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 20px clamp(20px,5vw,60px);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.hero-assets-label { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }
.hero-assets-list { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero-asset { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; }
.hero-asset-sep { color: rgba(255,255,255,0.25); }

/* ── TRUST STRIP ── */
.trust-strip { background: white; border-bottom: 1px solid var(--cream); padding: 20px clamp(20px,5vw,60px); }
.trust-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.trust-item-strip { display: flex; align-items: center; gap: 12px; }
.trust-icon { font-size: 22px; }
.trust-item-strip strong { display: block; font-size: 13px; color: var(--text-dark); line-height: 1.2; }
.trust-item-strip span { font-size: 11.5px; color: var(--text-soft); }
.trust-sep-v { width: 1px; height: 40px; background: var(--cream); }
@media (max-width: 900px) { .trust-sep-v { display: none; } .trust-strip-inner { justify-content: center; } }

/* ── ABOUT PREVIEW ── */
.about-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-preview-photo { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; height: 440px; object-position: top; }
.about-preview-mission {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--ivory); border-radius: var(--radius);
  padding: 20px; margin-top: 20px;
  border: 1px solid var(--cream);
}
.mission-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.about-preview-mission strong { display: block; color: var(--green-deep); margin-bottom: 4px; font-size: 15px; }
.about-preview-mission p { font-size: 14px; line-height: 1.6; }
@media (max-width: 768px) { .about-preview-grid { grid-template-columns: 1fr; } }

/* ── WHY GRID ── */
.why-card { display: flex; flex-direction: column; }
.why-card-icon { font-size: 32px; margin-bottom: 12px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 0; }
.why-list li { display: flex; align-items: flex-start; gap: 8px; color: var(--text-mid); font-size: 14.5px; }
.why-list li::before { content: '•'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
.why-truth { border: 2px solid rgba(255,255,255,0.15) !important; }
.why-truth-text { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.85); }

/* ── SAVINGS SECTION ── */
.savings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.savings-visual { display: flex; flex-direction: column; gap: 20px; align-items: center; }
.savings-timeline { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.savings-step {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 24px 20px; text-align: center; flex: 1; min-width: 110px;
}
.savings-step-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.savings-step-label { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 6px; }
.savings-shield {
  background: rgba(200,151,58,0.15); border: 2px solid var(--gold);
  border-radius: var(--radius-lg); padding: 28px 40px;
  text-align: center; margin-top: 8px;
}
.savings-shield-icon { font-size: 48px; margin-bottom: 10px; }
.savings-shield-text { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.6; }
.savings-shield-text strong { color: var(--gold-light); }
@media (max-width: 768px) { .savings-grid { grid-template-columns: 1fr; } }

/* ── SERVICE CARDS ── */
.service-card { display: flex; flex-direction: column; text-decoration: none; }
.service-card:hover { border-color: var(--green-mid); }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h4 { color: var(--green-deep); margin-bottom: 8px; }
.service-card p { font-size: 14px; }

/* ── STORY CARDS ── */
.story-card { padding: 0; overflow: hidden; }
.story-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.story-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.story-caption { padding: 0 20px 20px; font-style: italic; color: var(--text-mid); font-family: 'Playfair Display', serif; font-size: 0.95rem; }

/* ── FAQ PREVIEW ── */
.faq-preview-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.faq-preview-list { display: flex; flex-direction: column; gap: 0; }
.faq-preview-item {
  border-bottom: 1px solid var(--cream); padding: 18px 0;
  cursor: pointer; transition: all 0.2s;
}
.faq-preview-item:first-child { border-top: 1px solid var(--cream); }
.faq-preview-q {
  font-weight: 600; color: var(--text-dark); font-size: 15px;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-preview-q::after { content: '+'; color: var(--green-mid); font-size: 20px; transition: transform 0.2s; }
.faq-preview-item.open .faq-preview-q::after { transform: rotate(45deg); }
.faq-preview-a {
  display: none; font-size: 14.5px; color: var(--text-mid);
  line-height: 1.7; margin-top: 12px; padding-right: 20px;
}
@media (max-width: 768px) { .faq-preview-grid { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}
