/* ===========================
   CSS VARIABLES & RESET
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --teal:         #01a3b4;
  --teal-light:   #5cc8d4;
  --teal-dim:     rgba(1,163,180,.15);
  --teal-border:  rgba(1,163,180,.3);
  --orange:       #f07a28;
  --orange-light: #fb924c;
  --orange-dim:   rgba(240,122,40,.12);
  --orange-border:rgba(240,122,40,.28);
  --green:        #10b981;

  /* Dark palette */
  --bg-base:      #080e1c;   /* deepest — page bg, footer */
  --bg-surface:   #0e1628;   /* cards, panels */
  --bg-raised:    #162035;   /* hover states, alt sections */
  --bg-blue:      #0a1740;   /* workflow section */
  --border:       rgba(255,255,255,.07);
  --border-hover: rgba(255,255,255,.14);

  /* Text */
  --text-primary:   #e8edf5;
  --text-secondary: rgba(232,237,245,.55);
  --text-muted:     rgba(232,237,245,.3);

  /* Legacy aliases kept for button variants */
  --dark:   #080e1c;
  --dark-2: #0e1628;
  --white:  #ffffff;
  --gray-100: #f3f4f6;
  --gray-300: rgba(255,255,255,.12);
  --gray-500: rgba(232,237,245,.45);
  --gray-700: rgba(232,237,245,.7);

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  24px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.4);
  --shadow-md:  0 4px 20px rgba(0,0,0,.4);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.5);

  --font-sans:    'Inter', system-ui, sans-serif;
  --font-display: 'Poppins', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   LAYOUT
   =========================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ===========================
   TYPOGRAPHY
   =========================== */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }

/* Emphasis reads white, not the inherited grey of body copy.
   Class-scoped accent rules (e.g. .reason-why strong) win on specificity. */
strong, b { color: var(--white); }

.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: .925rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: #019aaa;
  border-color: #019aaa;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(1,163,180,.4);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal-border);
}
.btn-outline:hover {
  background: var(--teal-dim);
  border-color: var(--teal);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--bg-raised); color: var(--text-primary); }

.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-white:hover { background: #e0f8fb; transform: translateY(-1px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

.btn-lg { padding: 14px 30px; font-size: 1rem; border-radius: var(--radius-lg); }

.full-width { width: 100%; }

/* ===========================
   NAV
   =========================== */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,14,28,.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; }
/* Image logo mark in header/footer (replaces text glyph) */
img.logo-icon {
  height: 1.6rem;
  width: auto;
  display: block;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 8px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .15s;
}
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: .2s;
}

.mobile-menu {
  display: none;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--text-secondary); }

/* ===========================
   SECTION HEADER
   =========================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin: 12px 0 16px;
  color: var(--text-primary);
}
.section-header p { color: var(--text-secondary); font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--teal-dim);
  color: var(--teal-light);
  border: 1px solid var(--teal-border);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ===========================
   HERO
   =========================== */
.hero {
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(1,163,180,.18) 0%, transparent 60%),
              var(--bg-base);
  padding: 80px 0 0;
  overflow: hidden;
}

.hero-inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 56px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-secondary);
}
.avatars { display: flex; }
.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-surface);
  margin-left: -8px;
  object-fit: cover;
}
.avatars img:first-child { margin-left: 0; }

/* Citation Dashboard Mockup */
.hero-mockup-wrapper {
  display: flex;
  justify-content: center;
}

.hero-mockup {
  width: 100%;
  max-width: 860px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  box-shadow: 0 -4px 80px rgba(1,163,180,.12);
  overflow: hidden;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-raised);
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green  { background: #28ca41; }
.mockup-url {
  margin-left: 10px;
  font-size: .78rem;
  color: var(--text-muted);
  background: var(--bg-surface);
  padding: 2px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.mockup-body {
  display: flex;
  min-height: 260px;
}

.mockup-sidebar {
  width: 52px;
  background: rgba(0,0,0,.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 18px;
  border-right: 1px solid var(--border);
}
.sidebar-icon {
  font-size: 1.1rem;
  opacity: .35;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: .2s;
}
.sidebar-icon.active { opacity: 1; background: var(--teal-dim); }
.sidebar-icon:hover  { opacity: .7; }

.mockup-main { flex: 1; padding: 20px; }

.mockup-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.mockup-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.badge-teal {
  background: var(--teal);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  cursor: pointer;
}


/* Pages table in mockup */
.mockup-pages {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  font-size: .68rem;
}

.page-row {
  display: grid;
  grid-template-columns: 2fr .6fr .5fr .8fr;
  gap: 6px;
  align-items: center;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.03);
}

.page-row.header-row {
  background: transparent;
  padding-bottom: 2px;
}

.page-col { color: var(--text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.header-row .page-col { color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .6rem; }

.col-count { text-align: center; font-weight: 600; color: var(--text-primary); }
.col-grade  { text-align: center; font-weight: 700; padding: 2px 6px; border-radius: 4px; font-size: .65rem; }
.col-status { font-weight: 600; font-size: .65rem; }

.grade-a { background: rgba(16,185,129,.2);  color: #10b981; }
.grade-b { background: rgba(1,163,180,.2);   color: var(--teal-light); }
.grade-d { background: rgba(240,122,40,.2);  color: var(--orange-light); }

.status-good { color: #10b981; }
.status-warn { color: var(--orange-light); }
.status-rise { color: var(--teal-light); }

.mockup-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.stat-pill {
  background: var(--teal-dim);
  color: var(--teal-light);
  border: 1px solid var(--teal-border);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}

/* ===========================
   LOGOS BAR
   =========================== */
.logos-bar {
  background: var(--bg-surface);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-label {
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 28px;
}
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 36px;
}
.platform-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .15s;
}
.platform-logo:hover { color: var(--teal-light); }
.platform-logo svg { width: 20px; height: 20px; }

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.feature-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  transform: translateY(-2px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.teal-bg   { background: var(--teal-dim);   border: 1px solid var(--teal-border); }
.orange-bg { background: var(--orange-dim); border: 1px solid var(--orange-border); }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.feature-card p { font-size: .9rem; color: var(--text-secondary); line-height: 1.65; }

.coming-soon {
  display: inline-block;
  background: var(--orange-dim);
  color: var(--orange-light);
  border: 1px solid var(--orange-border);
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: .04em;
}

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

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.step-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.step-content p  { font-size: .875rem; color: var(--text-secondary); line-height: 1.65; }

.step-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  align-self: center;
  flex-shrink: 0;
  margin-top: -20px;
}

/* ===========================
   WORKFLOW DEMO
   =========================== */
.workflow-demo { background: var(--bg-base); }

.workflow-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.workflow-text .section-tag {
  background: rgba(1,163,180,.15);
  color: var(--teal-light);
  border-color: var(--teal-border);
}
.workflow-text h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); color: var(--text-primary); margin: 16px 0 20px; }
.workflow-text p  { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; }

.workflow-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.workflow-list li { color: var(--text-secondary); font-size: .9rem; }

.workflow-visual { display: flex; flex-direction: column; align-items: center; gap: 4px; }

.workflow-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  width: 280px;
  transition: .2s;
}
.workflow-card.source  { background: rgba(1,163,180,.12);  border: 1px solid rgba(1,163,180,.3); }
.workflow-card.action  { background: rgba(240,122,40,.1);   border: 1px solid rgba(240,122,40,.28); }
.workflow-card.publish { background: rgba(16,185,129,.1);   border: 1px solid rgba(16,185,129,.28); }

.wf-icon { font-size: 1.5rem; }
.wf-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); }
.wf-name  { font-size: .9rem; font-weight: 600; color: var(--text-primary); }

.wf-arrow { font-size: 1.2rem; color: var(--text-muted); }

/* ===========================
   PLATFORMS
   =========================== */
.platforms { background: var(--bg-surface); }

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 680px;
  margin: 0 auto;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: default;
}
.platform-card:hover {
  border-color: var(--teal-border);
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
  transform: translateY(-2px);
  color: var(--text-primary);
}

.platform-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
}

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

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  font-size: .9rem;
}

.toggle-label { color: var(--text-muted); font-weight: 500; }
.toggle-label.active { color: var(--text-primary); font-weight: 600; }

.toggle-switch { position: relative; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute;
  inset: 0;
  background: var(--bg-raised);
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  cursor: pointer;
  transition: .2s;
}
.slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: .2s;
}
.toggle-switch input:checked + .slider { background: var(--teal); border-color: var(--teal); }
.toggle-switch input:checked + .slider::before { background: var(--white); transform: translateX(20px); }

.save-badge {
  background: rgba(16,185,129,.2);
  color: var(--green);
  border: 1px solid rgba(16,185,129,.3);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto 24px;
}

.pricing-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.pricing-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), 0 12px 40px rgba(1,163,180,.2);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  transition: .2s;
}
.price-period { font-size: .9rem; color: var(--text-muted); }

.plan-desc { font-size: .875rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }

.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { font-size: .875rem; color: var(--text-secondary); }
.plan-features li.muted { color: var(--text-muted); }

.pricing-note { text-align: center; color: var(--text-muted); font-size: .875rem; }

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials { background: var(--bg-surface); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  padding: 32px;
  background: var(--bg-raised);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color .2s;
}
.testimonial-card:hover { border-color: var(--border-hover); }

.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-card p {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author strong { display: block; font-size: .9rem; color: var(--text-primary); }
.testimonial-author span  { font-size: .8rem; color: var(--text-muted); }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, #015f6b 0%, var(--bg-blue) 50%, #7a3610 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}

.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}
.cta-inner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--bg-base); padding: 64px 0 0; border-top: 1px solid var(--border); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}

.footer-brand .logo { color: var(--text-primary); margin-bottom: 14px; }
.footer-brand p {
  font-size: .875rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .9rem;
  transition: background .2s, color .2s;
}
.footer-socials a:hover { background: var(--teal-dim); color: var(--teal-light); border-color: var(--teal-border); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a  { font-size: .875rem; color: var(--text-secondary); transition: color .15s; }
.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom p { font-size: .8rem; color: var(--text-muted); text-align: center; }

/* ===========================
   MINIMAL / BETA FOOTER
   (shared: index, privacy, terms)
   =========================== */
.beta-footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.beta-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.beta-footer-links { display: flex; gap: 20px; }
.beta-footer-links a {
  font-size: .8rem;
  color: var(--text-muted);
  transition: color .15s;
}
.beta-footer-links a:hover { color: var(--text-secondary); }
.beta-footer p { font-size: .8rem; color: var(--text-muted); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-inner { grid-template-columns: 1fr; gap: 40px; }
  .workflow-visual { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .steps { flex-direction: column; align-items: stretch; gap: 32px; }
  .step-divider { display: none; }
  .step { text-align: left; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-title { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .platforms-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .steps { gap: 24px; }
  .workflow-visual { flex-direction: column; }
}
