/* ============================================================
   FramePilot — Marketing Site CSS
   Stack: plain HTML/CSS, no framework
   ============================================================ */

/* ---- Design Tokens ---------------------------------------- */
:root {
  --navy:       #1e2d5a;
  --navy-dark:  #141e3f;
  --navy-light: #2d4080;
  --gold:       #c8952a;
  --gold-light: #e8b84b;
  --gold-pale:  #fdf5e4;
  --bg:         #fafaf8;
  --bg-grey:    #f4f4f1;
  --white:      #ffffff;
  --text:       #1a1a1a;
  --text-mid:   #3d3d3d;
  --text-light: #6b7280;
  --border:     #e5e3de;
  --green:      #16a34a;
  --red:        #dc2626;

  --font-body:  'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-head:  'Sora', 'Segoe UI', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.13);

  --max-w:      1140px;
  --transition: 0.22s ease;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ---- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ---- Typography ------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.35rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-mid); line-height: 1.7; }

.lead {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 620px;
}

/* ---- Layout Helpers --------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-dark { background: #162a6e; }
.section-grey { background: var(--bg-grey); }
.section-gold { background: var(--gold-pale); }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold  { color: var(--gold); }
.text-light { color: var(--text-light); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms var(--ease-out),
              border-color 160ms var(--ease-out),
              color 160ms var(--ease-out),
              transform 160ms var(--ease-out),
              box-shadow 160ms var(--ease-out);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:active {
  transform: scale(0.97);
  transition-duration: 100ms;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,149,42,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }

/* ---- Section Label ---------------------------------------- */
.section-label {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label-light {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}

/* ---- Section Header --------------------------------------- */
.section-header {
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header p {
  margin-top: 14px;
  font-size: 1.08rem;
}

/* ---- Navigation ------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-logo-img {
  height: 30px;
  max-width: 120px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  color: var(--text-mid);
  font-size: 0.93rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--bg-grey);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-login {
  color: var(--text-mid);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 8px 14px;
  transition: var(--transition);
}
.nav-login:hover { color: var(--navy); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Footer ----------------------------------------------- */
.site-footer {
  background: #0a1535;
  color: rgba(255,255,255,.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-brand .nav-logo { color: var(--white); }
.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- Cards ------------------------------------------------ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms var(--ease-out),
              border-color 200ms var(--ease-out),
              transform 200ms var(--ease-out);
}
.card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(200,149,42,.25);
}
@media (hover: hover) and (pointer: fine) {
  .card:hover { transform: translateY(-3px); }
}

/* ---- Feature Icon ----------------------------------------- */
.feat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.feat-icon svg { width: 26px; height: 26px; color: var(--gold); }

/* ---- Grids ------------------------------------------------ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---- Stat Bar --------------------------------------------- */
.stat {
  text-align: center;
  padding: 24px;
}
.stat-value {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
}

/* ---- Check List ------------------------------------------- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  color: var(--text-mid);
}
.check-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Problem Pills ---------------------------------------- */
.problem-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
.problem-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.92rem;
  color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}
.problem-pill .x {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ---- Badge ------------------------------------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.badge-gold { background: var(--gold-pale); color: var(--gold); }
.badge-green { background: #dcfce7; color: var(--green); }
.badge-navy { background: rgba(30,45,90,.1); color: var(--navy); }

/* ---- Hero ------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, #1a4db8 0%, #162a7a 55%, #0a1535 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero-subtitle {
  color: rgba(255,255,255,.78);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}
.hero-trust-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,.5);
}
.hero-trust-items {
  display: flex;
  gap: 16px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.7);
}
.hero-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ---- App Preview (Hero Mock) ------------------------------ */
.app-preview {
  min-width: 0;
  align-self: center;
}
.app-frame {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.55), 0 12px 32px rgba(0,0,0,.35);
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
}

/* Nav bar */
.pv-topbar {
  background: #79c0d8;
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 32px;
  gap: 0;
  overflow: hidden;
}
.pv-logo-mark {
  background: rgba(0,0,0,.15);
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  flex-shrink: 0;
}
.pv-logo-mark svg { display: block; }
.pv-nav-item {
  font-size: 7.5px;
  color: rgba(255,255,255,.9);
  padding: 0 6px;
  height: 32px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 3px;
}
.pv-nav-item.pv-active { font-weight: 700; }
.pv-nav-sep {
  font-size: 7.5px;
  color: rgba(255,255,255,.75);
  padding: 0 6px;
  white-space: nowrap;
}
.pv-logout {
  margin-left: auto;
  font-size: 7.5px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  flex-shrink: 0;
}

/* Body */
.pv-body {
  background: #eef2f7;
  padding: 12px;
}
.pv-heading {
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

/* KPI row */
.pv-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 9px;
}
.pv-kpi-card {
  background: #fff;
  border-radius: 8px;
  padding: 9px 9px 8px;
  border-left: 3px solid transparent;
}
.pv-kpi-blue   { border-left-color: #2563eb; }
.pv-kpi-green  { border-left-color: #15803d; }
.pv-kpi-teal   { border-left-color: #0891b2; }
.pv-kpi-purple { border-left-color: #7c3aed; }
.pv-kpi-lbl {
  font-size: 6.5px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.pv-kpi-val {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}
.pv-kpi-sub {
  font-size: 6.5px;
  color: #6b7280;
  margin-top: 3px;
}

/* Main panels */
.pv-panels {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 8px;
}
.pv-panel {
  background: #fff;
  border-radius: 8px;
  padding: 11px;
}
.pv-panel-title {
  font-size: 7.5px;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 9px;
}

/* Status chips */
.pv-status-chips {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.pv-chip {
  font-size: 6.5px;
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 600;
  color: #fff;
}
.pv-chip-green { background: #15803d; }
.pv-chip-blue  { background: #2563eb; }
.pv-chip-grey  { background: #6b7280; }

/* Progress bars */
.pv-bars { display: flex; flex-direction: column; gap: 6px; margin-bottom: 9px; }
.pv-bar-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pv-bar-lbl {
  font-size: 7.5px;
  color: #374151;
  width: 90px;
  flex-shrink: 0;
}
.pv-bar-track {
  flex: 1;
  height: 5px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}
.pv-bar-fill {
  height: 100%;
  border-radius: 3px;
}
.pv-fill-green { background: #15803d; }
.pv-fill-blue  { background: #2563eb; }
.pv-fill-grey  { background: #9ca3af; }
.pv-bar-num {
  font-size: 7.5px;
  font-weight: 600;
  color: #374151;
  width: 14px;
  text-align: right;
  flex-shrink: 0;
}

/* Summary boxes */
.pv-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.pv-sum-box {
  border-radius: 6px;
  padding: 7px 4px;
  text-align: center;
}
.pv-sum-yellow { background: #fef9c3; }
.pv-sum-green  { background: #dcfce7; }
.pv-sum-red    { background: #fee2e2; }
.pv-sum-num {
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}
.pv-sum-lbl {
  font-size: 6.5px;
  margin-top: 2px;
}
.pv-sum-yellow .pv-sum-num,
.pv-sum-yellow .pv-sum-lbl { color: #a16207; }
.pv-sum-green .pv-sum-num,
.pv-sum-green .pv-sum-lbl  { color: #15803d; }
.pv-sum-red .pv-sum-num,
.pv-sum-red .pv-sum-lbl    { color: #b91c1c; }

/* Overdue table */
.pv-table {
  width: 100%;
  border-collapse: collapse;
}
.pv-table thead th {
  font-size: 7px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
  text-align: left;
  padding: 0 5px 7px;
  border-bottom: 1px solid #e5e7eb;
}
.pv-table tbody td {
  padding: 6px 5px;
  color: #374151;
  font-size: 8.5px;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
  white-space: nowrap;
}
.pv-table tbody tr:last-child td { border-bottom: none; }
.pv-link { color: #2563eb; font-weight: 600; }
.pv-overdue-days { font-weight: 700; }
.pv-days-high { color: #b91c1c; }
.pv-days-mid  { color: #ea580c; }
.pv-days-low  { color: #d97706; }

/* ---- Testimonials ----------------------------------------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { color: var(--text-mid); font-size: 0.97rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* ---- Pricing ---------------------------------------------- */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  padding: 40px 36px;
  position: relative;
  transition: box-shadow 200ms var(--ease-out), transform 200ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,149,42,.12), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 20px 0;
}
.pricing-currency { font-size: 1.4rem; font-weight: 700; color: var(--navy); align-self: flex-start; margin-top: 6px; }
.pricing-amount { font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1; }
.pricing-period { font-size: 0.9rem; color: var(--text-light); }
.pricing-desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 28px; min-height: 40px; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.pricing-feature .tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 0.7rem;
}
.pricing-feature .dash {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ---- Feature Detail Block --------------------------------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.feature-block:last-child { border-bottom: none; }
.feature-block.reverse .feature-visual { order: -1; }
.feature-visual {
  background: var(--bg-grey);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 32px;
}
.feature-visual-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- CTA Banner ------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, #0a1535, #1e3a8a);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(200,149,42,.06);
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.7); font-size: 1.08rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-band .btn-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Hero Entrance ---------------------------------------- */
@keyframes hero-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1        { animation: hero-up 0.6s var(--ease-out) both; }
.hero-subtitle  { animation: hero-up 0.6s var(--ease-out) 110ms both; }
.hero-actions   { animation: hero-up 0.6s var(--ease-out) 210ms both; }
.hero-trust     { animation: hero-up 0.6s var(--ease-out) 310ms both; }
.app-preview    { animation: hero-up 0.75s var(--ease-out) 160ms both; }

/* ---- Scroll Reveal ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 380ms var(--ease-out), transform 380ms var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Reduced Motion --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero h1, .hero-subtitle, .hero-actions, .hero-trust, .app-preview { animation: none; }
  .btn:active { transform: none; }
  html { scroll-behavior: auto; }
}

/* ---- Responsive ------------------------------------------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .app-preview { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .feature-block.reverse .feature-visual { order: 0; }
}
@media (max-width: 680px) {
  .section { padding: 56px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px; box-shadow: var(--shadow); z-index: 99; }
  .pricing-grid { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
}
