/* ============================================
   AutoReply for Zoom Phone — Global Styles
   ============================================ */

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

/* --- Custom Properties --- */
:root {
  --primary: #3365f7;
  --primary-hover: #2854d5;
  --primary-light: #dbe5ff;
  --primary-subtle: #f0f4ff;

  --secondary: #00145d;

  --text-heading: #00145d;
  --text-body: #3f4042;
  --text-muted: #8b8d90;
  --text-faint: #c2c4c8;

  --bg-white: #ffffff;
  --bg-off: #f8f9fb;
  --bg-subtle: #f1f3f7;

  --border: #e4e6eb;
  --border-light: #f1f3f7;

  --font-main: 'Manrope', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
  --header-height: 72px;

  /* Layered shadow system (depth tokens) */
  --shadow-xs: 0 1px 2px rgba(0, 20, 93, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 20, 93, 0.05), 0 4px 12px rgba(0, 20, 93, 0.04);
  --shadow-md: 0 2px 4px rgba(0, 20, 93, 0.04), 0 8px 24px rgba(0, 20, 93, 0.06);
  --shadow-lg: 0 4px 8px rgba(0, 20, 93, 0.03), 0 12px 36px rgba(0, 20, 93, 0.08);
  --shadow-xl: 0 8px 16px rgba(0, 20, 93, 0.04), 0 24px 56px rgba(0, 20, 93, 0.10);

  /* Consistent radius tokens */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.72;
  color: var(--text-body);
  background: var(--bg-white);
  min-height: 100vh;
  overflow-x: hidden;
  font-feature-settings: 'cv11', 'ss01';  /* Manrope alternates for polish */
  text-rendering: optimizeLegibility;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-hover);
}

::selection {
  background: var(--primary-light);
  color: var(--text-heading);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

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

/* --- Layout --- */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover {
  color: var(--text-heading);
  background: var(--bg-off);
}

.nav-desktop a.active {
  color: var(--text-heading);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-body);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

.nav-mobile a {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  transition: color 0.2s, background 0.2s;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--primary);
  background: var(--primary-subtle);
}

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-body);
  padding: 8px;
}

.nav-mobile-close svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-xs);
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-heading);
  border-color: var(--border);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--bg-off);
  color: var(--text-heading);
  border-color: var(--text-faint);
}

.btn-lg {
  font-size: 1.0625rem;
  padding: 16px 34px;
  border-radius: 14px;
}


/* --- Shared Section Layout --- */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

section h2 {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  margin-bottom: 18px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.78;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  background: var(--bg-white);
}

/* dot grid background */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #c5d5ff 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.55;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  animation: fadeUp 0.7s var(--ease-out-expo) both;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(2.5rem, 4.8vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text-heading);
  margin-bottom: 22px;
}

.accent-word {
  color: var(--primary);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 0;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
}

.hero-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-requirement {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- Phone Mockup --- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0 40px;
  animation: fadeUp 0.7s var(--ease-out-expo) 0.12s both;
}

.phone-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(51, 101, 247, 0.14) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.phone-frame {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 32px;
  width: 272px;
  box-shadow:
    0 1px 2px rgba(0,20,93,0.04),
    0 4px 12px rgba(0,20,93,0.06),
    0 16px 40px rgba(0,20,93,0.08),
    0 32px 72px rgba(0,20,93,0.06);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.phone-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 8px;
  background: var(--bg-off);
  color: var(--text-heading);
}

.phone-time {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.02em;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-heading);
}

.phone-app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-white);
}

.phone-contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  font-size: 0.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.phone-contact-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
}

.phone-contact-num {
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.phone-chat {
  padding: 14px 11px;
  background: #f3f4f7;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-event {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.67rem;
  color: var(--text-muted);
  font-weight: 600;
  padding: 5px 11px;
  background: rgba(255,255,255,0.8);
  border-radius: 100px;
  align-self: center;
  border: 1px solid var(--border);
}

.chat-bubble {
  max-width: 88%;
  padding: 9px 11px 6px;
  border-radius: 14px;
}

.chat-bubble p {
  font-size: 0.72rem;
  line-height: 1.5;
  margin: 0 0 4px;
}

.chat-meta {
  font-size: 0.6rem;
  display: block;
  opacity: 0.65;
}

.chat-out {
  background: var(--primary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-out .chat-meta {
  text-align: right;
}

.chat-in {
  background: #fff;
  color: var(--text-body);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--border-light);
}

/* floating notification card */
.phone-notif {
  position: absolute;
  bottom: 8px;
  left: -8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 20, 93, 0.12);
  z-index: 2;
}

.notif-icon-wrap {
  flex-shrink: 0;
  line-height: 0;
}

.notif-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.notif-body strong {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
}

.notif-body span {
  font-size: 0.67rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  padding: 104px 0;
  background: var(--bg-off);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.problem-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-xs);
}

.problem-icon {
  width: 46px;
  height: 46px;
  background: #fff0f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.problem-icon svg {
  width: 22px;
  height: 22px;
  color: #dc2626;
}

.problem-card h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-heading);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

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

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 104px 0;
  background: var(--bg-white);
}

.how-it-works h2 {
  margin-bottom: 0;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0 8px;
  margin-top: 48px;
}

.flow-step {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-xs);
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.flow-step h3 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-heading);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.flow-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.flow-step strong {
  color: var(--text-body);
  font-weight: 600;
}

.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
  flex-shrink: 0;
}

.flow-connector svg {
  width: 36px;
  height: 22px;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
  padding: 104px 0;
  background: var(--bg-off);
}

.features h2 {
  margin-bottom: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-xs);
}

.feature-card:hover {
  border-color: var(--primary-light);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-card h3 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-heading);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.68;
}

/* ============================================
   SMART CANCEL
   ============================================ */
.smart-cancel {
  padding: 112px 0;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

/* subtle dot grid for dark section */
.smart-cancel-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.smart-cancel .section-label {
  color: var(--primary-light);
}

.smart-cancel h2 {
  color: #fff;
  margin-bottom: 18px;
}

.smart-cancel h2 em {
  font-style: italic;
  color: #93b4ff;
}

.smart-cancel .section-desc {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.smart-cancel-content {
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.smart-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.smart-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.smart-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.smart-list li span {
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.smart-list li strong {
  color: #fff;
  font-weight: 600;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 104px 0;
  background: var(--bg-white);
}

.pricing h2 {
  margin-bottom: 0;
}

.pricing-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
  max-width: 840px;
}

.plan {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.plan-free {
  background: var(--bg-off);
}

.plan-pro {
  background: var(--bg-white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-subtle), var(--shadow-md);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.plan-header {
  margin-bottom: 24px;
}

.plan h3 {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-trial {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 6px;
}

.plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
  flex: 1;
}

.plan ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
}

.plan ul li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 7px;
}

.plan .btn,
.plan span.btn {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 104px 0;
  background: var(--bg-off);
}

.faq h2 {
  margin-bottom: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 740px;
  margin-top: 52px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.faq-item dt {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-heading);
  padding: 20px 24px 0;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.faq-item dd {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.78;
  padding: 8px 24px 20px;
  margin: 0;
}

.faq-item dd a,
.faq-item dd strong {
  font-weight: 600;
  color: var(--text-body);
}

.faq-item dd a {
  color: var(--primary);
}

/* ============================================
   FREE vs PRO COMPARISON TABLE
   ============================================ */
.compare-table-wrap {
  margin-top: 48px;
}

.compare-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.compare-table thead th {
  padding: 14px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-body);
  text-align: left;
  background: var(--bg-off);
  border-bottom: 1px solid var(--border);
}

.compare-table thead th:nth-child(2),
.compare-table thead th:nth-child(3) {
  text-align: center;
  width: 80px;
}

.compare-pro-col {
  color: var(--primary) !important;
}

.compare-table tbody td {
  padding: 10px 24px;
  font-size: 0.88rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody td:nth-child(2),
.compare-table tbody td:nth-child(3) {
  text-align: center;
}

.compare-check,
.compare-cross {
  width: 20px;
  height: 20px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compare-check {
  stroke: #22c55e;
  stroke-width: 2.5;
}

.compare-cross {
  stroke: var(--text-faint);
  stroke-width: 2;
}

/* ============================================
   WHY PRO TEASER
   ============================================ */
.why-pro-teaser {
  padding: 104px 0;
  background: var(--bg-off);
}

.why-pro-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-pro-teaser-content .section-label {
  margin-bottom: 14px;
}

.why-pro-teaser-content h2 {
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.why-pro-teaser-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
}

.why-pro-teaser-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.why-pro-card {
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  background: var(--bg-white);
  width: 100%;
  max-width: 420px;
}

.why-pro-card-pro {
  border: 2px solid #7c3aed;
  background: #f5f3ff;
}

.why-pro-card-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.why-pro-card-msg {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-body);
}

.why-pro-card-pro .why-pro-card-msg {
  color: #3f3f46;
}

.why-pro-arrow {
  padding: 8px 0;
}

.why-pro-arrow svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .why-pro-teaser-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
}

/* ============================================
   BOTTOM CTA
   ============================================ */
.bottom-cta {
  padding: 112px 0;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

/* subtle dot grid */
.bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* animated color orbs */
.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.cta-orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(51, 101, 247, 0.4), transparent 70%);
  filter: blur(72px);
  top: -160px;
  right: -80px;
  animation: orbFloat1 9s ease-in-out infinite;
}

.cta-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(100, 160, 255, 0.25), transparent 70%);
  filter: blur(72px);
  bottom: -120px;
  left: -60px;
  animation: orbFloat2 11s ease-in-out infinite;
}

.cta-orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(147, 180, 255, 0.18), transparent 70%);
  filter: blur(72px);
  top: 40%;
  left: 38%;
  transform: translateY(-50%);
  animation: orbFloat3 13s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-32px, 40px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(40px, -32px); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translateY(-50%) translate(0, 0); }
  50%       { transform: translateY(-50%) translate(-24px, 28px); }
}

.bottom-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.bottom-cta-copy h2 {
  color: #fff;
  margin-bottom: 14px;
}

.bottom-cta-copy p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.bottom-cta-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

.cta-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cta-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cta-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 52px 32px;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.footer-nav a:hover {
  color: var(--text-body);
  background: var(--bg-off);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.footer-copy a {
  color: var(--text-muted);
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding: 88px 32px 60px;
  text-align: center;
  background: var(--bg-off);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #c5d5ff 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.4;
  pointer-events: none;
}

.page-header h1 {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  color: var(--text-heading);
  margin-bottom: 10px;
  position: relative;
  animation: fadeUp 0.6s var(--ease-out-expo) both;
}

.page-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  animation: fadeUp 0.6s var(--ease-out-expo) 0.1s both;
}

/* ============================================
   CONTENT SECTION (legal pages)
   ============================================ */
.content-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 32px 80px;
  animation: fadeUp 0.6s var(--ease-out-expo) 0.15s both;
}

.content-section h2 {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-heading);
  margin: 44px 0 14px;
  letter-spacing: -0.01em;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section p,
.content-section li {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.content-section ul {
  list-style: none;
  padding: 0;
}

.content-section ul li {
  padding-left: 18px;
  position: relative;
}

.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
}

.content-section a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.content-section a:hover {
  border-bottom-color: var(--primary);
}

.content-section strong {
  color: var(--text-heading);
  font-weight: 600;
}

.section-divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 36px 0;
}

/* ============================================
   SUPPORT PAGE
   ============================================ */
.support-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 32px 80px;
  animation: fadeUp 0.6s var(--ease-out-expo) 0.15s both;
}

.support-contact-card {
  background: var(--primary-subtle);
  border: 1px solid var(--primary-light);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.support-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-contact-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.support-contact-card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.support-contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.support-contact-card a {
  font-weight: 600;
  font-size: 1rem;
}

.support-section {
  margin-bottom: 44px;
}

.support-section h2 {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-heading);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.support-section p {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 10px;
}

.support-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

.support-checklist li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 8px;
}

.support-checklist strong {
  font-weight: 600;
  color: var(--text-heading);
}

.support-response-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.support-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.support-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

.support-step-num {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.troubleshoot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.troubleshoot-item {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.troubleshoot-item strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-heading);
  display: block;
}

.troubleshoot-item span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-page-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 32px 80px;
  animation: fadeUp 0.6s var(--ease-out-expo) 0.15s both;
}

.faq-page-body .faq-list {
  max-width: 100%;
  margin-top: 0;
}

/* ============================================
   SIMPLE CONTENT (legacy)
   ============================================ */
.simple-content {
  text-align: center;
  padding: 0 32px 120px;
  animation: fadeUp 0.6s var(--ease-out-expo) 0.2s both;
}

.simple-content p {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 480px;
  margin: 0 auto 16px;
  line-height: 1.75;
}

.simple-content a {
  font-weight: 600;
}

/* ============================================
   DELAY CALLOUT STRIP
   ============================================ */
.delay-callout {
  padding: 0 0 48px;
  background: var(--bg-white);
  position: relative;
  z-index: 1;
}

.delay-callout-inner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--primary-subtle);
  border: 1px solid var(--primary-light);
  border-radius: 16px;
  padding: 24px 28px;
  margin: -32px 0 0;
  position: relative;
  z-index: 2;
}

.delay-callout-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.delay-callout-icon svg {
  width: 20px;
  height: 20px;
}

.delay-callout-text {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.7;
}

.delay-callout-text strong {
  color: var(--text-heading);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

/* ============================================
   FEATURE PRO BADGE
   ============================================ */
.feature-card {
  position: relative;
}

.feature-card-pro {
  border-color: var(--primary-light);
}

.feature-pro-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
}

/* ============================================
   SMART CANCEL LAYOUT + FLOW DIAGRAM
   ============================================ */
.smart-cancel-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

/* Flow diagram */
.sc-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 220px;
  flex-shrink: 0;
}

.scf-node {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: center;
  width: 100%;
}

.scf-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.scf-icon svg {
  width: 18px;
  height: 18px;
}

.scf-trigger .scf-icon {
  background: rgba(220, 38, 38, 0.2);
  color: #f87171;
}

.scf-delay .scf-icon {
  background: rgba(51, 101, 247, 0.25);
  color: #93b4ff;
}

.scf-node span {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.3;
}

.scf-node small {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  display: block;
  margin-top: 3px;
}

/* animated progress bar inside delay node */
.scf-pulse-bar {
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 100px;
  margin-top: 12px;
  overflow: hidden;
}

.scf-pulse-fill {
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, var(--primary), #93b4ff);
  border-radius: 100px;
  animation: barPulse 2.4s ease-in-out infinite;
}

@keyframes barPulse {
  0%   { width: 10%; opacity: 0.6; }
  50%  { width: 80%; opacity: 1; }
  100% { width: 10%; opacity: 0.6; }
}

.scf-arrow {
  display: flex;
  justify-content: center;
  height: 28px;
}

.scf-arrow svg {
  width: 12px;
  height: 28px;
}

.scf-branch-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  overflow: hidden;
}

.scf-outcome {
  flex: 1;
  padding: 14px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scf-cancel {
  background: rgba(220, 38, 38, 0.1);
}

.scf-send {
  background: rgba(34, 197, 94, 0.1);
}

.scf-outcome-icon svg {
  width: 24px;
  height: 24px;
}

.scf-outcome span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.scf-outcome small {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.45);
  display: block;
}

.scf-branch-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ============================================
   SCROLL ANIMATIONS (GSAP-driven base states)
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback for no-JS / reduced-motion */
@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-animate].visible {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
    will-change: auto;
  }
  .hero-copy, .hero-visual, .page-header h1, .page-header p,
  .content-section, .faq-page-body, .support-body {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .btn, .feature-card, .problem-card, .plan, .faq-item,
  .flow-step, .why-pro-card, .compare-table, .nav-desktop a,
  .footer-nav a {
    transition: none !important;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ============================================
   MICRO-INTERACTIONS (hover / active states)
   ============================================ */

/* --- Buttons --- */
.btn {
  transition: background 0.2s, color 0.2s, border-color 0.2s,
              box-shadow 0.25s cubic-bezier(0.16,1,0.3,1),
              transform 0.25s cubic-bezier(0.16,1,0.3,1);
}

.btn:hover {
  transform: translateY(-2px) scale(1.03);
}

.btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.1s;
}

.btn-primary:hover {
  box-shadow: 0 4px 16px rgba(51, 101, 247, 0.3), 0 8px 28px rgba(51, 101, 247, 0.15);
}

.btn-secondary:hover {
  box-shadow: var(--shadow-md);
}

/* --- Feature / Problem cards --- */
.feature-card,
.problem-card {
  transition: transform 0.35s var(--ease-out-expo),
              box-shadow 0.35s var(--ease-out-expo),
              border-color 0.3s;
}

.feature-card:hover,
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

/* --- Pricing plans --- */
.plan {
  transition: transform 0.35s var(--ease-out-expo),
              box-shadow 0.35s var(--ease-out-expo);
}

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

/* --- FAQ items --- */
.faq-item {
  transition: border-color 0.3s var(--ease-out-smooth),
              box-shadow 0.3s var(--ease-out-smooth);
}

.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

/* --- Flow steps (How it works) --- */
.flow-step {
  transition: transform 0.3s var(--ease-out-expo),
              box-shadow 0.3s var(--ease-out-expo);
}

.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* --- Why Pro template cards --- */
.why-pro-card {
  transition: transform 0.3s var(--ease-out-expo),
              box-shadow 0.3s var(--ease-out-expo);
}

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

/* --- Comparison table rows --- */
.compare-table tbody tr {
  transition: background 0.2s;
}

.compare-table tbody tr:hover {
  background: var(--bg-off);
}

/* --- Nav link underline grow effect --- */
.nav-desktop a {
  position: relative;
  overflow: hidden;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1),
              left 0.3s cubic-bezier(0.16,1,0.3,1);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 60%;
  left: 20%;
}

/* --- Sticky header scroll state --- */
.site-header {
  transition: box-shadow 0.4s cubic-bezier(0.16,1,0.3,1),
              background 0.4s;
}

.site-header.scrolled {
  box-shadow: 0 1px 8px rgba(0, 20, 93, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

/* --- Phone mockup subtle float --- */
.hero-visual .phone-frame {
  animation: phoneFloat 5s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* --- Notification card slide-in --- */
.hero-visual .phone-notif {
  animation: notifSlide 0.6s var(--ease-out-expo) 1.2s both;
}

@keyframes notifSlide {
  from { opacity: 0; transform: translateX(-24px) scale(0.92); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* --- CTA stat number subtle glow --- */
.cta-stat-num {
  transition: text-shadow 0.3s;
}

.cta-stat:hover .cta-stat-num {
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.3);
}

/* --- Smart cancel flow diagram pulse --- */
.scf-pulse-fill {
  will-change: width;
}

/* --- Status dot live pulse --- */
@keyframes statusPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.5; }
}

.scf-delay .scf-icon svg circle {
  animation: statusPulse 2.2s ease-in-out infinite;
}

/* --- Footer link hover lift --- */
.footer-nav a {
  transition: color 0.2s, background 0.2s, transform 0.2s;
}

.footer-nav a:hover {
  transform: translateY(-1px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-features {
    align-items: flex-start;
    text-align: left;
  }

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

  .bottom-cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bottom-cta-visual {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .cta-stat {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-header {
    padding: 0 24px;
  }

  .hero {
    padding: 56px 0 60px;
  }

  .section-inner {
    padding: 0 24px;
  }

  .problem {
    padding: 64px 0;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .how-it-works {
    padding: 64px 0;
  }

  .flow-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .flow-connector {
    display: none;
  }

  .features {
    padding: 64px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 32px;
  }

  .smart-cancel {
    padding: 64px 0;
  }

  .smart-cancel-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sc-flow {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .delay-callout-inner {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    margin-top: -16px;
  }

  .pricing {
    padding: 64px 0;
  }

  .pricing-table {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
    max-width: 100%;
  }

  .plan {
    padding: 24px 20px;
  }

  .faq {
    padding: 64px 0;
  }

  .faq-list {
    margin-top: 32px;
  }

  .bottom-cta {
    padding: 64px 0;
  }

  .bottom-cta-visual {
    flex-wrap: wrap;
    gap: 24px;
  }

  .site-footer {
    padding: 40px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .page-header {
    padding: 60px 24px 40px;
  }

  .content-section {
    padding: 40px 24px 60px;
  }

  .support-body {
    padding: 40px 24px 60px;
  }

  .support-contact-card {
    flex-direction: column;
    gap: 14px;
    padding: 24px;
  }

  .faq-page-body {
    padding: 40px 24px 60px;
  }
}
