/* ============================================================
   SecretariApp — Shared Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1B2A4A;
  --navy-mid:    #2d4470;
  --navy-light:  #4a5e7a;
  --navy-pale:   #6b7a96;
  --blue:        #5C88BE;
  --green:       #D2E69C;
  --green-dark:  #3a5a12;
  --bg:          #FAF9F6;
  --bg-alt:      #f0ede6;
  --border:      #e8e6e0;
  --border-blue: rgba(91,136,190,.22);
  --aurora:      linear-gradient(135deg, #B5C6E8 0%, #E6F0BA 100%);
  --lavanda:     linear-gradient(135deg, #DFDDF2 0%, #F5F1FA 100%);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── LAYOUT ── */
.container    { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.section      { padding: 80px 0; }
.section-sm   { padding: 56px 0; }

/* ── TYPOGRAPHY ── */
.label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
h1 { font-size: 52px; font-weight: 800; line-height: 1.1; color: var(--navy); }
h2 { font-size: 36px; font-weight: 800; line-height: 1.2; color: var(--navy); margin-bottom: 12px; }
h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
h4 { font-size: 15px; font-weight: 700; color: var(--navy); }
.lead { font-size: 18px; color: var(--navy-light); line-height: 1.7; }
.text-muted { color: var(--navy-pale); font-size: 14px; }

/* ── NAVBAR ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--aurora);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; }
.logo-dot { color: var(--green); }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-light);
  text-decoration: none;
  transition: color .18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-ctas { display: flex; gap: 10px; align-items: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .18s, transform .14s;
  border: none;
  font-family: inherit;
  line-height: 1.4;
  text-align: center;
}
.btn:hover { opacity: .86; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary     { background: var(--blue);  color: #fff; }
.btn-navy        { background: var(--navy);  color: var(--green); }
.btn-ghost       { background: transparent;  color: var(--blue);  border: 1.5px solid var(--blue); }
.btn-ghost-navy  { background: transparent;  color: var(--navy);  border: 2px solid var(--navy); }
.btn-ghost-white { background: transparent;  color: #fff;         border: 2px solid rgba(255,255,255,.6); }

.btn-ghost:hover      { background: var(--blue); color: #fff; opacity: 1; }
.btn-ghost-navy:hover { background: var(--navy); color: var(--green); opacity: 1; }

.btn-sm { padding: 8px 18px;  font-size: 13px; }
.btn-lg { padding: 14px 34px; font-size: 16px; border-radius: 12px; }
.btn-xl { padding: 16px 42px; font-size: 17px; border-radius: 14px; }
.btn-full { width: 100%; display: block; }

/* ── HERO (main) ── */
.hero {
  background: var(--aurora);
  padding: 80px 48px 72px;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero h1 { max-width: 720px; margin: 0 auto 18px; }
.hero .lead { max-width: 520px; margin: 0 auto 36px; text-align: center; }
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* ── PAGE HERO (subpages) ── */
.page-hero { background: var(--aurora); padding: 64px 48px 56px; }
.page-hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.page-hero.center-hero .container { grid-template-columns: 1fr; text-align: center; max-width: 760px; }
.page-hero h1 { font-size: 44px; margin-bottom: 16px; }
.page-hero .lead { margin-bottom: 28px; }

/* ── MOCKUP ── */
.mockup-wrap { max-width: 540px; margin: 0 auto; }
.hero-mockup-col {
  display: flex;
  justify-content: center;
}
.hero-mockup-col .mockup {
  display: none;
}
.hero-dashboard-frame {
  width: min(100%, 320px);
  height: 520px;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.72);
  background: var(--navy);
  box-shadow: 0 26px 56px rgba(27,42,74,.18), 0 6px 16px rgba(27,42,74,.12);
}
.hero-dashboard-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.mockup {
  background: rgba(255,255,255,.88);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-blue);
  padding: 24px;
  box-shadow: 0 24px 48px rgba(27,42,74,.12), 0 4px 12px rgba(27,42,74,.08);
  text-align: left;
}
.mock-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.mock-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue); display: flex;
  align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.mock-title  { font-size: 15px; font-weight: 700; color: var(--navy); }
.mock-sub    { font-size: 12px; color: var(--navy-pale); margin-top: 2px; }
.mock-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 18px; }
.mock-stat   { border-radius: var(--r-md); padding: 14px 12px; text-align: center; }
.mock-stat.aurora  { background: var(--aurora); }
.mock-stat.lavanda { background: var(--lavanda); }
.mock-stat-num   { font-size: 24px; font-weight: 800; color: var(--navy); line-height: 1; }
.mock-stat-label { font-size: 11px; color: var(--navy-mid); margin-top: 4px; }
.mock-apt {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; background: #fff;
  border-radius: 10px; border: 1px solid var(--border); margin-bottom: 8px;
}
.mock-apt:last-child { margin-bottom: 0; }
.mock-dot        { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.mock-apt-name   { font-size: 13px; font-weight: 600; color: var(--navy); }
.mock-apt-time   { font-size: 11px; color: var(--navy-pale); margin-top: 2px; }
.mock-apt-badge  { margin-left: auto; font-size: 11px; padding: 3px 10px; border-radius: 12px; font-weight: 600; white-space: nowrap; }
.badge-conf { background: var(--green); color: var(--green-dark); }
.badge-pend { background: #E6EBF4; color: var(--navy-mid); }

/* Product showcase */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
.showcase-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 36px;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(27,42,74,.08);
}
.showcase-copy,
.showcase-media {
  min-width: 0;
}
.showcase-card:nth-child(even) .showcase-copy { order: 2; }
.showcase-card:nth-child(even) .showcase-media { order: 1; }
.showcase-copy h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.showcase-copy p {
  color: var(--navy-light);
  line-height: 1.7;
  margin-bottom: 18px;
}
.showcase-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.showcase-list li {
  display: flex;
  gap: 10px;
  color: var(--navy-mid);
  font-size: 14px;
}
.showcase-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.showcase-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #10203d 0%, #1B2A4A 58%, #263a63 100%);
  min-height: 280px;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(181,198,232,.25);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.demo-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: var(--navy);
}
.demo-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(230,240,186,.92);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(27,42,74,.18);
}
.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── FEATURE CARDS ── */
.feats-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.feats-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.feat-card { border-radius: 18px; padding: 28px 24px; }
.feat-card.aurora  { background: var(--aurora); }
.feat-card.lavanda { background: var(--lavanda); }
.feat-card.dark    { background: var(--navy); }
.feat-card.white   { background: #fff; border: 1px solid var(--border); }
.feat-icon      { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.65); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feat-icon svg  { width: 22px; height: 22px; }
.feat-icon-dark { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feat-title       { font-size: 16px; font-weight: 700; color: var(--navy);  margin-bottom: 8px; }
.feat-title-light { font-size: 16px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.feat-desc        { font-size: 14px; color: var(--navy-mid);  line-height: 1.6; }
.feat-desc-light  { font-size: 14px; color: #a8c4d8; line-height: 1.6; }

/* ── MODULE ROWS (funciones) ── */
.mod-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.mod-row:last-child { border-bottom: none; }
.mod-row.rev { direction: rtl; }
.mod-row.rev > * { direction: ltr; }
.mod-visual {
  border-radius: 18px;
  padding: 28px;
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
}
.mod-visual.aurora  { background: var(--aurora); }
.mod-visual.lavanda { background: var(--lavanda); }
.mod-visual.dark    { background: var(--navy); }
.mod-tag {
  display: inline-block;
  background: var(--aurora);
  color: var(--navy);
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 12px;
}
.mod-tag.dark { background: rgba(255,255,255,.12); color: var(--green); }
.mod-list { list-style: none; margin-top: 16px; }
.mod-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--navy-light);
  padding: 7px 0; border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.mod-list li:last-child { border-bottom: none; }
.mod-list .chk {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green); display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green-dark);
  font-size: 10px; font-weight: 800; margin-top: 1px;
}
.mod-list .chk-dark {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(210,230,156,.25); display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green);
  font-size: 10px; font-weight: 800; margin-top: 1px;
}

/* ── STEP CARDS ── */
.steps-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step-card { background: var(--lavanda); border-radius: 18px; padding: 28px 24px; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--green);
  font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p  { font-size: 14px; color: var(--navy-mid); line-height: 1.6; }

/* Vertical steps */
.steps-v { display: flex; flex-direction: column; gap: 0; }
.step-v {
  display: flex; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step-v:last-child { border-bottom: none; }
.step-v-num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: var(--green);
  font-size: 17px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.step-v h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-v p  { font-size: 15px; color: var(--navy-light); line-height: 1.65; }

/* ── USE CASE CARDS ── */
.usecases-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.uc-card { background: var(--lavanda); border-radius: 16px; padding: 28px 22px; }
.uc-emoji { font-size: 36px; margin-bottom: 14px; }
.uc-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.uc-card p  { font-size: 14px; color: var(--navy-mid); line-height: 1.6; }
.uc-tag {
  display: inline-block;
  background: var(--green); color: var(--green-dark);
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 10px; margin-bottom: 12px;
}

/* ── PAIN CARDS ── */
.problem-section {
  padding: 78px 0 72px;
  background: #f7f6f2;
}
.section-center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.section-center .lead {
  margin: 0 auto;
  max-width: 680px;
}
.pain-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 34px; }
.pain-card {
  min-height: 150px;
  background: #fff;
  border-radius: 12px;
  padding: 24px 18px 22px;
  border: 1px solid rgba(27,42,74,.08);
  box-shadow: 0 12px 28px rgba(27,42,74,.06);
  text-align: center;
}
.pain-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--aurora);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 8px 18px rgba(27,42,74,.08);
}
.pain-icon svg { width: 20px; height: 20px; }
.pain-card h4 { font-size: 15px; font-weight: 800; line-height: 1.35; margin-bottom: 8px; }
.pain-card p  { font-size: 13px; color: var(--navy-light); line-height: 1.55; }

/* ── PRICING ── */
.prices-wrap  { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 820px; margin: 0 auto; }
.price-card {
  background: #fff; border-radius: var(--r-xl);
  padding: 36px 32px; border: 1.5px solid var(--border);
}
.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(92,136,190,.1);
}
.price-badge {
  display: inline-block;
  background: var(--aurora); color: var(--navy);
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
}
.price-plan   { font-size: 13px; font-weight: 700; color: var(--navy-pale); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.price-amount { font-size: 44px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.price-period { font-size: 14px; color: var(--navy-pale); margin-bottom: 6px; }
.price-normal {
  margin: 4px 0 10px;
  color: var(--navy-light);
  font-size: 13px;
  font-weight: 600;
}
.price-normal strong {
  color: var(--navy);
}
.price-note {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(210,230,156,.55);
  color: var(--navy-mid);
  font-size: 12px;
  font-weight: 700;
}
.price-desc   { font-size: 15px; color: var(--navy-light); margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); line-height: 1.6; }
.price-ul     { list-style: none; margin-bottom: 32px; }
.price-ul li  { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--navy-mid); padding: 8px 0; border-bottom: 1px solid var(--border); line-height: 1.5; }
.price-ul li:last-child { border-bottom: none; }
.p-chk {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green); display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green-dark);
  font-size: 10px; font-weight: 800; margin-top: 1px;
}

/* Comparison table */
.cmp-table { width: 100%; border-collapse: collapse; margin-top: 40px; font-size: 14px; }
.cmp-table thead th {
  padding: 14px 20px; font-weight: 700; color: var(--navy);
  border-bottom: 2px solid var(--border); background: var(--bg-alt);
}
.cmp-table thead th:first-child { text-align: left; border-radius: var(--r-sm) 0 0 0; }
.cmp-table thead th:last-child  { border-radius: 0 var(--r-sm) 0 0; }
.cmp-table tbody td {
  padding: 13px 20px; border-bottom: 1px solid var(--border);
  color: var(--navy-mid); text-align: center;
}
.cmp-table tbody td:first-child { text-align: left; font-weight: 500; color: var(--navy); }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:hover td { background: var(--bg-alt); }
.cmp-y { color: var(--green-dark); font-weight: 800; font-size: 15px; }
.cmp-n { color: #bbb; }

/* Legal page */
.legal-wrap {
  max-width: 920px;
}
.legal-updated {
  color: var(--navy-pale);
  font-size: 14px;
  margin-bottom: 18px;
}
.legal-card {
  background: #fff;
  border: 1px solid var(--border-blue);
  border-radius: var(--r-lg);
  padding: 30px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(27,42,74,.06);
}
.legal-card h2 {
  font-size: 26px;
  margin-bottom: 18px;
}
.legal-card h3 {
  margin: 20px 0 6px;
}
.legal-card p {
  color: var(--navy-light);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 10px;
}
.legal-card a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
details { border-bottom: 1px solid var(--border); }
details:first-child { border-top: 1px solid var(--border); }
summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 4px; font-size: 16px; font-weight: 600; color: var(--navy);
  cursor: pointer; list-style: none; gap: 16px;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--blue); transition: transform .22s; }
details[open] .faq-icon { transform: rotate(180deg); }
.faq-body { padding: 2px 4px 22px; font-size: 15px; color: var(--navy-light); line-height: 1.75; }
.faq-body p + p { margin-top: 10px; }

/* ── FORM ── */
.form-card {
  background: #fff; border-radius: var(--r-xl);
  padding: 44px 48px; border: 1px solid var(--border);
  max-width: 680px; margin: 0 auto;
}
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: 15px; font-family: inherit; color: var(--navy);
  background: var(--bg); transition: border-color .18s; outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 13px; color: var(--navy-pale); margin-top: 6px; }

/* ── CTA SECTION ── */
.cta-section { background: var(--aurora); padding: 80px 48px; text-align: center; }
.cta-section h2 { margin-bottom: 14px; }
.cta-section .lead { margin: 0 auto 36px; text-align: center; }
.cta-note { font-size: 13px; color: var(--navy-mid); margin-top: 16px; }

/* ── BG VARIANTS ── */
.bg-alt    { background: var(--bg-alt); }
.bg-lavanda { background: linear-gradient(135deg, #DFDDF2 0%, #F5F1FA 100%); }
.bg-navy   { background: var(--navy); }

/* ── DIVIDER ── */
hr.div { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 56px 48px 32px; }
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-logo     { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.footer-logo span{ color: var(--blue); }
.footer-tagline  { font-size: 13px; color: #7a94b8; line-height: 1.6; max-width: 230px; }
.footer-col h5   { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-col a    { display: block; font-size: 14px; color: #7a94b8; text-decoration: none; margin-bottom: 9px; transition: color .18s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px; color: #4a6080;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* ── MOBILE NAV ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(27,42,74,.12);
  padding: 4px 24px 24px;
  z-index: 1000;
}
.nav-mobile.open { display: block; }
.nav-mobile > a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile > a:hover { color: var(--blue); }
.nav-mobile > a.active { color: var(--blue); font-weight: 700; }
.nav-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .nav           { padding: 14px 20px; }
  .nav-links     { display: none; }
  .nav-ctas      { display: none; }
  .nav-burger    { display: flex; }
  .hero          { padding: 52px 20px 44px; }
  .page-hero     { padding: 44px 20px 40px; }
  .page-hero .container { grid-template-columns: 1fr; }
  .container     { padding: 0 20px; }
  .section       { padding: 56px 0; }
  .feats-3       { grid-template-columns: 1fr; }
  .feats-2       { grid-template-columns: 1fr; }
  .showcase-card { grid-template-columns: 1fr; }
  .showcase-card:nth-child(even) .showcase-copy,
  .showcase-card:nth-child(even) .showcase-media { order: initial; }
  .steps-3       { grid-template-columns: 1fr; }
  .usecases-3    { grid-template-columns: 1fr; }
  .prices-wrap   { grid-template-columns: 1fr; max-width: 420px; }
  .pain-grid     { grid-template-columns: repeat(2,1fr); }
  .mod-row       { grid-template-columns: 1fr; gap: 28px; }
  .mod-row.rev   { direction: ltr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .cta-section   { padding: 52px 20px; }
  .form-card     { padding: 28px 20px; }
  .form-2col     { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  h1 { font-size: 30px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }
  .prices-wrap  { max-width: none; }
  .showcase-card { padding: 18px; }
  .showcase-media { min-height: 220px; }
  .problem-section { padding: 56px 0 52px; }
  .pain-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .page-hero .container { grid-template-columns: 1fr; }
}
