/* ============================================================
   Budgley Marketing Site — styles.css
   ============================================================ */

[role="note"] { display: none; }

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Custom Properties ── */
:root {
  --orange:        #E8751A;
  --orange-light:  #F9E4CF;
  --orange-dark:   #C45E0A;
  --green:         #4CAF50;
  --blue:          #5C6BC0;
  --red:           #E53935;
  --bg:            #F9F7F4;
  --bg-warm:       #F0EDE8;
  --bg-cream:      #FDF5EC;
  --dark:          #2D2D2D;
  --mid:           #5A5A5A;
  --muted:         #8A8A8A;
  --border:        #E5E0D8;
  --white:         #FFFFFF;

  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-pill:   100px;

  --shadow-card:   0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover:  0 8px 32px rgba(0, 0, 0, 0.13);
  --shadow-phone:  0 24px 64px rgba(0, 0, 0, 0.22);

  --font:          'Inter', system-ui, -apple-system, sans-serif;

  --space-xs:      0.5rem;
  --space-sm:      1rem;
  --space-md:      1.5rem;
  --space-lg:      2.5rem;
  --space-xl:      4rem;
  --space-2xl:     6rem;

  --max-width:     1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Container ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { color: var(--mid); line-height: 1.7; }

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  margin-bottom: var(--space-xs);
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 117, 26, 0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 24px rgba(232, 117, 26, 0.45);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--dark);
  background: rgba(0,0,0,0.03);
}

.btn-large {
  padding: 1.1rem 2.2rem;
  font-size: 1.1rem;
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: var(--radius-pill);
  padding: 0.3rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Section Spacing ── */
section {
  padding: var(--space-2xl) 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.site-nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  background: rgba(249, 247, 244, 0.97);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--dark);
}

.nav-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md) var(--space-md);
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-of-type {
  border-bottom: none;
}

.mobile-nav .btn {
  width: 100%;
  margin-top: var(--space-xs);
}

.mobile-nav.open {
  display: flex;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: var(--space-2xl) 0;
  background: var(--bg);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-text h1 {
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-text h1 span {
  color: var(--orange);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--mid);
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.trust-badge-icon {
  color: var(--green);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── Phone Mockup ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  background: #1A1A1A;
  border-radius: 44px;
  padding: 14px;
  box-shadow: var(--shadow-phone);
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #1A1A1A;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-mockup::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 38px;
  border: 2px solid rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 1;
}

.phone-screen {
  border-radius: 32px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: auto;
  display: block;
}

/* Phone sizes */
.phone-mockup.phone-sm {
  width: 220px;
}

.phone-mockup.phone-md {
  width: 260px;
}

.phone-mockup.phone-lg {
  width: 300px;
}

/* ── Laptop Mockup ── */
.laptop-mockup {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.laptop-screen {
  background: #1C1C1E;
  border-radius: 16px 16px 0 0;
  padding: 12px 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  position: relative;
}

.laptop-screen::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3A3A3C;
  margin-bottom: 8px;
  margin-left: 8px;
}

.laptop-screen-inner {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  background: #fff;
}

.laptop-screen-inner img {
  width: 100%;
  height: auto;
  display: block;
}

.laptop-base {
  background: #2C2C2E;
  height: 22px;
  border-radius: 0 0 4px 4px;
  position: relative;
}

.laptop-base::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 4px;
  background: #3A3A3C;
  border-radius: 0 0 4px 4px;
}

.laptop-foot {
  height: 6px;
  background: #242424;
  border-radius: 0 0 6px 6px;
  margin: 0 10%;
}

/* ============================================================
   CREDIBILITY BAR
   ============================================================ */
.credibility-bar {
  background: var(--bg-warm);
  padding: var(--space-xl) 0;
  text-align: center;
}

.credibility-bar blockquote {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto var(--space-xs);
  line-height: 1.5;
}

.credibility-bar p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  background: var(--bg-cream);
  text-align: center;
}

.philosophy-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.philosophy h2 {
  margin-bottom: var(--space-md);
}

.philosophy p {
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
}

.philosophy em {
  color: var(--orange);
  font-style: italic;
}

.philosophy-tagline {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}

/* ============================================================
   WHO FOR
   ============================================================ */
.who-for {
  background: var(--bg);
}

.who-for-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.who-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.who-card-emoji {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.who-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.who-card p {
  font-size: 0.9rem;
  color: var(--mid);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--bg-warm);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-light), var(--orange), var(--orange-light));
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: var(--space-sm);
  box-shadow: 0 4px 12px rgba(232, 117, 26, 0.3);
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--mid);
}

.how-it-works-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  background: var(--bg);
}

.features > .container > .section-header {
  margin-bottom: var(--space-xl);
}

/* Feature Showcase — alternating */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.feature-showcase.reverse {
  direction: rtl;
}

.feature-showcase.reverse > * {
  direction: ltr;
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-text {
  max-width: 520px;
}

.feature-badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.feature-text h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.7rem;
}

.feature-text p {
  margin-bottom: var(--space-sm);
  font-size: 1.0rem;
}

.feature-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: var(--bg-cream);
  border-left: 3px solid var(--orange);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--mid);
  margin-top: var(--space-sm);
}

/* ── True-Up CSS Illustration ── */
.trueup-mockup {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
}

.trueup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--dark);
  color: var(--white);
}

.trueup-header-title {
  font-size: 1rem;
  font-weight: 700;
}

.trueup-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.trueup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  gap: var(--space-sm);
}

.trueup-row:last-of-type {
  border-bottom: none;
}

.trueup-merchant {
  flex: 1;
}

.trueup-merchant-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.trueup-merchant-amount {
  font-size: 0.85rem;
  color: var(--mid);
}

.trueup-category {
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--bg-warm);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
}

.trueup-add-btn {
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: default;
  flex-shrink: 0;
}

.trueup-footer {
  background: var(--bg);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.trueup-footer-icon {
  color: var(--green);
  font-size: 1rem;
}

/* ── Supporting Features Grid ── */
.supporting-features {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.supporting-features .section-subheader {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-lg);
}

.supporting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.support-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}

.support-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.support-card-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.support-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.support-card p {
  font-size: 0.875rem;
  color: var(--mid);
}

.features-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================================
   DUAL DEVICE
   ============================================================ */
.dual-device {
  background: var(--bg-cream);
}

.dual-device-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-xl);
  position: relative;
}

.dual-device-text {
  grid-column: 1 / -1;
  text-align: center;
}

.dual-device-text h2 {
  margin-bottom: var(--space-sm);
}

.dual-device-text p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.dual-device-visuals {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
}

.dual-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: var(--orange);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(232, 117, 26, 0.4);
}

/* ============================================================
   HORIZON (COMING SOON)
   ============================================================ */
.horizon {
  background: var(--bg-warm);
  padding: var(--space-xl) 0;
}

.horizon-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.horizon-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  opacity: 0.9;
}

.coming-soon-pill {
  display: inline-block;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.horizon-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--mid);
}

.horizon-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: var(--bg);
}

.pricing-card-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-xl);
  box-shadow: var(--shadow-hover);
  border: 2px solid var(--orange);
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.pricing-trial-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: var(--space-lg);
}

.pricing-amount-dollar {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  align-self: flex-start;
  padding-top: 0.5rem;
}

.pricing-amount-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.pricing-amount-period {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-checklist {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.pricing-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.95rem;
  color: var(--mid);
  border-bottom: 1px solid var(--bg-warm);
}

.pricing-checklist li:last-child {
  border-bottom: none;
}

.check-icon {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-cta {
  width: 100%;
  display: block;
  text-align: center;
  padding: 1.1rem;
  margin-bottom: var(--space-sm);
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--bg-warm);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xs);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item.open {
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  gap: var(--space-sm);
  transition: background 0.15s;
}

.faq-question:hover {
  background: var(--bg);
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
  font-weight: 700;
  transition: all 0.2s;
}

.faq-item.open .faq-toggle {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, #FDECD6 0%, #FBE0C2 50%, #F5D3A8 100%);
  text-align: center;
  padding: var(--space-2xl) 0;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.final-cta > .container > p {
  font-size: 1.15rem;
  margin-bottom: var(--space-lg);
  color: var(--mid);
}

.final-cta-sub {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-lg);
  text-align: center;
}

.footer-logo {
  margin-bottom: var(--space-sm);
}

.footer-logo img {
  height: 32px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.footer-made {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}


/* ============================================================
   LEGAL PAGES (privacy.html / terms.html)
   ============================================================ */
.legal-page {
  padding: var(--space-2xl) 0;
}

.legal-page .container {
  max-width: 760px;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.legal-effective {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: var(--space-xl);
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--dark);
}

.legal-page p, .legal-page li {
  font-size: 0.97rem;
  color: var(--mid);
  margin-bottom: 0.85rem;
  line-height: 1.75;
}

.legal-page ul, .legal-page ol {
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

.legal-page ul li {
  list-style: disc;
}

.legal-page ol li {
  list-style: decimal;
}

.legal-disclaimer {
  background: var(--bg-cream);
  border-left: 3px solid var(--orange);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: var(--space-xl);
}

/* ============================================================
   RESPONSIVE — TABLET (768–1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    gap: var(--space-lg);
  }

  .phone-mockup {
    width: 240px;
  }

  .who-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-row::before {
    display: none;
  }

  .supporting-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-showcase,
  .feature-showcase.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .feature-showcase .feature-visual {
    order: -1;
  }

  .feature-showcase.reverse .feature-visual {
    order: -1;
  }

  .feature-text {
    max-width: 100%;
  }

  .dual-device-visuals {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .dual-arrow {
    display: none;
  }

  .laptop-mockup {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (< 768px)
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --space-2xl: 4rem;
    --space-xl: 2.5rem;
  }

  /* Nav */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 0;
    margin-bottom: var(--space-md);
  }

  .hero-ctas {
    justify-content: center;
  }

  .trust-badges {
    align-items: center;
  }

  .hero-sub {
    margin: 0 auto var(--space-lg);
  }

  .phone-mockup {
    width: 200px;
    transform: none;
  }

  /* Who for */
  .who-for-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps-row {
    grid-template-columns: 1fr;
  }

  /* Features */
  .supporting-grid {
    grid-template-columns: 1fr;
  }

  .feature-showcase,
  .feature-showcase.reverse {
    direction: ltr;
    grid-template-columns: 1fr;
  }

  .feature-showcase .feature-visual,
  .feature-showcase.reverse .feature-visual {
    order: -1;
  }

  /* Pricing */
  .pricing-card {
    padding: var(--space-lg) var(--space-md);
  }

  /* Dual Device */
  .dual-device-visuals {
    grid-template-columns: 1fr;
  }

  .dual-arrow {
    display: none;
  }


  /* Footer */
  .footer-links {
    flex-direction: column;
    gap: var(--space-xs);
  }
}
