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

:root {
  --bg: #080e1a;
  --bg2: #0d1628;
  --bg3: #111f35;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --grad: linear-gradient(135deg, #22d3ee, #3b82f6);
  --grad-text: linear-gradient(135deg, #22d3ee 0%, #60a5fa 100%);
  --card-bg: rgba(255,255,255,0.03);
  --card-border: rgba(100,180,255,0.12);
  --text: #f1f5f9;
  --muted: #94a3b8;
  --subtle: #475569;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

/* ── ANIMATION BASE ── */
.anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim.from-left  { transform: translateX(-28px); }
.anim.from-right { transform: translateX(28px); }
.anim.scale-in   { transform: scale(0.94); }
.anim.visible {
  opacity: 1;
  transform: none;
}
.anim[data-delay="1"] { transition-delay: 0.08s; }
.anim[data-delay="2"] { transition-delay: 0.16s; }
.anim[data-delay="3"] { transition-delay: 0.24s; }
.anim[data-delay="4"] { transition-delay: 0.32s; }
.anim[data-delay="5"] { transition-delay: 0.40s; }
.anim[data-delay="6"] { transition-delay: 0.48s; }
.anim[data-delay="7"] { transition-delay: 0.56s; }
.anim[data-delay="8"] { transition-delay: 0.64s; }
.anim[data-delay="9"] { transition-delay: 0.72s; }

/* Hero entrance — fires on load, not scroll */
.hero-anim {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.7s ease forwards;
}
@keyframes heroIn {
  to { opacity: 1; transform: none; }
}
.hero-anim[data-delay="1"] { animation-delay: 0.12s; }
.hero-anim[data-delay="2"] { animation-delay: 0.26s; }
.hero-anim[data-delay="3"] { animation-delay: 0.42s; }
.hero-anim[data-delay="4"] { animation-delay: 0.60s; }
.hero-anim[data-delay="5"] { animation-delay: 0.78s; }

/* Nav drop-in */
nav {
  animation: navIn 0.5s ease forwards;
}
@keyframes navIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}

/* Stat counter shimmer */
.stat-num {
  background: var(--grad);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShimmer 6s ease infinite;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,14,26,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

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

.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav-logo-text span {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--grad);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

@keyframes ambientWave {
  0%   { opacity: 0.85; }
  50%  { opacity: 1;    }
  100% { opacity: 0.85; }
}
@keyframes ambientWave2 {
  0%   { opacity: 0.6; }
  50%  { opacity: 0.9; }
  100% { opacity: 0.6; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  inset: -20%;
  pointer-events: none;
}
.hero-bg::before {
  background:
    radial-gradient(ellipse 70% 55% at 50% 5%,  rgba(34,211,238,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 80% 85%, rgba(59,130,246,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 45% 38% at 15% 85%, rgba(34,211,238,0.10) 0%, transparent 55%);
  animation: ambientWave 12s ease-in-out infinite;
}
.hero-bg::after {
  background:
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(59,130,246,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 30%, rgba(34,211,238,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(99,102,241,0.10) 0%, transparent 55%);
  animation: ambientWave2 18s ease-in-out infinite;
}

.dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.dot-grid canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content { position: relative; z-index: 1; max-width: 820px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(34,211,238,0.3);
  background: rgba(34,211,238,0.08);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

@keyframes gradShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes labelGlow {
  0%, 100% { opacity: 1; text-shadow: 0 0 8px rgba(34,211,238,0.5); }
  50%       { opacity: 0.7; text-shadow: 0 0 18px rgba(34,211,238,0.9); }
}
.grad-text {
  background: linear-gradient(135deg, #22d3ee 0%, #60a5fa 40%, #818cf8 70%, #22d3ee 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShimmer 5s ease infinite;
}
.section-label {
  animation: labelGlow 3s ease-in-out infinite;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(34,211,238,0.25);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34,211,238,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(34,211,238,0.4);
  background: rgba(34,211,238,0.05);
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat {
  background: var(--bg);
  padding: 40px 32px;
  text-align: center;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

/* SECTIONS */
section { padding: 100px 24px; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* CARDS */
a.card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.card .card-arrow {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--cyan);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
a.card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(34,211,238,0.3);
  background: rgba(34,211,238,0.04);
  transform: translateY(-3px);
}

.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.card-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(34,211,238,0.1);
  color: var(--cyan);
  border: 1px solid rgba(34,211,238,0.2);
}

.card-tag.soon {
  background: rgba(148,163,184,0.1);
  color: var(--muted);
  border-color: rgba(148,163,184,0.2);
}

/* GRID LAYOUTS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }

/* WHY SECTION */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.why-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 0.875rem; color: var(--muted); }

/* Mini service cards (homepage grid) */
.services-grid { gap: 12px; }
.card-mini {
  padding: 16px 18px !important;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.card-mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-mini-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.card-mini h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-mini .card-tag { flex-shrink: 0; margin-top: 0 !important; }
.card-mini .card-arrow { font-size: 0.78rem; margin-top: 8px; }

/* Compact service sections */
.service-section { padding: 52px 24px !important; }
.service-section .why-grid { gap: 40px; align-items: flex-start; }
.service-section .why-list { gap: 14px; }
.service-section .why-item { gap: 12px; align-items: center; }
.service-section .why-icon {
  width: 32px; height: 32px;
  font-size: 0.95rem;
  border-radius: 8px;
  flex-shrink: 0;
}
.service-section .why-item h4 { font-size: 0.9rem; margin-bottom: 0; }
.service-section .why-item p { display: none; }
.service-section h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.service-section p[style] { font-size: 0.88rem; line-height: 1.6; margin-top: 10px !important; margin-bottom: 18px !important; }

/* CTA SECTION */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, rgba(34,211,238,0.12) 0%, rgba(59,130,246,0.14) 50%, rgba(99,102,241,0.10) 100%);
  border-top: 1px solid rgba(34,211,238,0.25);
  border-bottom: 1px solid rgba(59,130,246,0.2);
  text-align: center;
  padding: 120px 24px;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(34,211,238,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 50%, rgba(59,130,246,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 50%, rgba(99,102,241,0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: ambientWave 10s ease-in-out infinite;
}
.cta-section .section-label {
  position: relative;
}
.cta-section h2 {
  position: relative;
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.cta-section p {
  position: relative;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(34,211,238,0.3), 0 0 60px rgba(34,211,238,0.1); }
  50%       { box-shadow: 0 0 55px rgba(34,211,238,0.55), 0 0 100px rgba(34,211,238,0.2); }
}
.cta-section .btn-primary {
  position: relative;
  font-size: 1.1rem;
  padding: 18px 44px;
  animation: ctaPulse 3s ease-in-out infinite;
}
.cta-section .btn-primary:hover {
  animation: none;
  box-shadow: 0 0 70px rgba(34,211,238,0.5), 0 0 130px rgba(34,211,238,0.2);
  transform: translateY(-3px);
}

/* FOOTER */
footer {
  background: #050a12;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 40px 32px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 12px;
  max-width: 240px;
  line-height: 1.6;
}

footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 16px;
}

footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
footer ul a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--subtle);
}

/* FORM */
.form-group { margin-bottom: 20px; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
input, textarea, select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}
select option {
  background: #0f1a2e;
  color: #e2e8f0;
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(34,211,238,0.4);
}
textarea { resize: vertical; min-height: 120px; }

.sms-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 10px;
  background: rgba(34,211,238,0.04);
  border: 1px solid rgba(34,211,238,0.12);
  margin-top: 8px;
}

.sms-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--cyan);
  cursor: pointer;
}

.sms-consent-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.sms-consent-text a { color: var(--cyan); text-decoration: none; }
.sms-consent-text a:hover { text-decoration: underline; }

/* PAGE HERO */
.page-hero {
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-bg { opacity: 0.6; }

/* PROSE (legal pages) */
.prose { max-width: 720px; margin: 0 auto; padding: 80px 24px; }
.prose h1 { font-size: 2.2rem; margin-bottom: 8px; }
.prose .updated { color: var(--muted); font-size: 0.875rem; margin-bottom: 48px; }
.prose h2 { font-size: 1.15rem; margin: 40px 0 12px; color: var(--text); letter-spacing: -0.3px; }
.prose p { color: var(--muted); margin-bottom: 16px; font-size: 0.95rem; }
.prose ul { margin: 10px 0 16px 20px; color: var(--muted); }
.prose ul li { margin-bottom: 8px; font-size: 0.95rem; }
.prose a { color: var(--cyan); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.critical-box {
  background: rgba(34,211,238,0.06);
  border-left: 3px solid var(--cyan);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.critical-box p { color: var(--text) !important; margin: 0; }

/* DIVIDER */
.divider { height: 1px; background: rgba(255,255,255,0.06); }

/* Hide hamburger on desktop */
.nav-hamburger { display: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  nav { padding: 0 20px; }
  .nav-links { gap: 20px; }
}

@media (max-width: 640px) {
  /* Nav */
  nav { height: 64px; padding: 0 16px; }
  .nav-logo img { height: 52px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(8,14,26,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 24px 24px 32px;
    gap: 0;
    z-index: 999;
  }
  .nav-links.open li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links.open li a { display: block; padding: 14px 0; font-size: 1.05rem; }
  .nav-links.open li:last-child { border-bottom: none; margin-top: 12px; }
  .nav-links.open .nav-cta { display: inline-block; }
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    background: none;
    border: none;
  }
  .nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero */
  .hero { padding: 100px 16px 60px; }
  h1 { font-size: clamp(2rem, 9vw, 3rem); letter-spacing: -1px; }
  .hero-sub { font-size: 1rem; }
  .btn-group { flex-direction: column; align-items: center; }
  .btn-group .btn-primary, .btn-group .btn-secondary { width: 100%; text-align: center; }

  /* Stats bar — compact horizontal strip */
  .stats {
    display: flex;
    flex-direction: row;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
  }
  .stat {
    flex: 1;
    padding: 14px 8px;
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  .stat:last-child { border-right: none; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.65rem; line-height: 1.3; margin-top: 2px; }

  /* Sections */
  section { padding: 60px 16px; }
  .page-hero { padding: 110px 16px 60px; }
  .cta-section { padding: 70px 16px; }

  /* Grids */
  .grid-3, .grid-2 { grid-template-columns: 1fr; gap: 16px; }

  /* Cards */
  .card { padding: 24px 20px; }

  /* Why grid */
  .why-grid { gap: 32px; }
  .why-grid [style*="direction: rtl"] { direction: ltr !important; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr !important; }
  .form-card { padding: 24px 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  footer { padding: 48px 16px 24px; }

  /* CTA button full width */
  .cta-section .btn-primary { width: 100%; max-width: 340px; }

  /* Prose */
  .prose { padding: 60px 16px; }
}
