/* Shrike Digital — Minimalist Light/Dark Theme */

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

/* ─── Theme Variables ─── */

:root {
  --bg: #FAFAF9;
  --card: #FFFFFF;
  --card-border: rgba(0,0,0,0.06);
  --text: #111111;
  --text-muted: #777777;
  --text-faint: #AAAAAA;
  --accent: #111111;
  --accent-bg: #111111;
  --accent-text: #FFFFFF;
  --divider: #EEEEEE;
  --grid-line: rgba(0,0,0,0.015);
  --shadow: rgba(0,0,0,0.06);
  --tag-bg: #F5F5F5;
  --hero-grad: radial-gradient(circle, rgba(17,17,17,0.03) 0%, transparent 70%);
  --counter-bg: rgba(0,0,0,0.03);
  --nav-bg: rgba(250,250,249,0.85);
  --toggle-bg: rgba(0,0,0,0.04);
  --toggle-border: rgba(0,0,0,0.08);
  --selection-bg: #111111;
  --selection-text: #FFFFFF;
  --slider-track: #EEEEEE;
  --font-sans: 'DM Sans', -apple-system, system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'DM Mono', 'Fira Code', monospace;
}

[data-theme="dark"] {
  --bg: #0A0A0A;
  --card: #141414;
  --card-border: rgba(255,255,255,0.06);
  --text: #F0F0F0;
  --text-muted: #888888;
  --text-faint: #555555;
  --accent: #FFFFFF;
  --accent-bg: #FFFFFF;
  --accent-text: #000000;
  --divider: #1E1E1E;
  --grid-line: rgba(255,255,255,0.02);
  --shadow: rgba(0,0,0,0.3);
  --tag-bg: rgba(255,255,255,0.06);
  --hero-grad: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
  --counter-bg: rgba(255,255,255,0.04);
  --nav-bg: rgba(10,10,10,0.85);
  --toggle-bg: rgba(255,255,255,0.08);
  --toggle-border: rgba(255,255,255,0.1);
  --selection-bg: #FFFFFF;
  --selection-text: #000000;
  --slider-track: #1E1E1E;
}

/* ─── Base ─── */

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.4s ease, color 0.4s ease;
}

::selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}

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

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

/* ─── Animations ─── */

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

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

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Navigation ─── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 16px 24px;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-theme="dark"] .nav-logo img {
  filter: invert(1);
}

.nav-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  font-family: var(--font-serif);
}

.nav-cta {
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--accent-bg);
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: opacity 0.2s;
}

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

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  font-family: var(--font-sans);
}

.nav-link:hover {
  color: var(--text);
}

/* ─── Dark Mode Toggle ─── */

.theme-toggle {
  position: fixed;
  top: 76px;
  right: 20px;
  z-index: 1000;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--toggle-bg);
  border: 1px solid var(--toggle-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  font-size: 18px;
  line-height: 1;
}

.theme-toggle:hover {
  transform: scale(1.05);
}

/* ─── Hero ─── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--hero-grad);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px var(--shadow);
}

.hero-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-theme="dark"] .hero-icon img {
  filter: invert(1);
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px 0;
  font-family: var(--font-serif);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 23px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.5;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent-bg);
  color: var(--accent-text);
  box-shadow: 0 4px 20px var(--shadow);
}

.btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--card-border);
}

.btn-outline:hover {
  border-color: var(--text-faint);
}

.hero-scroll {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-label {
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-mono);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-faint), transparent);
  animation: pulse 2s ease-in-out infinite;
}

/* ─── Section Labels ─── */

.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px 0;
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ─── Live Counters ─── */

.counters {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  background: var(--counter-bg);
  border-radius: 16px;
  padding: 24px 16px;
  border: 1px solid var(--card-border);
}

.counter-item {
  text-align: center;
  padding: 8px 0;
}

.counter-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.counter-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
}

.counter-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  margin-top: 2px;
}

/* ─── Pipeline Header ─── */

.pipeline-header {
  text-align: center;
  padding: 80px 24px 48px;
  max-width: 640px;
  margin: 0 auto;
}

/* ─── Interactive Pipeline ─── */

.pipeline {
  max-width: 700px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.pipeline-intro {
  text-align: center;
  margin-bottom: 32px;
}

.pipeline-intro h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px 0;
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

.pipeline-intro p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0 0 24px 0;
}

.pipeline-selectors {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}

.pipeline-select {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}

.pipeline-select:hover {
  border-color: var(--text-faint);
  color: var(--text);
}

.pipeline-select.active {
  background: var(--accent-bg);
  color: var(--accent-text);
  border-color: var(--accent-bg);
}

.btn-demo {
  padding: 12px 28px;
  border-radius: 10px;
  background: var(--accent-bg);
  color: var(--accent-text);
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all 0.3s ease;
}

.btn-demo:disabled {
  background: var(--tag-bg);
  color: var(--text-muted);
  cursor: default;
}

.pipeline-steps {
  display: flex;
  flex-direction: column;
  position: relative;
}

.pipeline-track {
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--divider);
  border-radius: 1px;
}

.pipeline-progress {
  position: absolute;
  left: 19px;
  top: 20px;
  width: 2px;
  border-radius: 1px;
  height: 0%;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: calc(100% - 40px);
}

.pipeline-step {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  opacity: 0.5;
  transition: all 0.5s ease;
}

.pipeline-step.active {
  opacity: 1;
}

.pipeline-step.past {
  opacity: 0.7;
}

.pipeline-step.dimmed {
  opacity: 0.25;
}

.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--tag-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text-muted);
  transition: all 0.4s ease;
  z-index: 1;
}

.pipeline-step.active .step-dot,
.pipeline-step.past .step-dot {
  color: #fff;
}

.pipeline-step.active .step-dot {
  transform: scale(1.15);
}

.step-content {
  padding-top: 4px;
}

.step-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  font-family: var(--font-sans);
}

.step-detail {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.pipeline-step.active .step-detail,
.pipeline-step.past .step-detail {
  max-height: 80px;
  opacity: 1;
}

/* ─── Service Cards ─── */

.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.service-card {
  background: var(--card);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  flex: 1 1 300px;
  max-width: 380px;
  min-width: 270px;
  box-shadow: 0 1px 3px var(--shadow), 0 0 0 1px var(--card-border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-2px);
}

.service-step-bg {
  position: absolute;
  top: -8px;
  right: 12px;
  font-size: 80px;
  font-weight: 800;
  opacity: 0.05;
  font-family: var(--font-mono);
  line-height: 1;
  pointer-events: none;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-step-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  font-family: var(--font-mono);
}

.service-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2px 0;
  font-family: var(--font-serif);
}

.service-subtitle {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-style: italic;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 16px 0;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.service-tag {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 16px;
  font-weight: 500;
  white-space: nowrap;
}

/* Service card accent colors */
.service-card[data-accent="green"] { --svc-color: #E8F5E9; --svc-accent: #43A047; }
.service-card[data-accent="blue"] { --svc-color: #E3F2FD; --svc-accent: #1E88E5; }
.service-card[data-accent="orange"] { --svc-color: #FFF3E0; --svc-accent: #F57C00; }
.service-card[data-accent="red"] { --svc-color: #FCE4EC; --svc-accent: #E53935; }
.service-card[data-accent="purple"] { --svc-color: #F3E5F5; --svc-accent: #8E24AA; }
.service-card[data-accent="teal"] { --svc-color: #E0F2F1; --svc-accent: #00897B; }

.service-card:hover {
  box-shadow: 0 20px 60px -12px color-mix(in srgb, var(--svc-accent, #111) 15%, transparent),
              0 0 0 1px color-mix(in srgb, var(--svc-accent, #111) 12%, transparent);
}

.service-card .service-step-bg { color: var(--svc-accent); }
.service-card .service-icon { background: var(--svc-color); color: var(--svc-accent); }
.service-card .service-step-label { color: var(--svc-accent); }
.service-card .service-tag { background: var(--svc-color); color: var(--svc-accent); }

/* ─── Automation Showcase ─── */

.automations {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px 40px;
}

.automations-header {
  text-align: center;
  margin-bottom: 40px;
}

.automations-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px 0;
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

.automations-header p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

.automations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.automation-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 20px 18px;
}

.automation-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  font-family: var(--font-sans);
}

.automation-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ─── ROI Calculator ─── */

.calculator {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 24px;
}

.calculator-header {
  text-align: center;
  margin-bottom: 40px;
}

.calculator-header h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px 0;
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

.calculator-body {
  background: var(--card);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--card-border);
}

.slider-group {
  margin-bottom: 28px;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.slider-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-sans);
}

.slider-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-mono);
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--slider-track);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E53935;
  cursor: pointer;
  border: 3px solid var(--card);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E53935;
  cursor: pointer;
  border: 3px solid var(--card);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.calculator-results {
  border-top: 1px solid var(--divider);
  padding-top: 24px;
  margin-top: 8px;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  text-align: center;
}

.result-item-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  margin-bottom: 4px;
}

.result-item-label.red { color: #E53935; }
.result-item-label.green { color: #43A047; }

.result-item-value {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-mono);
}

.result-item-value.muted { color: var(--text-muted); }
.result-item-value.red { color: #E53935; font-size: 28px; }
.result-item-value.green { color: #43A047; }

.result-item-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.result-annual {
  text-align: center;
  margin-top: 20px;
}

.result-annual-badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(229, 57, 53, 0.06);
  color: #E53935;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-mono);
}

/* ─── Verticals ─── */

.verticals {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}

.verticals-header {
  text-align: center;
  margin-bottom: 40px;
}

.verticals-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.vertical-card {
  background: var(--card);
  border-radius: 14px;
  padding: 24px 20px;
  border: 1px solid var(--card-border);
}

.vertical-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.vertical-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  font-family: var(--font-serif);
}

.vertical-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ─── Pricing ─── */

.pricing {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px 0;
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

.pricing-header p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--card);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--card-border);
  position: relative;
}

.pricing-card.featured {
  background: var(--accent-bg);
  color: var(--accent-text);
  border: none;
  box-shadow: 0 24px 80px -12px var(--shadow);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #E53935;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-mono);
}

.pricing-tier {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.5;
  margin-bottom: 4px;
  font-family: var(--font-mono);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-amount .price {
  font-size: 42px;
  font-weight: 700;
  font-family: var(--font-serif);
}

.pricing-amount .period {
  font-size: 14px;
  opacity: 0.5;
}

.pricing-tagline {
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 24px;
  font-style: italic;
}

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

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  opacity: 0.85;
}

.feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card .feature-check {
  background: var(--tag-bg);
}

.pricing-card.featured .feature-check {
  background: rgba(255,255,255,0.1);
}

.pricing-btn {
  width: 100%;
  margin-top: 28px;
  padding: 12px 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: opacity 0.2s;
}

.pricing-card .pricing-btn {
  border: 1px solid var(--card-border);
  background: transparent;
  color: var(--text);
}

.pricing-card.featured .pricing-btn {
  border: 1px solid rgba(255,255,255,0.2);
  background: var(--accent-text);
  color: var(--accent-bg);
}

.pricing-btn:hover {
  opacity: 0.8;
}

/* ─── Footer ─── */

.footer {
  text-align: center;
  padding: 80px 24px 48px;
  border-top: 1px solid var(--divider);
  margin-top: 40px;
}

.footer h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px 0;
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

.footer > p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.footer-email {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent-bg);
  color: var(--accent-text);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  box-shadow: 0 4px 24px var(--shadow);
  transition: opacity 0.2s;
}

.footer-email:hover {
  opacity: 0.85;
}

.footer-bottom {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-faint);
  font-family: var(--font-mono);
}

.footer-location {
  font-size: 12px;
  color: var(--text-faint);
}

/* ─── Booking Section ─── */

.booking {
  padding: 80px 24px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.booking-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 400;
  margin-top: 12px;
}

.booking-header p {
  color: var(--text-muted);
  font-size: 17px;
  margin-top: 12px;
  line-height: 1.7;
}

.booking-embed {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: 0 4px 24px var(--shadow);
}

.booking-embed iframe {
  display: block;
  width: 100%;
  min-height: 600px;
}

.booking-alt {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.booking-alt a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

.booking-alt a:hover {
  color: var(--text);
}

/* ─── Automations Page ─── */

.auto-page-header {
  padding: 120px 24px 40px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.auto-page-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  margin-top: 12px;
}

.auto-page-desc {
  color: var(--text-muted);
  font-size: 17px;
  margin-top: 16px;
  line-height: 1.7;
}

.auto-search-wrap {
  position: relative;
  max-width: 420px;
  margin: 32px auto 0;
}

.auto-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-faint);
  pointer-events: none;
}

.auto-search {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: var(--card);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auto-search:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

[data-theme="dark"] .auto-search:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
}

.auto-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.auto-filter {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--card-border);
  background: var(--card);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.auto-filter:hover {
  border-color: var(--text-faint);
  color: var(--text);
}

.auto-filter.active {
  background: var(--accent-bg);
  color: var(--accent-text);
  border-color: var(--accent-bg);
}

.auto-filter-count {
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.7;
}

.auto-categories {
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auto-category {
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auto-category:hover {
  border-color: var(--divider);
}

.auto-category.open {
  box-shadow: 0 4px 24px var(--shadow);
}

.auto-category-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-sans);
  text-align: left;
}

.auto-category-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.auto-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--tag-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.auto-category-icon svg {
  width: 20px;
  height: 20px;
  color: var(--text);
}

.auto-category-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.auto-category-count {
  font-size: 13px;
  color: var(--text-faint);
  font-family: var(--font-mono);
}

.auto-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-faint);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.auto-category.open .auto-chevron {
  transform: rotate(180deg);
}

.auto-category-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}

.auto-category.open .auto-category-body {
  padding: 0 24px 20px;
}

.auto-item {
  padding: 16px 0;
  border-top: 1px solid var(--divider);
}

.auto-item:first-child {
  border-top: 1px solid var(--divider);
}

.auto-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.auto-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.auto-cta-section {
  text-align: center;
  padding: 60px 24px 80px;
  max-width: 520px;
  margin: 0 auto;
}

.auto-cta-section h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  margin-top: 12px;
}

.auto-cta-section p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 16px 0 28px;
  line-height: 1.7;
}

/* ─── Responsive ─── */

@media (max-width: 768px) {
  .nav {
    padding: 12px 16px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 13px;
  }

  .hero {
    padding: 80px 16px 40px;
    min-height: auto;
  }

  .hero-scroll {
    margin-top: 40px;
  }

  .services {
    padding: 0 16px 40px;
  }

  .service-card {
    max-width: 100%;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .verticals-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .counters-grid {
    grid-template-columns: 1fr 1fr;
  }

  .auto-page-header {
    padding: 100px 16px 32px;
  }

  .auto-categories {
    padding: 16px 16px 40px;
  }

  .auto-category-header {
    padding: 16px;
  }

  .auto-category-body {
    padding: 0 16px;
  }

  .auto-category.open .auto-category-body {
    padding: 0 16px 16px;
  }

  .auto-category-title {
    font-size: 15px;
  }

  .auto-filters {
    gap: 6px;
  }

  .auto-filter {
    padding: 6px 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .verticals-grid {
    grid-template-columns: 1fr;
  }

  .counters-grid {
    grid-template-columns: 1fr 1fr;
  }

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