/* ===========================================================
   Openloop — bright & friendly design system
   Consumer AI & cloud platform
   =========================================================== */

:root {
  /* Color */
  --canvas: #FBFAF8;
  --surface: #FFFFFF;
  --ink: #1F2233;
  --ink-soft: #565973;
  --ink-faint: #8A8DA3;
  --line: #ECEAE4;

  --indigo: #5B5BD6;      /* Loop Indigo — primary */
  --indigo-dark: #4646B3;
  --indigo-tint: #EEEEFB;
  --coral: #FF8A5B;       /* Sunbeam — accent */
  --coral-tint: #FFEDE3;
  --mint: #34D399;
  --mint-tint: #E2F8EF;
  --sun: #FFD166;
  --sun-tint: #FFF6E0;
  --sky: #56B8FF;
  --sky-tint: #E5F3FF;

  /* Radius */
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 32px;
  --pill: 999px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(31, 34, 51, .06);
  --shadow: 0 14px 40px rgba(31, 34, 51, .08);
  --shadow-lg: 0 30px 70px rgba(91, 91, 214, .16);

  /* Layout */
  --maxw: 1180px;
  --gutter: 24px;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--canvas); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: transparent;       /* lets the ambient #bg-canvas show through */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
#bg-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: -1; pointer-events: none; display: block;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--indigo); text-decoration: none; }
a:hover { color: var(--indigo-dark); }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.02em; margin: 0 0 .4em; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.center { text-align: center; }
.measure { max-width: 640px; }
.center .measure { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-tint);
  padding: 6px 14px;
  border-radius: var(--pill);
  margin-bottom: 18px;
}
.lead { font-size: 1.18rem; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }

.grid { display: grid; gap: 24px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .98rem;
  padding: 12px 22px;
  border-radius: var(--pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--indigo); color: #fff; box-shadow: 0 8px 20px rgba(91,91,214,.28); }
.btn-primary:hover { background: var(--indigo-dark); color: #fff; }
.btn-accent { background: var(--coral); color: #fff; box-shadow: 0 8px 20px rgba(255,138,91,.3); }
.btn-accent:hover { background: #f5774a; color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: #fff; border-color: var(--indigo); color: var(--indigo); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.center .btn-row { justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,248,.82);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; height: 70px; }
.logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 1.2rem; color: var(--ink); letter-spacing: -.02em; }
.logo:hover { color: var(--ink); }
.logo .mark { color: var(--indigo); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a { display: block; color: var(--ink-soft); font-weight: 600; font-size: .96rem; padding: 8px 14px; border-radius: var(--pill); }
.nav-links a:hover { color: var(--ink); background: #fff; }
.nav-links a.active { color: var(--indigo); }
.nav-spacer { flex: 1; }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* dropdown */
.has-menu > a::after { content: "▾"; font-size: .7em; margin-left: 5px; color: var(--ink-faint); }
.menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: var(--shadow);
  padding: 10px; width: 280px; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .18s ease;
}
.has-menu:hover .menu, .has-menu:focus-within .menu { opacity: 1; visibility: visible; transform: translateY(0); }
.menu a { display: flex; gap: 12px; align-items: flex-start; padding: 10px 12px; border-radius: var(--r-sm); }
.menu a:hover { background: var(--canvas); }
.menu .mi-ico { width: 36px; height: 36px; flex: none; border-radius: 10px; display: grid; place-items: center; font-size: 1.1rem; }
.menu .mi-t { font-weight: 700; color: var(--ink); font-size: .95rem; line-height: 1.2; }
.menu .mi-d { font-size: .82rem; color: var(--ink-faint); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; margin: 4px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 92px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: .3em; }
.hero .lead { font-size: 1.25rem; max-width: 520px; }
.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .55; z-index: 0; pointer-events: none; }
.blob-1 { width: 420px; height: 420px; background: radial-gradient(circle, var(--coral-tint), transparent 70%); top: -120px; right: -80px; }
.blob-2 { width: 380px; height: 380px; background: radial-gradient(circle, var(--indigo-tint), transparent 70%); bottom: -140px; left: -120px; }
.blob-3 { width: 300px; height: 300px; background: radial-gradient(circle, var(--mint-tint), transparent 70%); top: 30%; left: 40%; }
.hero .container { position: relative; z-index: 1; }

/* hero visual card */
.hero-visual {
  background: linear-gradient(150deg, #fff, var(--indigo-tint));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px;
}
.chat-line { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.chat-line .av { width: 34px; height: 34px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 1rem; }
.bubble { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 12px 16px; font-size: .95rem; box-shadow: var(--shadow-sm); }
.bubble.me { background: var(--indigo); color: #fff; border-color: transparent; }
.chat-line.right { flex-direction: row-reverse; }

/* ---------- Trust bar ---------- */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trustbar .container { display: flex; align-items: center; justify-content: center; gap: 40px; padding: 22px var(--gutter); flex-wrap: wrap; }
.trustbar .tlabel { color: var(--ink-faint); font-size: .85rem; font-weight: 600; }
.trust-logo { font-weight: 800; color: var(--ink-faint); font-size: 1.05rem; letter-spacing: -.01em; opacity: .8; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.card.hoverable:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.ico-chip {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 16px;
}
.chip-indigo { background: var(--indigo-tint); }
.chip-coral { background: var(--coral-tint); }
.chip-mint { background: var(--mint-tint); }
.chip-sun { background: var(--sun-tint); }
.chip-sky { background: var(--sky-tint); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); margin-bottom: 14px; }
.card .arrow { font-weight: 700; color: var(--indigo); font-size: .92rem; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step .num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--indigo); color: #fff;
  display: grid; place-items: center; font-weight: 800; margin-bottom: 14px;
}
.step:nth-child(2) .num { background: var(--coral); }
.step:nth-child(3) .num { background: var(--mint); }

/* ---------- Feature rows ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 40px 0; }
.feature-row.flip .feat-text { order: 2; }
.feat-visual {
  border-radius: var(--r-lg); padding: 40px; min-height: 280px;
  display: grid; place-items: center; font-size: 5rem;
  border: 1px solid var(--line);
}
.feat-list { list-style: none; margin-top: 14px; }
.feat-list li { padding-left: 28px; position: relative; margin-bottom: 10px; color: var(--ink-soft); }
.feat-list li::before { content: "✓"; position: absolute; left: 0; color: var(--mint); font-weight: 800; }

/* ---------- Privacy band ---------- */
.band {
  background: linear-gradient(135deg, var(--indigo), #7B6FE6);
  color: #fff; border-radius: var(--r-lg); padding: 56px; position: relative; overflow: hidden;
}
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.86); }
.band .pill-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.band .pill { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25); color: #fff; padding: 8px 16px; border-radius: var(--pill); font-weight: 600; font-size: .9rem; }

/* ---------- Stats ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .big { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--indigo); letter-spacing: -.03em; }
.stat .lbl { color: var(--ink-soft); font-weight: 600; font-size: .95rem; }

/* ---------- Testimonials ---------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px; }
.quote .stars { color: var(--sun); margin-bottom: 12px; letter-spacing: 2px; }
.quote blockquote { margin: 0 0 18px; font-size: 1.08rem; }
.quote .who { display: flex; align-items: center; gap: 12px; }
.quote .who .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; }
.quote .who b { display: block; }
.quote .who span { color: var(--ink-faint); font-size: .88rem; }

/* ---------- CTA ---------- */
.cta-final {
  background: linear-gradient(135deg, var(--coral-tint), var(--indigo-tint));
  border-radius: var(--r-lg); padding: 64px; text-align: center;
}

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; position: relative; }
.price-card.featured { border: 2px solid var(--indigo); box-shadow: var(--shadow-lg); }
.price-card .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--indigo); color: #fff; font-size: .78rem; font-weight: 700; padding: 5px 14px; border-radius: var(--pill); }
.price-card .amt { font-size: 2.8rem; font-weight: 800; letter-spacing: -.03em; }
.price-card .amt small { font-size: 1rem; font-weight: 600; color: var(--ink-faint); }
.price-feats { list-style: none; margin: 22px 0; }
.price-feats li { padding: 9px 0 9px 28px; position: relative; border-top: 1px solid var(--line); color: var(--ink-soft); }
.price-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--mint); font-weight: 800; }

.billing-toggle { display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: var(--pill); padding: 5px; gap: 4px; }
.billing-toggle button { border: 0; background: transparent; font-family: inherit; font-weight: 700; font-size: .92rem; color: var(--ink-soft); padding: 9px 20px; border-radius: var(--pill); cursor: pointer; }
.billing-toggle button.active { background: var(--indigo); color: #fff; }
.save-badge { background: var(--mint-tint); color: #0f8f5f; font-weight: 700; font-size: .82rem; padding: 4px 12px; border-radius: var(--pill); margin-left: 8px; }

.compare { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--canvas); font-weight: 800; }
.compare td.c { text-align: center; }

/* ---------- FAQ ---------- */
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 4px 20px; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--indigo); font-size: 1.4rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--ink-soft); padding-bottom: 16px; margin: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 72px 0 48px; text-align: center; position: relative; overflow: hidden; }
.page-hero .lead { margin: 0 auto; }

/* ---------- Blog ---------- */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: transform .18s ease, box-shadow .2s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-cover { height: 180px; display: grid; place-items: center; font-size: 3rem; }
.post-body { padding: 22px; }
.post-cat { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--coral); }
.post-body h3 { margin: 8px 0; font-size: 1.15rem; }
.post-meta { color: var(--ink-faint); font-size: .85rem; }

/* ---------- Customers ---------- */
.logo-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.logo-wall div { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); height: 84px; display: grid; place-items: center; font-weight: 800; color: var(--ink-faint); }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card .face { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; font-size: 2.2rem; }
.team-card b { display: block; }
.team-card span { color: var(--ink-faint); font-size: .9rem; }

/* ---------- Jobs ---------- */
.job { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 18px 24px; margin-bottom: 12px; transition: border-color .2s, transform .15s; }
.job:hover { border-color: var(--indigo); transform: translateX(4px); }
.job .meta { color: var(--ink-faint); font-size: .9rem; }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .92rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--r-sm);
  font-family: inherit; font-size: 1rem; background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-tint); }

/* ---------- Footer ---------- */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 64px 0 28px; margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; }
.foot-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-faint); margin-bottom: 14px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 9px; }
.foot-col a { color: var(--ink-soft); font-weight: 500; font-size: .94rem; }
.foot-col a:hover { color: var(--indigo); }
.foot-about p { color: var(--ink-soft); font-size: .94rem; max-width: 260px; }
.foot-social { display: flex; gap: 10px; margin-top: 16px; }
.foot-social a { width: 38px; height: 38px; border-radius: 50%; background: var(--canvas); display: grid; place-items: center; font-size: 1rem; }
.foot-social a:hover { background: var(--indigo-tint); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-faint); font-size: .88rem; }
.foot-bottom select { border: 1px solid var(--line); border-radius: var(--pill); padding: 7px 14px; background: var(--canvas); font-family: inherit; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 40px; }
.bg-white { background: #fff; }
.rounded-wrap { border-radius: var(--r-lg); }

/* ===========================================================
   Icons, refinements & motion (added in polish pass)
   =========================================================== */

/* ---------- Icon system ---------- */
.ic-svg { display: block; }
.ico-chip { color: var(--indigo); }            /* default; chip color overrides below */
.chip-indigo { color: var(--indigo); }
.chip-coral { color: var(--coral); }
.chip-mint { color: #16b07d; }
.chip-sun { color: #d99a25; }
.chip-sky { color: #2f8fe0; }
.ico-chip .ic-svg { width: 26px; height: 26px; }
.mi-ico .ic-svg { width: 20px; height: 20px; }
.foot-social a { color: var(--ink-soft); }
.foot-social a:hover { color: var(--indigo); }
.foot-social a .ic-svg { width: 18px; height: 18px; }
.chat-line .av { color: var(--indigo); }
.chat-line .av .ic-svg { width: 18px; height: 18px; }

.ic-badge {
  display: grid; place-items: center;
  width: 72px; height: 72px; border-radius: 20px;
  background: #fff; color: var(--indigo);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.ic-badge .ic-svg { width: 32px; height: 32px; }
.ic-badge.lg { width: 112px; height: 112px; border-radius: 28px; box-shadow: var(--shadow); }
.ic-badge.lg .ic-svg { width: 52px; height: 52px; }
.feat-visual { position: relative; }
.compare .tick { display: inline-flex; color: #16b07d; }
.compare .tick .ic-svg { width: 20px; height: 20px; }

/* ---------- Trust bar refined ---------- */
.trustbar .tlabel { text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; }
.trust-logo { font-weight: 700; color: var(--ink-faint); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; opacity: .68; }

/* ---------- Team monogram avatars ---------- */
.team-card .face { font-size: 1.5rem; font-weight: 700; color: var(--indigo); letter-spacing: .02em; }

/* ---------- Typography polish ---------- */
.hero h1 { letter-spacing: -.035em; }
h2 { letter-spacing: -.025em; }

/* ---------- Header condense on scroll ---------- */
.site-header { transition: box-shadow .25s ease, background .25s ease; }
.site-header.scrolled { box-shadow: 0 6px 24px rgba(31, 34, 51, .07); background: rgba(251, 250, 248, .94); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.22, .61, .36, 1), transform .6s cubic-bezier(.22, .61, .36, 1); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Gentle background drift ---------- */
@keyframes drift { 0% { transform: translate(0, 0); } 50% { transform: translate(16px, -20px); } 100% { transform: translate(0, 0); } }
.blob-1 { animation: drift 17s ease-in-out infinite; }
.blob-2 { animation: drift 22s ease-in-out infinite reverse; }
.blob-3 { animation: drift 19s ease-in-out infinite; }

/* ---------- Respect reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob-1, .blob-2, .blob-3 { animation: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .card.hoverable:hover, .post-card:hover, .job:hover { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid, .feature-row, .feature-row.flip .feat-text { grid-template-columns: 1fr; order: 0; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }

  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 16px;
  }
  .site-header.open .menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; width: auto; padding: 4px 0 4px 16px; }
}
@media (max-width: 560px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .band, .cta-final { padding: 36px 24px; }
  .section { padding: 60px 0; }
}
