/* ==========================================================================
   Flow My Data — site.css
   Shared styles for all pages. Loaded by includes/header.php.
   Brand system shared with Helper Agent (identical tokens); layout follows the
   Flow My Data homepage design handoff (full-bleed sections, desktop-first).
   ========================================================================== */

:root {
  --indigo: #5157DD;
  --indigo-dark: #4046C8;
  --lavender: #EEF0FB;
  --lavender-2: #ECEDF6;
  --ink: #23243A;
  --slate: #3A3B4E;      /* headline gray */
  --body: #4C4E63;
  --body-2: #5A5C72;
  --muted: #7A7C93;
  --muted-2: #6B6D85;
  --faint: #9C9DB0;
  --line: #ECEDF5;
  --line-2: #D9DCF2;
  --dashed: #C6C9E8;
  --hero-bg: #F1F1F9;
  --green: #8DC63F;
  --green-dark: #7CB332;
  --green-light: #BCE380;
  --green-pale: #F2F9E4;
  --chat-gray: #F1F2F8;
  --gold: #F2B01E;
  --shadow-card: 0 14px 36px rgba(35,36,58,.10);
  --shadow-drop: 0 18px 44px rgba(35,36,58,.14);
  --shadow-lg: 0 24px 60px rgba(35,36,58,.10);
  --shadow-chat: 0 24px 60px rgba(20,21,40,.30);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ---- Base ---- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--body); background: #fff; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); margin: 0; }
p { margin: 0; }
a { color: var(--indigo); }
a:hover { color: var(--indigo-dark); }
img { max-width: 100%; }
strong { color: var(--ink); }

/* Section shell: full-bleed background, content capped at 1220px with an 80px min gutter */
.sec { padding: 104px max(80px, calc((100% - 1220px) / 2)); }
.eyebrow { margin: 0; font-family: var(--font-head); font-weight: 700; font-size: 14px; letter-spacing: 2px; color: var(--indigo); }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; text-decoration: none; font-family: var(--font-head); font-weight: 600; transition: background .15s ease, color .15s ease; }
.btn-primary { background: var(--indigo); color: #fff; padding: 13px 26px; font-size: 14px; }
.btn-primary:hover { background: var(--indigo-dark); color: #fff; }
.btn-primary.btn-sm { padding: 12px 26px; }
.btn-primary.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-hero { display: inline-flex; align-items: center; background: var(--indigo); color: #fff; border-radius: 8px; padding: 15px 32px; font-family: var(--font-head); font-weight: 600; font-size: 14px; letter-spacing: .5px; text-decoration: none; transition: background .15s ease; }
.btn-hero:hover { background: var(--indigo-dark); color: #fff; }
.btn-green { background: var(--green); color: #fff; padding: 16px 32px; font-size: 16px; }
.btn-green:hover { background: var(--green-dark); color: #fff; }

.pill-new { font-family: var(--font-head); font-weight: 700; font-size: 10px; letter-spacing: 1px; color: #fff; background: var(--green); border-radius: 999px; padding: 3px 9px; }

/* ---- Header ---- */
/* Font protection: on ported (Divi) pages the bundled Divi CSS sets font-family directly
   on a/p elements, which would bleed Open Sans onto the shared chrome. Re-assert our font
   on the actual text elements (class specificity beats Divi's bare element rules). */
.site-nav a:not(.btn), .nav-services-trigger, .services-menu-inner a,
.footer-copy, .footer-legal a, .launch-banner p, .launch-banner a { font-family: var(--font-body); }
.site-header { display: flex; align-items: center; justify-content: space-between; padding: 20px max(64px, calc((100% - 1280px) / 2)); background: #fff; border-bottom: 1px solid var(--line); position: relative; z-index: 60; }
.site-header .logo img { height: 40px; display: block; }
.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav > a:not(.btn) { font-size: 15px; font-weight: 500; color: var(--slate); text-decoration: none; }
.site-nav > a:not(.btn):hover { color: var(--indigo); }

/* Services dropdown */
.nav-services { position: relative; }
.nav-services-trigger { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 500; color: var(--slate); cursor: pointer; }
.nav-services-trigger .caret { font-size: 10px; color: var(--muted); }
.nav-services:hover .nav-services-trigger { color: var(--indigo); }
.services-menu { position: absolute; top: 100%; left: -24px; padding-top: 16px; z-index: 70; display: none; }
.nav-services.open .services-menu { display: block; }
.services-menu-inner { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-drop); padding: 10px; min-width: 250px; }
.services-menu-inner a { padding: 11px 16px; border-radius: 9px; font-size: 15px; font-weight: 500; color: var(--slate); text-decoration: none; }
.services-menu-inner a:hover { background: var(--lavender); color: var(--indigo); }
.services-menu-divider { height: 1px; background: var(--line); margin: 8px 6px; }
.services-menu-ha { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.services-menu-ha:hover { background: var(--green-pale); color: var(--ink); }

/* ---- Hero ---- */
/* Swoop is a full-section background (matches dev.flowmydata.com exactly: the
   design handoff cropped it via a right-side "cover" panel, which mangled the
   tall portrait shapes image). */
.hero { position: relative; overflow: hidden; background-color: var(--hero-bg); background-image: url('../images/bg-shapes-green.png'); background-repeat: no-repeat; background-size: 79% auto; background-position: right -66% top 58%; }
.hero-boy { position: absolute; bottom: 0; right: 14%; height: 82%; width: auto; display: block; }
.hero-inner { position: relative; padding: 96px max(80px, calc((100% - 1220px) / 2)) 88px; }
.hero-copy { max-width: 560px; }
.hero h1 { margin: 0; font-family: var(--font-head); font-weight: 700; font-size: 52px; line-height: 1.25; color: var(--slate); text-wrap: pretty; }
.hero h1 .accent { color: var(--green); }
.hero .subhead { margin: 26px 0 0; font-family: var(--font-head); font-weight: 600; font-size: 19px; color: var(--slate); }
.hero .subhead .accent { color: var(--green); }
.hero .hero-body { margin: 18px 0 0; font-size: 17px; line-height: 1.8; color: var(--body-2); text-wrap: pretty; }
.hero .btn-hero { margin-top: 32px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 44px; }
.hero-stat { background: var(--lavender-2); border-radius: 12px; padding: 28px 18px; text-align: center; }
.hero-stat .num { font-family: var(--font-head); font-weight: 700; font-size: 34px; line-height: 1; color: var(--green); }
.hero-stat .label { margin: 10px 0 0; font-size: 14px; letter-spacing: .5px; color: var(--muted-2); }

/* ---- S3 Services ---- */
.services { background: var(--lavender); }
.services-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.services h2 { margin: 16px 0 0; font-family: var(--font-head); font-weight: 800; font-size: 40px; line-height: 1.2; letter-spacing: -.5px; color: var(--ink); text-wrap: pretty; }
.services h2 span { color: var(--green); }
.services .lead { margin: 22px 0 0; font-size: 16px; line-height: 1.75; color: var(--body); text-wrap: pretty; }
.services .btn-primary { margin-top: 26px; }
.svc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.svc-col { display: flex; flex-direction: column; gap: 24px; }
.svc-col.offset { margin-top: 64px; }
.svc-card { background: #fff; border-radius: 16px; padding: 28px 26px; box-shadow: var(--shadow-card); }
.svc-card img { height: 46px; width: auto; }
.svc-card h3 { margin: 14px 0 0; font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--ink); }
.svc-card p { margin: 10px 0 0; font-size: 14px; line-height: 1.6; color: var(--body); }
.svc-card .learn { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 500; color: var(--indigo); text-decoration: none; }
.svc-card .learn:hover { color: var(--indigo-dark); }

/* ---- S4 The Problem (tab rail + panels) ---- */
.problem { background: #fff; }
.problem-grid { display: grid; grid-template-columns: 210px 1fr; gap: 64px; align-items: center; }
.ptab-rail { display: flex; flex-direction: column; gap: 22px; }
.ptab { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 18px 12px; border-radius: 14px; text-align: center; font-family: var(--font-head); font-weight: 600; font-size: 14px; cursor: pointer; border: 1px solid transparent; color: var(--muted); transition: background .2s ease, border-color .2s ease, color .2s ease; }
.ptab img { height: 52px; width: auto; }
.ptab.active { background: var(--lavender); border-color: var(--line-2); color: var(--ink); }
.ppanel { display: none; }
.ppanel.active { display: grid; grid-template-columns: 420px 1fr; gap: 56px; align-items: center; min-height: 440px; }
.ppanel .photo { width: 100%; height: 420px; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow-drop); }
.ppanel .picon { height: 46px; width: auto; }
.ppanel h3 { margin: 18px 0 0; font-family: var(--font-head); font-weight: 700; font-size: 30px; line-height: 1.35; color: var(--ink); text-wrap: pretty; }
.ppanel h3 span { color: var(--green); }
.ppanel p { margin: 18px 0 0; font-size: 16px; line-height: 1.7; color: var(--body); text-wrap: pretty; }
.ppanel p + p { margin-top: 16px; }

/* ---- S5 Meet Your Guide ---- */
.guide { background: var(--ink); padding: 96px max(80px, calc((100% - 1220px) / 2)); }
.guide-inner { max-width: 900px; }
.guide h2 { font-family: var(--font-head); font-weight: 800; font-size: 44px; letter-spacing: -.5px; color: #fff; }
.guide h2 span { color: var(--green); }
.guide p { margin: 22px 0 0; font-size: 18px; line-height: 1.75; color: rgba(255,255,255,.82); text-wrap: pretty; }

/* ---- S6 Why Choose ---- */
/* Reduced top padding (104 -> 52) so it reads as connected to the dark Guide band above. */
.why { background: #fff; padding-top: 52px; }
.why h2 { text-align: center; font-family: var(--font-head); font-weight: 800; font-size: 40px; letter-spacing: -.5px; color: var(--ink); }
.why h2 span { color: var(--green); }
.why-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; margin-top: 52px; }
.why-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.why-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.why-card img.contain { object-fit: contain; background: #fff; }
.why-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.why-card h3 { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: 19px; color: var(--ink); }
.why-card p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--body); flex: 1; }
.why-card a { font-size: 14px; font-weight: 500; color: var(--indigo); text-decoration: none; }
.why-card a:hover { color: var(--indigo-dark); }

/* ---- S8 Testimonials (carousel) ---- */
.testimonials { background: var(--lavender); }
.testimonials .eyebrow { text-align: center; }
.testimonials h2 { margin: 14px 0 0; text-align: center; font-family: var(--font-head); font-weight: 800; font-size: 44px; letter-spacing: -.5px; color: var(--ink); }
.testimonials h2 span { color: var(--green); }
.testimonials .subline { margin: 14px auto 0; max-width: 600px; text-align: center; font-size: 16px; line-height: 1.7; color: var(--muted); }
.t-card { max-width: 900px; margin: 48px auto 0; background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); padding: 56px 64px 48px; text-align: center; }
.t-stars { color: var(--gold); font-size: 40px; letter-spacing: 5px; }
.t-quote { display: none; }
.t-quote.active { display: block; }
.t-quote .quote { max-width: 660px; margin: 22px auto 0; font-size: 19px; line-height: 1.65; color: var(--ink); min-height: 95px; text-wrap: pretty; }
.t-quote .who { margin: 14px 0 0; font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.t-quote .who .name { color: var(--green); }
.t-quote .who .role { color: var(--muted); font-weight: 500; }
.t-avatars { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px; margin-top: 26px; }
.t-av { width: 108px; height: 108px; border-radius: 50%; object-fit: cover; cursor: pointer; opacity: .7; transition: all .25s ease; }
.t-av.active { transform: scale(1.18); box-shadow: 0 10px 24px rgba(81,87,221,.35); opacity: 1; }
.t-divider { height: 1px; background: var(--line); margin: 38px auto 0; max-width: 660px; }
.t-logos { max-width: 620px; width: 100%; margin: 30px auto 0; display: block; }

/* ---- S7 Helper Agent Promo ---- */
.promo { background: var(--indigo); display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.promo .eyebrow { color: var(--green-light); }
.promo-chip { display: inline-flex; align-items: center; background: #fff; border-radius: 14px; padding: 16px 24px; margin-top: 22px; }
.promo-chip img { height: 38px; display: block; }
.promo h2 { margin: 26px 0 0; font-family: var(--font-head); font-weight: 800; font-size: 44px; line-height: 1.15; letter-spacing: -.5px; color: #fff; text-wrap: pretty; }
.promo h2 span { color: var(--green-light); }
.promo-body { margin: 22px 0 0; font-size: 17px; line-height: 1.75; color: rgba(255,255,255,.88); text-wrap: pretty; }
.promo-cta { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.promo-cta .demo-link { font-size: 16px; font-weight: 500; color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.promo-cta .demo-link:hover { color: var(--green-light); }
.promo-chat { background: #fff; border-radius: 24px; box-shadow: var(--shadow-chat); overflow: hidden; }
.promo-chat-head { display: flex; align-items: center; gap: 12px; padding: 18px 22px; background: var(--ink); }
.promo-chat-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #fff; }
.promo-chat-name { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: #fff; }
.promo-chat-status { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,.75); }
.promo-chat-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.promo-chat-body { display: flex; flex-direction: column; gap: 12px; padding: 24px; }
.bubble { padding: 12px 16px; font-size: 15px; line-height: 1.5; }
.bubble.user { align-self: flex-end; max-width: 78%; background: var(--indigo); color: #fff; border-radius: 16px 16px 4px 16px; }
.bubble.agent { align-self: flex-start; max-width: 82%; background: var(--chat-gray); color: var(--ink); border-radius: 16px 16px 16px 4px; }
.promo-chat-input { display: flex; align-items: center; gap: 12px; padding: 16px 22px; border-top: 1px solid var(--line); }
.promo-chat-input .field { flex: 1; background: var(--chat-gray); border-radius: 999px; padding: 12px 18px; font-size: 14px; color: var(--faint); }
.promo-chat-input .send { width: 42px; height: 42px; border-radius: 50%; background: var(--indigo); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 17px; }

/* ---- S9 Journey Band ---- */
.journey { background: var(--lavender); padding: 96px max(80px, calc((100% - 1220px) / 2)); }
.journey-band { max-width: 1000px; margin: 0 auto; background: var(--green); border-radius: 20px; padding: 60px 64px; text-align: center; }
.journey-band h3 { margin: 0; font-family: var(--font-head); font-weight: 700; font-size: 30px; line-height: 1.35; color: #fff; text-wrap: pretty; }
.journey-band p { margin: 18px auto 0; max-width: 720px; font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.95); text-wrap: pretty; }
.journey-band .btn { margin-top: 30px; }

/* ---- Launch Banner ---- */
/* position:relative + z-index so it stacks above any Divi section divider/imagery that
   overflows its section box on wide viewports (otherwise a positioned section paints over
   this static banner and clips its top). */
.launch-banner { position: relative; z-index: 10; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 16px max(80px, calc((100% - 1220px) / 2)); background: var(--ink); }
.launch-banner .pill-new { font-size: 11px; padding: 4px 12px; }
.launch-banner p { margin: 0; font-size: 15px; color: rgba(255,255,255,.88); }
.launch-banner p strong { color: #fff; }
.launch-banner a { font-size: 15px; font-weight: 500; color: var(--green-light); text-decoration: underline; text-underline-offset: 3px; }
.launch-banner a:hover { color: #fff; }

/* ---- Footer ---- */
.site-footer { display: flex; align-items: center; justify-content: space-between; padding: 32px max(64px, calc((100% - 1280px) / 2)); background: #fff; border-top: 1px solid var(--line); }
.site-footer .logo img { height: 30px; display: block; }
.footer-meta { display: flex; align-items: center; gap: 18px; }
.footer-legal { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.footer-legal a { color: var(--indigo); text-decoration: none; }
.footer-legal .sep { color: var(--dashed); }
.footer-copy { margin: 0; font-size: 14px; color: var(--muted); }

/* ==========================================================================
   Content / service / interior pages (migrated from the WordPress site)
   ========================================================================== */
.page-hero { background: var(--lavender); padding: 76px max(80px, calc((100% - 1220px) / 2)); }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { font-family: var(--font-head); font-weight: 800; font-size: 44px; line-height: 1.15; letter-spacing: -.5px; color: var(--ink); text-wrap: pretty; }
.page-hero h1 span { color: var(--green); }
.page-hero .page-hero-copy > p { margin-top: 20px; font-size: 17px; line-height: 1.75; color: var(--body); text-wrap: pretty; }
.page-hero .btn { margin-top: 28px; }
.page-hero-img img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg); display: block; }

/* Readable single-column content band */
.prose-sec { padding: 84px max(80px, calc((100% - 900px) / 2)); }
.prose-sec.lavender { background: var(--lavender); }
.prose-sec .eyebrow { margin-bottom: 14px; }
.prose-sec h2 { font-family: var(--font-head); font-weight: 800; font-size: 32px; line-height: 1.2; letter-spacing: -.4px; color: var(--ink); text-wrap: pretty; }
.prose-sec h2 span { color: var(--green); }
.prose-sec h3 { font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--ink); margin: 34px 0 10px; }
.prose-sec > p, .prose-sec .body p { font-size: 16.5px; line-height: 1.8; color: var(--body); margin-top: 14px; text-wrap: pretty; }
.prose-sec ul { margin: 16px 0 0; padding: 0; list-style: none; }
.prose-sec li { position: relative; padding-left: 30px; margin: 10px 0; font-size: 16.5px; line-height: 1.6; color: var(--body); }
.prose-sec li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }
.prose-sec ul.plain li::before { content: "\2013"; color: var(--muted); }

/* Numbered plan steps */
.steps { display: grid; gap: 22px; margin-top: 30px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 26px; box-shadow: var(--shadow-card); }
.step .n { width: 56px; height: 56px; border-radius: 50%; background: var(--lavender); color: var(--indigo); font-family: var(--font-head); font-weight: 800; font-size: 22px; display: flex; align-items: center; justify-content: center; }
.step h4 { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--ink); margin-bottom: 6px; }
.step p { margin: 0; font-size: 15.5px; line-height: 1.7; color: var(--body); }

/* Feature / benefit / capability cards */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 34px; }
.features.two { grid-template-columns: repeat(2, 1fr); }
.features.four { grid-template-columns: repeat(4, 1fr); }
.feature { background: #fff; border-radius: 16px; padding: 26px 24px; box-shadow: var(--shadow-card); }
.feature img { height: 44px; width: auto; }
.feature h4 { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--ink); margin: 12px 0 6px; }
.feature p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--body); }

/* Dark band variant (for the white-icon feature sets) */
.sec-dark { background: var(--ink); }
.sec-dark h2, .sec-dark h3 { color: #fff; }
.sec-dark h2 span { color: var(--green); }
.sec-dark > p, .sec-dark .body p { color: rgba(255,255,255,.82); }
.sec-dark li { color: rgba(255,255,255,.82); }
.feature.on-dark { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); box-shadow: none; }
.feature.on-dark h4 { color: #fff; }
.feature.on-dark p { color: rgba(255,255,255,.78); }

/* Centered CTA at the foot of interior pages (reuses journey band) */
.page-cta { padding: 20px max(80px, calc((100% - 1220px) / 2)) 96px; background: #fff; }

/* Static review cards (testimonials page, secondary reviews) */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px 26px; box-shadow: var(--shadow-card); }
.review .stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }
.review > p { margin: 14px 0 0; font-size: 15.5px; line-height: 1.65; color: var(--ink); }
.review .who { margin-top: 16px; font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.review .who .name { color: var(--green); }
.review .who .role { color: var(--muted); font-weight: 500; }

/* Responsive fallback (design is desktop-first; this keeps it usable narrow) */

@media (max-width: 1024px) {
  .sec { padding: 72px max(28px, calc((100% - 1220px) / 2)); }
  .guide, .journey { padding: 72px max(28px, calc((100% - 1220px) / 2)); }
  .hero-inner { padding: 64px 28px 72px; }
  .hero { background-size: 150% auto; background-position: right -30% top 45%; }
  .hero-boy { right: 4%; height: 60%; opacity: .5; }
  .services-grid, .problem-grid, .promo { grid-template-columns: 1fr; gap: 44px; }
  .why-cards { grid-template-columns: 1fr; }
  .ptab-rail { flex-direction: row; }
  .ptab { flex: 1; }
  .ppanel.active { grid-template-columns: 1fr; gap: 32px; min-height: 0; }
  .ppanel .photo { height: 320px; }
  .hero h1 { font-size: 40px; }
  .promo h2, .testimonials h2, .guide h2 { font-size: 34px; }
  .services h2, .why h2 { font-size: 32px; }
  .t-card { padding: 40px 28px; }
  .page-hero { padding: 56px 28px; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero h1 { font-size: 34px; }
  .prose-sec { padding: 60px 28px; }
  .features, .features.four, .features.two { grid-template-columns: 1fr 1fr; }
  .site-header { padding: 16px 24px; }
  .site-nav { gap: 20px; flex-wrap: wrap; justify-content: flex-end; }
  .site-footer { padding: 28px 24px; }
}
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr; }
  .svc-cards { grid-template-columns: 1fr; }
  .svc-col.offset { margin-top: 0; }
  .features, .features.four, .features.two { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .step { grid-template-columns: 44px 1fr; gap: 14px; }
  .launch-banner { flex-direction: column; gap: 8px; text-align: center; }
  .site-footer, .footer-meta { flex-direction: column; gap: 12px; text-align: center; }
}
