/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #0A0E12;
  --ink-soft:   #1B2027;
  --gray-900:   #2A2F36;
  --gray-600:   #5B6470;
  --gray-300:   #D8DCE1;
  --gray-100:   #F2F4F6;
  --white:      #FFFFFF;
  --lime:       #2F5BFF;
  --lime-deep:  #1A3FD6;
  --lime-tint:  #E8EDFF;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --shadow-sm: 0 10px 24px -16px rgba(10,14,18,0.18);
  --shadow-md: 0 26px 60px -28px rgba(10,14,18,0.28);
  --ease: cubic-bezier(.16,.84,.44,1);
}

html { scroll-behavior: smooth; }

:focus-visible {
  outline: 2.5px solid var(--lime);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, .logo-text, .stat-num, .stat-text, .about-badge-num {
  font-family: 'Sora', system-ui, sans-serif;
}

img { max-width: 100%; display: block; }
address { font-style: normal; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.noise-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 2000;
  opacity: 0.025; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== reveal-on-scroll ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"].is-visible { transition-delay: 0.05s; }
.reveal[data-delay="2"].is-visible { transition-delay: 0.12s; }
.reveal[data-delay="3"].is-visible { transition-delay: 0.2s; }
.reveal[data-delay="4"].is-visible { transition-delay: 0.3s; }
.reveal[data-delay="5"].is-visible { transition-delay: 0.4s; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-300);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }

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

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--ink);
  color: var(--lime);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }
.logo-text { font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.logo--footer .logo-text { color: #fff; }

.nav-links { display: flex; list-style: none; gap: 8px; }
.nav-links a {
  position: relative;
  display: block;
  font-size: 14.5px; font-weight: 600; color: var(--gray-600);
  padding: 9px 16px; border-radius: var(--radius-pill);
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--ink); background: var(--gray-100); }

.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ink); color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700;
  white-space: nowrap;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--lime);
  transform: translateY(101%);
  transition: transform 0.35s var(--ease);
  z-index: 0;
}
.btn-cta span, .btn-cta svg { position: relative; z-index: 1; transition: color 0.3s; }
.btn-cta:hover::before { transform: translateY(0); }
.btn-cta:hover span, .btn-cta:hover svg { color: var(--ink); }
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-cta--lg { padding: 17px 30px; font-size: 15.5px; }
.btn-cta--dark { background: var(--white); color: var(--ink); }
.btn-cta--dark span { color: var(--ink); }
.btn-cta--dark::before { background: var(--ink); }
.btn-cta--dark:hover span { color: var(--lime); }
.btn-cta--block { width: 100%; }

.btn-outline-x {
  display: inline-flex; align-items: center;
  padding: 17px 30px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gray-300);
  font-size: 15.5px; font-weight: 700; color: var(--ink);
  transition: border-color 0.25s, background 0.25s;
}
.btn-outline-x:hover { border-color: var(--ink); background: var(--gray-100); }

.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 18px;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); flex-shrink: 0; box-shadow: 0 0 0 4px var(--lime-tint); }
.eyebrow--dark { color: var(--ink); }
.eyebrow--light { color: #fff; }
.eyebrow--light .eyebrow-dot { box-shadow: 0 0 0 4px rgba(47,91,255,0.18); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg-photo { position: absolute; inset: 0; z-index: -1; }
.hero-bg-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  animation: hero-zoom 16s ease-out forwards;
}
@keyframes hero-zoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6,9,13,0.94) 0%, rgba(6,9,13,0.85) 32%, rgba(6,9,13,0.55) 58%, rgba(6,9,13,0.22) 80%),
    linear-gradient(0deg, rgba(6,9,13,0.55), transparent 40%);
}

.hero-inner { text-align: left; max-width: 620px; margin: 0; }

.hero-title { font-size: clamp(38px, 5.6vw, 60px); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: #fff; margin-bottom: 24px; }
.hero-title .line { display: block; }
.hero-title em { font-style: normal; color: var(--lime); position: relative; }

.hero-desc { font-size: 17px; color: rgba(255,255,255,0.82); max-width: 480px; margin: 0 0 36px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.btn-outline-x--light { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline-x--light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.hero-trustbar { display: inline-flex; align-items: center; gap: 18px; background: var(--gray-100); padding: 14px 26px; border-radius: var(--radius-pill); margin: 0 auto; }
.hero-trustbar--glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.16);
  margin: 0;
}
.hero-trustbar--glass .trust-chip strong { color: #fff; }
.hero-trustbar--glass .trust-chip span { color: rgba(255,255,255,0.65); }
.hero-trustbar--glass .trust-divider { background: rgba(255,255,255,0.2); }

.trust-chip { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.trust-chip strong { font-size: 13.5px; font-weight: 800; color: var(--ink); }
.trust-chip span { font-size: 11px; color: var(--gray-600); }
.trust-divider { width: 1px; height: 26px; background: var(--gray-300); }

.photo-placeholder {
  width: 100%; aspect-ratio: 16/8;
  background: linear-gradient(155deg, var(--gray-100), #FAFBFC);
  border: 1.5px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--gray-600);
  text-align: center;
  font-size: 13.5px;
  box-shadow: var(--shadow-md);
}
.photo-placeholder svg { color: var(--gray-300); }
.photo-placeholder--tall { aspect-ratio: 4/4.6; }

.photo-real {
  width: 100%; aspect-ratio: 16/8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photo-real img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; display: block; transition: transform 0.6s var(--ease); }
.photo-real:hover img { transform: scale(1.04); }
.photo-real--tall { aspect-ratio: 4/4.6; }

/* ===== LOGO IMG (header) ===== */
.logo-img { height: 34px; width: auto; display: block; }

/* ===== GALLERY ===== */
.section-tight { padding: 70px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3.6;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(10,14,18,0.72);
  color: #fff;
  font-size: 12.5px; font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}


/* ===== SECTIONS ===== */
.section { padding: 110px 0; }
.section-dark { background: var(--ink); color: #fff; }

.section-head { max-width: 560px; margin-bottom: 56px; }
.section-head--center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head--light h2 { color: #fff; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; color: var(--ink); }
.section-sub { font-size: 15.5px; color: var(--gray-600); margin-top: 14px; }
.section-dark .section-sub { color: #9CA8AE; }

/* ===== BENTO SERVICES ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 18px;
}
.bento-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: #fff; }
.bento-card--accent { background: var(--lime-tint); }
.bento-card h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.bento-card p { font-size: 13.8px; color: var(--gray-600); }

.bento-icon {
  width: 56px; height: 56px;
  background: #fff;
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease);
}
.bento-card:hover .bento-icon { transform: scale(1.08) rotate(-4deg); }
.bento-icon--dark { background: var(--ink); color: var(--lime); }

.bento-icon--blue  { background: linear-gradient(135deg, #4D7BFF, #1A3FD6); color: #fff; box-shadow: 0 10px 22px -10px rgba(47,91,255,0.65); }
.bento-icon--pink   { background: linear-gradient(135deg, #FF7AB8, #E13D8A); color: #fff; box-shadow: 0 10px 22px -10px rgba(225,61,138,0.55); }
.bento-icon--green  { background: linear-gradient(135deg, #5FD897, #1FA868); color: #fff; box-shadow: 0 10px 22px -10px rgba(31,168,104,0.55); }
.bento-icon--teal   { background: linear-gradient(135deg, #4FD3D3, #14938F); color: #fff; box-shadow: 0 10px 22px -10px rgba(20,147,143,0.55); }
.bento-icon--amber  { background: linear-gradient(135deg, #FFC267, #F08A1F); color: #fff; box-shadow: 0 10px 22px -10px rgba(240,138,31,0.55); }
.bento-icon--indigo { background: linear-gradient(135deg, #8C7DFF, #5A3FD6); color: #fff; box-shadow: 0 10px 22px -10px rgba(90,63,214,0.55); }
.bento-icon--red    { background: linear-gradient(135deg, #FF6B6B, #D62828); color: #fff; box-shadow: 0 10px 22px -10px rgba(214,40,40,0.55); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; }
.about-media { position: relative; }

.about-badge {
  position: absolute; left: -18px; bottom: -18px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: baseline; gap: 2px; flex-wrap: wrap;
}
.about-badge-num { font-size: 28px; font-weight: 700; color: var(--ink); }
.about-badge-plus { font-size: 20px; font-weight: 700; color: var(--lime-deep); }
.about-badge-label { width: 100%; font-size: 12px; color: var(--gray-600); margin-top: 2px; }

.about-copy h2 { font-size: clamp(28px,3.6vw,40px); font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 20px; }
.about-text { font-size: 15.5px; color: var(--gray-600); margin-bottom: 16px; }
.about-text--muted em { font-style: normal; color: var(--ink); font-weight: 600; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin: 26px 0 32px; }
.check-list li { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 600; color: var(--ink); }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--lime); color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 700; color: var(--ink); padding-bottom: 2px; border-bottom: 2px solid var(--ink); }
.link-arrow svg { transition: transform 0.25s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ===== STATS BAND ===== */
.stats-band { background: var(--gray-100); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; gap: 20px; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-num, .stat-text { font-size: 34px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.stat-suffix { display: none; }
.stat p { font-size: 13px; color: var(--gray-600); font-weight: 600; }

/* ===== FONASA ===== */
.fonasa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.fonasa-card {
  background: var(--ink-soft);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 34px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.fonasa-card:hover { transform: translateY(-5px); border-color: var(--lime); }
.fonasa-icon { width: 54px; height: 54px; background: var(--lime); color: #fff; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.fonasa-card h3 { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.fonasa-card p { font-size: 14.5px; color: #9CA8AE; margin-bottom: 20px; }
.tag-pill { display: inline-block; background: rgba(47,91,255,0.16); color: #9DB2FF; font-size: 11.5px; font-weight: 800; letter-spacing: 0.04em; padding: 7px 16px; border-radius: var(--radius-pill); }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.testi-card { background: var(--gray-100); border-radius: var(--radius-md); padding: 30px 26px; transition: transform 0.3s var(--ease); }
.testi-card:hover { transform: translateY(-5px); }
.testi-stars { color: #F5A623; font-size: 14px; letter-spacing: 2px; display: block; margin-bottom: 16px; }
.testi-card p { font-size: 14.5px; color: var(--gray-900); margin-bottom: 22px; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; }
.testi-avatar--a { background: linear-gradient(135deg, var(--lime), var(--ink)); }
.testi-avatar--b { background: linear-gradient(135deg, #F5A623, var(--lime)); }
.testi-avatar--c { background: linear-gradient(135deg, var(--ink), #4A5560); }
.testi-author strong { display: block; font-size: 13.5px; color: var(--ink); }
.testi-author span { font-size: 12px; color: var(--gray-600); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  transition: background 0.25s;
}
.faq-item[open] { background: var(--lime-tint); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 400; color: var(--ink);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--lime); color: #fff; }
.faq-item p { font-size: 14.5px; color: var(--gray-600); margin-top: 14px; line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--ink); padding: 90px 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,91,255,0.18), transparent 70%);
  top: -200px; left: 50%; transform: translateX(-50%);
}
.cta-inner { position: relative; text-align: center; max-width: 560px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(28px,4vw,42px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.01em; }
.cta-inner p { font-size: 16px; color: #9CA8AE; margin-bottom: 32px; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-row { display: flex; gap: 16px; background: var(--gray-100); border-radius: var(--radius-md); padding: 20px; align-items: flex-start; transition: background 0.25s; }
.contact-row:hover { background: var(--lime-tint); }
.contact-icon { width: 42px; height: 42px; background: #fff; color: var(--ink); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row h3 { font-size: 11.5px; font-weight: 800; color: var(--lime-deep); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 5px; }
.contact-row p, .contact-row address { font-size: 14.5px; color: var(--ink); line-height: 1.6; }
.contact-row a:hover { text-decoration: underline; }

.map-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 320px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: #9CA8AE; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col p { font-size: 13.5px; line-height: 1.7; margin-top: 8px; }
.footer-col h4 { font-family: 'Sora', sans-serif; font-size: 14px; color: #fff; margin-bottom: 6px; }
.footer-col a, .footer-col span { font-size: 13.5px; transition: color 0.2s; }
.footer-col a:hover { color: var(--lime); }
.footer-social { margin-top: 16px; }
.footer-social a { display: inline-flex; align-items: center; gap: 8px; color: #9CA8AE; font-size: 13.5px; text-decoration: none; transition: color 0.2s var(--ease); }
.footer-social a:hover { color: #fff; }
.footer-social svg { flex-shrink: 0; }

.footer-bottom { padding: 22px 0; text-align: center; }
.footer-bottom p { font-size: 12.5px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-links, .nav .btn-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--gray-300);
    padding: 16px 24px 20px; gap: 8px; z-index: 199;
  }
  .nav-toggle { display: flex; }
  .hero { min-height: 100svh; padding: 110px 0 50px; }
  .section { padding: 64px 0; }
  .bento { grid-template-columns: 1fr; }
  .about-badge { position: static; margin-top: -40px; margin-left: 16px; width: fit-content; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Mobile-first rethink, not a shrunk desktop */
  .hero-inner { max-width: none; }
  .hero-desc { margin: 0 0 30px; }
  .hero-actions { justify-content: stretch; flex-direction: column; }
  .hero-actions .btn-cta, .hero-actions .btn-outline-x { width: 100%; }
  .hero-trustbar { width: 100%; justify-content: space-between; margin: 0; flex-wrap: wrap; row-gap: 10px; }

  .section-head--center { text-align: left; }

  /* Testimonials become a native horizontal scroll-snap rail on phone */
  .testi-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    margin: 0 -24px;
    padding: 4px 24px 10px;
    -webkit-overflow-scrolling: touch;
  }
  .testi-card { flex: 0 0 82%; scroll-snap-align: start; }

  .cta-inner { text-align: left; }
  .stats-grid { text-align: left; gap: 10px; }
  .stat { align-items: flex-start; }
  .stat-num, .stat-text { font-size: 26px; }
  .stat p { font-size: 11.5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
