/* =========================================================================
   Life Care Systems — Design System Stylesheet
   Brand: teal-cyan → deep blue, drawn from the "ai+" care logo.
   Fonts: Sora (display) + Plus Jakarta Sans (body)
   ========================================================================= */

/* ---- 1. Design tokens ---------------------------------------------------- */
:root {
  /* Brand */
  --cyan:        #17B0C4;   /* primary */
  --cyan-600:    #0E92A4;   /* primary, darker (text on light) */
  --cyan-300:    #8FD9E3;
  --cyan-100:    #D6F0F4;
  --cyan-050:    #EAF8FA;
  --blue:        #2E63A8;   /* secondary accent */
  --blue-800:    #173F73;

  /* Ink & neutrals */
  --ink:         #0C333B;   /* headings, dark surfaces */
  --ink-body:    #334247;   /* strong body text */
  --slate:       #5C6E73;   /* muted body text */
  --slate-2:     #7A8A8E;   /* captions */
  --slate-3:     #9AAAAE;

  /* Surfaces */
  --bg:          #FFFFFF;
  --bg-soft:     #F1F9FA;   /* alternating section band */
  --bg-input:    #FBFDFD;
  --line:        #E9F1F2;   /* hairline borders */
  --line-2:      #DDEAEC;   /* input borders */

  /* Status */
  --success:     #0E9A5A;
  --success-bg:  #E4F7EE;
  --warn:        #B07A15;
  --warn-bg:     #FFF6E9;
  --warn-line:   #FCE3B8;
  --star:        #F5A623;

  /* Effects */
  --grad:        linear-gradient(135deg, var(--cyan), var(--blue));
  --grad-soft:   linear-gradient(135deg, var(--cyan-050), var(--cyan-100));
  --shadow-sm:   0 8px 20px -8px rgba(23,176,196,.7);
  --shadow-md:   0 20px 40px -18px rgba(12,51,59,.35);
  --shadow-lg:   0 40px 80px -40px rgba(12,51,59,.40);

  /* Radii */
  --r-sm: 11px;
  --r:    14px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 28px;

  /* Type */
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --pad:  28px;
  --gutter: 56px;
  --section-gap: 96px;
}

/* ---- 2. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* ---- 3. Typography ------------------------------------------------------- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); letter-spacing: -0.03em; line-height: 1.1; }
.lcs2-display   { font-size: clamp(38px, 5vw, 56px); font-weight: 800; line-height: 1.04; letter-spacing: -0.035em; }
.lcs2-h2        { font-size: clamp(30px, 3.4vw, 40px); font-weight: 800; }
.lcs2-h3        { font-size: 19px; font-weight: 700; }
.lcs2-lead      { font-size: 18.5px; line-height: 1.6; color: #4C5F64; }
.lcs2-eyebrow   { font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan-600); }
.lcs2-text-grad { background: linear-gradient(120deg, var(--cyan), var(--blue)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lcs2-muted     { color: var(--slate); }

/* ---- 4. Layout ----------------------------------------------------------- */
.lcs2-container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.lcs2-section   { padding-top: var(--section-gap); }
.lcs2-section--band { background: var(--bg-soft); padding-block: 88px; margin-top: var(--section-gap); }
.lcs2-section-head { max-width: 640px; }
.lcs2-section-head--center { margin-inline: auto; text-align: center; }
.lcs2-section-head .lcs2-h2 { margin: 12px 0 14px; }
.lcs2-section-head p { font-size: 17px; color: var(--slate); line-height: 1.6; }

.lcs2-grid { display: grid; gap: 20px; }
.lcs2-grid--2 { grid-template-columns: repeat(2, 1fr); }
.lcs2-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lcs2-grid--4 { grid-template-columns: repeat(4, 1fr); }
.lcs2-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); align-items: center; }
.lcs2-split--hero { grid-template-columns: 1.02fr 1fr; }

/* ---- 5. Buttons ---------------------------------------------------------- */
.lcs2-btn { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px;
       padding: 16px 28px; border-radius: var(--r); border: none; cursor: pointer; transition: filter .2s, transform .2s, box-shadow .2s; }
.lcs2-btn--primary { background: var(--grad); color: #fff; box-shadow: 0 16px 34px -14px rgba(23,176,196,.85); }
.lcs2-btn--primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.lcs2-btn--ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line-2); font-weight: 600; }
.lcs2-btn--ghost:hover { border-color: var(--cyan); color: var(--cyan-600); }
.lcs2-btn--light { background: #fff; color: var(--ink); }
.lcs2-btn--dark  { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.22); font-weight: 600; }
.lcs2-btn--pill  { border-radius: 999px; padding: 11px 20px; font-size: 14.5px; }
.lcs2-btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Chip / badge */
.lcs2-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--cyan-050); color: var(--cyan-600);
        font-weight: 600; font-size: 13.5px; padding: 7px 14px; border-radius: 999px; border: 1px solid #CDEEF2; }

/* ---- 6. Header / nav ----------------------------------------------------- */
.lcs2-site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.82);
               backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.lcs2-nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 16px; }
.lcs2-brand { display: flex; align-items: center; gap: 11px; }
.lcs2-brand img { width: 48px; height: 48px; }
.lcs2-brand span { font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.lcs2-brand .lcs2-accent { color: var(--cyan); }
.lcs2-nav-links { display: flex; align-items: center; gap: 30px; }
.lcs2-nav-links a { color: var(--slate); font-weight: 500; font-size: 15px; }
.lcs2-nav-links a:hover, .lcs2-nav-links a.lcs2-is-active { color: var(--ink); font-weight: 600; }
.lcs2-nav-actions { display: flex; align-items: center; gap: 12px; }
.lcs2-nav-login { font-weight: 600; font-size: 14.5px; padding: 10px 12px; }
.lcs2-nav-toggle { display: none; background: none; border: none; cursor: pointer; }

/* ---- 7. Hero ------------------------------------------------------------- */
.lcs2-hero { position: relative; padding-top: 76px; padding-bottom: 40px; }
.lcs2-hero .lcs2-display { margin-top: 20px; }
.lcs2-hero .lcs2-lead { margin-top: 22px; max-width: 520px; }
.lcs2-hero .lcs2-btn-row { margin-top: 32px; }
.lcs2-glow { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.lcs2-glow--cyan { background: radial-gradient(circle, rgba(23,176,196,.16), transparent 62%); }
.lcs2-glow--blue { background: radial-gradient(circle, rgba(46,99,168,.12), transparent 62%); }
.lcs2-hero > .lcs2-split { position: relative; z-index: 1; }

/* Avatar stack (social proof) */
.lcs2-proof { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
.lcs2-avatars { display: flex; }
.lcs2-avatar { width: 40px; height: 40px; border-radius: 50%; color: #fff; font-weight: 700; font-size: 13px;
          display: flex; align-items: center; justify-content: center; border: 2.5px solid #fff; }
.lcs2-avatar + .lcs2-avatar { margin-left: -12px; }
.lcs2-avatar--1 { background: linear-gradient(135deg, var(--cyan), var(--cyan-600)); }
.lcs2-avatar--2 { background: linear-gradient(135deg, var(--blue), var(--blue-800)); }
.lcs2-avatar--3 { background: linear-gradient(135deg, #22A7B8, #17808f); }
.lcs2-avatar--more { background: var(--ink); font-size: 12px; }
.lcs2-proof-text { font-size: 14.5px; color: var(--slate); font-weight: 500; }
.lcs2-proof-text strong { color: var(--ink); }

/* ---- 8. Cards ------------------------------------------------------------ */
.lcs2-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px;
        transition: transform .3s, box-shadow .3s, border-color .3s; }
.lcs2-card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #CDEEF2; }
.lcs2-card .lcs2-h3 { margin: 18px 0 8px; }
.lcs2-card p { font-size: 14.5px; color: var(--slate); line-height: 1.6; }
.lcs2-icon-tile { width: 52px; height: 52px; border-radius: var(--r); background: var(--grad-soft);
             display: flex; align-items: center; justify-content: center; color: var(--cyan-600); }
.lcs2-icon-tile--brand { background: linear-gradient(135deg, var(--cyan), var(--cyan-600)); color: #fff; }
.lcs2-icon-tile--sm { width: 46px; height: 46px; border-radius: 12px; }

/* Module cards */
.lcs2-module { background: #fff; border: 1px solid #E5EFF0; border-radius: var(--r-md); padding: 20px;
          transition: transform .25s, box-shadow .25s; }
.lcs2-module:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.lcs2-module h4 { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; margin: 12px 0 5px; }
.lcs2-module p { font-size: 13px; color: #6A7B80; line-height: 1.5; }
.lcs2-module .lcs2-icon-tile, .lcs2-module svg { color: var(--cyan-600); }
.lcs2-pill-item { display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid #E5EFF0;
             border-radius: var(--r); padding: 16px; font-weight: 600; font-size: 14px; }
.lcs2-pill-item svg { color: var(--cyan-600); flex: none; }

/* Feature list (checklist) */
.lcs2-check-list { display: flex; flex-direction: column; gap: 12px; }
.lcs2-check-list li { display: flex; gap: 11px; align-items: flex-start; list-style: none; font-size: 15px; color: var(--ink-body); }
.lcs2-check-list li::before { content: "✓"; color: var(--cyan); font-weight: 800; font-size: 16px; line-height: 1.4; }

/* Feature row (alternating) */
.lcs2-feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); align-items: center; }
.lcs2-feature-row .lcs2-h2 { font-size: clamp(26px, 3vw, 34px); margin: 12px 0 14px; line-height: 1.14; }
.lcs2-feature-row p.lcs2-desc { font-size: 16px; color: var(--slate); line-height: 1.62; margin-bottom: 22px; }
.lcs2-feature-row--reverse .lcs2-feature-copy { order: 2; }
.lcs2-feature-row--reverse .lcs2-feature-visual { order: 1; }

/* Icon + text feature (why section) */
.lcs2-feature { display: flex; gap: 16px; }
.lcs2-feature h4 { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin: 2px 0 4px; }
.lcs2-feature p { font-size: 14.5px; color: var(--slate); line-height: 1.55; }
.lcs2-feature-list { display: flex; flex-direction: column; gap: 18px; }

/* ---- 9. Stats band (glass trust bar) --------------------------------------- */
.lcs2-stats-band { background: var(--ink);
         background-image: radial-gradient(circle at 12% 20%, rgba(23,176,196,.25), transparent 45%),
                           radial-gradient(circle at 88% 90%, rgba(46,99,168,.28), transparent 42%);
         padding: 56px 0; }
.lcs2-stats { max-width: 1000px; margin: 0 auto; display: flex;
         background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
         border-radius: 18px; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
         padding: 28px 12px; box-shadow: 0 16px 40px -18px rgba(8,40,48,.5); }
.lcs2-stat { flex: 1; text-align: center; }
.lcs2-stat + .lcs2-stat { border-left: 1px solid rgba(255,255,255,.25); }
.lcs2-stat__icon { display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.lcs2-stat b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 34px; color: #fff; letter-spacing: -0.03em; }
.lcs2-stat span { font-size: 13px; color: #c9dde3; margin-top: 4px; display: block; }

.lcs2-overlap-wrap { position: relative; max-width: 700px; margin: 0 auto; }
.lcs2-overlap-phone { position: absolute; right: -40px; bottom: -50px; width: 180px; z-index: 2; }
@media (max-width: 640px) {
  .lcs2-overlap-wrap { max-width: 100%; }
  .lcs2-overlap-phone { position: static; width: 160px; margin: 20px auto 0; right: auto; bottom: auto; }
}

/* ---- 10. Panels (dark surfaces) ------------------------------------------ */
.lcs2-panel-dark { background: var(--ink); border-radius: var(--r-xl); color: #fff; position: relative; overflow: hidden; }
.lcs2-panel-dark--cta { padding: 64px 40px; text-align: center;
  background-image: radial-gradient(circle at 20% 10%, rgba(23,176,196,.28), transparent 45%),
                    radial-gradient(circle at 82% 92%, rgba(46,99,168,.30), transparent 45%); }
.lcs2-panel-dark--cta .lcs2-h2 { color: #fff; max-width: 680px; margin-inline: auto; font-size: clamp(32px,4vw,44px); }
.lcs2-panel-dark--cta p { font-size: 17px; color: #9FC3C9; line-height: 1.6; margin: 18px auto 32px; max-width: 560px; }

/* ---- 11. Testimonials ---------------------------------------------------- */
.lcs2-quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; }
.lcs2-quote .lcs2-stars { color: var(--star); font-size: 15px; letter-spacing: 2px; }
.lcs2-quote blockquote { margin-top: 16px; font-size: 15px; line-height: 1.62; color: var(--ink-body); }
.lcs2-quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.lcs2-quote .lcs2-who b { display: block; font-weight: 700; font-size: 14.5px; }
.lcs2-quote .lcs2-who span { font-size: 12.5px; color: var(--slate-2); }

/* ---- 12. App CTA --------------------------------------------------------- */
.lcs2-app-cta { background: var(--grad); border-radius: var(--r-xl); padding: 56px; display: grid;
           grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; overflow: hidden; position: relative; }
.lcs2-app-cta .lcs2-eyebrow { color: rgba(255,255,255,.8); }
.lcs2-app-cta .lcs2-h2 { color: #fff; font-size: clamp(28px,3.2vw,36px); margin: 12px 0 14px; }
.lcs2-app-cta p { font-size: 16.5px; color: rgba(255,255,255,.9); line-height: 1.6; margin-bottom: 28px; max-width: 440px; }
.lcs2-store-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.lcs2-store-btn { display: flex; align-items: center; gap: 11px; padding: 11px 22px; border-radius: var(--r); color: #fff; }
.lcs2-store-btn--ios { background: var(--ink); }
.lcs2-store-btn--play { background: rgba(12,51,59,.28); border: 1px solid rgba(255,255,255,.35); }
.lcs2-store-btn .lcs2-lines { display: flex; flex-direction: column; line-height: 1.12; text-align: left; }
.lcs2-store-btn .lcs2-lines .lcs2-small { font-size: 10px; opacity: .82; font-weight: 500; }
.lcs2-store-btn .lcs2-lines .lcs2-big { font-size: 16px; font-weight: 700; }

/* ---- 13. FAQ ------------------------------------------------------------- */
.lcs2-faq { display: flex; flex-direction: column; gap: 12px; }
.lcs2-faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.lcs2-faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 22px; cursor: pointer;
         display: flex; justify-content: space-between; align-items: center; gap: 16px;
         font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--ink); }
.lcs2-faq-q .lcs2-plus { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--cyan-050);
               color: var(--cyan-600); display: flex; align-items: center; justify-content: center; font-size: 16px;
               transition: transform .25s; }
.lcs2-faq-item[open] .lcs2-faq-q .lcs2-plus { transform: rotate(45deg); }
.lcs2-faq-a { padding: 0 22px 20px; font-size: 15px; color: var(--slate); line-height: 1.62; }
/* native <details> hides marker */
.lcs2-faq-item summary { list-style: none; }
.lcs2-faq-item summary::-webkit-details-marker { display: none; }

/* ---- 14. Contact + form -------------------------------------------------- */
.lcs2-contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.lcs2-contact-item { display: flex; gap: 14px; align-items: center; }
.lcs2-contact-item .lcs2-icon-tile { width: 44px; height: 44px; border-radius: 12px; background: var(--cyan-050); }
.lcs2-contact-item .lcs2-label { font-size: 12.5px; color: var(--slate-2); font-weight: 600; }
.lcs2-contact-item .lcs2-value { font-weight: 700; font-size: 15.5px; }
.lcs2-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-md); }
.lcs2-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lcs2-field { display: block; }
.lcs2-field.lcs2-col-2 { grid-column: span 2; }
.lcs2-field span { font-size: 13px; font-weight: 600; color: var(--ink-body); }
.lcs2-field input, .lcs2-field select, .lcs2-field textarea { width: 100%; margin-top: 6px; padding: 12px 14px;
  border: 1px solid var(--line-2); border-radius: var(--r-sm); font-size: 14.5px; background: var(--bg-input); color: var(--ink-body); }
.lcs2-field input:focus, .lcs2-field select:focus, .lcs2-field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(23,176,196,.15); }
.lcs2-field textarea { resize: vertical; }
.lcs2-form-note { font-size: 12px; color: #8A9A9E; text-align: center; margin-top: 14px; }
.lcs2-btn--block { width: 100%; justify-content: center; }

/* ---- 15. Footer ---------------------------------------------------------- */
.lcs2-site-footer { margin-top: var(--section-gap); background: var(--ink); color: #9FC3C9; padding: 56px var(--pad) 32px; }
.lcs2-footer-grid { max-width: var(--maxw); margin-inline: auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.lcs2-footer-brand { display: flex; align-items: center; gap: 10px; }
.lcs2-footer-brand img { width: 34px; height: 34px; border-radius: 9px; }
.lcs2-footer-brand span { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: #fff; }
.lcs2-site-footer p { font-size: 14px; line-height: 1.6; margin-top: 16px; max-width: 320px; }
.lcs2-site-footer .lcs2-addr { font-size: 13px; color: #7FA9B0; }
.lcs2-footer-col h5 { font-family: var(--font-head); color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.lcs2-footer-col nav { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.lcs2-footer-col a:hover { color: #fff; }
.lcs2-footer-bottom { max-width: var(--maxw); margin: 36px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.10); font-size: 13px; color: #6F969D; }

/* ---- 16. Product mockups (decorative UI) --------------------------------- */
.lcs2-mock { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
        box-shadow: var(--shadow-lg); overflow: hidden; }
.lcs2-mock__bar { display: flex; align-items: center; gap: 8px; padding: 14px 16px; border-bottom: 1px solid #EEF4F5; background: #FBFDFD; }
.lcs2-mock__dot { width: 11px; height: 11px; border-radius: 50%; }
.lcs2-mock__url { margin-left: 10px; font-size: 12px; color: var(--slate-3); font-weight: 600; }
.lcs2-mock__head { padding: 16px 18px; border-bottom: 1px solid #EEF4F5; display: flex; justify-content: space-between; align-items: center; }
.lcs2-mock__title { font-family: var(--font-head); font-weight: 700; font-size: 14px; }
.lcs2-tag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.lcs2-tag--cyan { color: var(--cyan-600); background: var(--cyan-050); }
.lcs2-tag--green { color: var(--success); background: var(--success-bg); }
.lcs2-tag--muted { color: var(--slate); background: #EEF4F5; }
.lcs2-mini-stat { background: var(--bg-soft); border-radius: 12px; padding: 12px; }
.lcs2-mini-stat .lcs2-k { font-size: 10.5px; color: var(--slate); font-weight: 600; }
.lcs2-mini-stat .lcs2-v { font-family: var(--font-head); font-weight: 700; font-size: 22px; margin-top: 2px; }
.lcs2-bars { display: flex; align-items: flex-end; gap: 8px; }
.lcs2-bars i { flex: 1; border-radius: 6px 6px 0 0; display: block; }
.lcs2-float-card { position: absolute; background: #fff; border: 1px solid #EEF4F5; border-radius: var(--r);
              padding: 12px 15px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 11px;
              animation: float 5s ease-in-out infinite; }

/* Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].lcs2-is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } .lcs2-float-card { animation: none; } }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---- 17. Responsive ------------------------------------------------------ */
@media (max-width: 980px) {
  .lcs2-split, .lcs2-split--hero, .lcs2-feature-row, .lcs2-contact-grid, .lcs2-app-cta { grid-template-columns: 1fr; }
  .lcs2-feature-row--reverse .lcs2-feature-copy, .lcs2-feature-row--reverse .lcs2-feature-visual { order: 0; }
  .lcs2-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .lcs2-stats { flex-wrap: wrap; gap: 20px 0; padding: 24px 16px; }
  .lcs2-stat { flex: 0 0 50%; }
  .lcs2-stat + .lcs2-stat { border-left: none; }
  .lcs2-stat:nth-child(2n+1) { border-right: 1px solid rgba(255,255,255,.25); }
  .lcs2-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  :root { --section-gap: 64px; --gutter: 36px; }
  .lcs2-nav-links { display: none; }
  .lcs2-nav-links.lcs2-is-open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 12px var(--pad) 18px; box-shadow: var(--shadow-md);
  }
  .lcs2-nav-links.lcs2-is-open a { padding: 10px 4px; width: 100%; }
  .lcs2-nav-toggle { display: inline-flex; }
  .lcs2-nav-actions .lcs2-btn--pill { display: none; }
  .lcs2-grid--3, .lcs2-grid--2 { grid-template-columns: 1fr; }
  .lcs2-grid--4 { grid-template-columns: 1fr 1fr; }
  .lcs2-form-grid { grid-template-columns: 1fr; }
  .lcs2-field.lcs2-col-2 { grid-column: auto; }
  .lcs2-footer-grid { grid-template-columns: 1fr; }
  .lcs2-app-cta { padding: 36px 28px; }
  .lcs2-panel-dark--cta { padding: 44px 24px; }
}
