/* ============================================================
   ORCHIDEA OS — solaronsteroids-style redesign
   Bold, high-conversion, premium aesthetic
   ============================================================ */

/* === BASE VARIABLES === */
:root {
  --bg: #080a0c;
  --bg-card: #111318;
  --bg-card-hover: #181b22;
  --bg-light: #f4f3ef;
  --bg-light-card: #ffffff;
  --fg: #f0ede6;
  --fg-dark: #0c0e11;
  --fg-muted: #6e6c68;
  --fg-muted-dark: #4a4844;
  --accent: #e8a838;
  --accent-dim: rgba(232, 168, 56, 0.10);
  --accent-dim-dark: rgba(232, 168, 56, 0.06);
  --border: #1e2028;
  --border-light: #e0dfd9;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; }
h1 { letter-spacing: -0.03em; }
h2 { letter-spacing: -0.02em; }
h3 { letter-spacing: -0.01em; }

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

/* === SCROLL REVEAL === */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }

/* ============================================================
   NAVIGATION — sticky, glass-blur
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 4rem;
  background: rgba(8, 10, 12, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding var(--transition), background var(--transition);
}

.nav.scrolled {
  padding: 0.9rem 4rem;
  background: rgba(8, 10, 12, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--bg);
  background: var(--accent);
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.nav-cta:hover {
  background: #f5b942;
  transform: translateY(-1px);
}

/* ============================================================
   HERO — full-width, bold, video-placeholder bg
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 4rem 6rem;
  overflow: hidden;
}

/* Animated gradient bg — placeholder for video */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232, 168, 56, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(80, 120, 200, 0.04) 0%, transparent 50%),
    linear-gradient(160deg, #0d0f14 0%, #080a0c 50%, #0a0c10 100%);
  z-index: 0;
}

/* Subtle animated grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232, 168, 56, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 168, 56, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(60, 100, 200, 0.05) 0%, transparent 70%);
  bottom: -50px; left: -80px;
  animation: orbFloat 12s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

/* Hero video placeholder container */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video,
.hero-video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* REPLACE: add autoplay muted loop video element here */
.hero-video-placeholder {
  background:
    linear-gradient(135deg, rgba(232,168,56,0.05) 0%, transparent 50%),
    linear-gradient(225deg, rgba(40,60,120,0.06) 0%, transparent 50%),
    #0d0f14;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
  padding: 0.45rem 1rem;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 168, 56, 0.2);
  border-radius: 100px;
}

.hero-headline {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 800;
  line-height: 1.02;
  color: var(--fg);
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
}

.hero-headline span {
  background: linear-gradient(135deg, var(--accent) 0%, #f0c060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.75;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.trust-sep { color: rgba(255,255,255,0.12); font-size: 1.2rem; }

.trust-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.25rem;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg-muted);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* ============================================================
   SERVICES — dark bg card grid
   ============================================================ */
.services {
  padding: 7rem 4rem;
  background: var(--bg);
  position: relative;
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
}

.services-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--fg);
  margin-top: 0.75rem;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.ad-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  cursor: default;
}
.ad-type-card:hover {
  border-color: rgba(232, 168, 56, 0.4);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.ad-type-icon {
  font-size: 1.6rem;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.ad-type-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}

.ad-type-card p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.65;
  flex: 1;
}

.ad-type-best { margin-top: 0.5rem; }

.best-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.6rem;
}

.ad-type-best ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ad-type-best li {
  font-size: 0.78rem;
  color: var(--fg-muted);
  padding-left: 1rem;
  position: relative;
}
.ad-type-best li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
  top: 1px;
}

/* ============================================================
   OUTCOMES / FUNNEL — light section (alternating)
   ============================================================ */
.outcomes {
  padding: 7rem 4rem;
  background: var(--bg-light);
  color: var(--fg-dark);
}

.outcomes-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.outcomes-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--fg-dark);
  margin-top: 0.75rem;
}

.outcomes-header .section-label { color: #c47d12; }

.funnel-flow {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.funnel-step {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  padding: 1.5rem 1rem;
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  min-width: 130px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.funnel-step:hover {
  border-color: #c47d12;
  box-shadow: 0 8px 30px rgba(200,130,20,0.12);
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 800;
  color: white;
  background: #1a1a2e;
  width: 1.4rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.step-icon { font-size: 1.5rem; }

.step-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fg-dark);
}

.step-desc {
  font-size: 0.7rem;
  color: var(--fg-muted-dark);
  line-height: 1.4;
}

.funnel-arrow {
  font-size: 1.2rem;
  color: #c4bfb8;
  padding: 0 0.4rem;
  flex-shrink: 0;
  align-self: center;
}

/* ============================================================
   AUTOMATIONS — dark bg
   ============================================================ */
.automations {
  padding: 7rem 4rem;
  background: var(--bg);
}

.automations-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.automations-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--fg);
  margin-top: 0.75rem;
}

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

.auto-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.25s, transform 0.25s;
}
.auto-card:hover {
  border-color: rgba(232, 168, 56, 0.4);
  transform: translateY(-3px);
}

.auto-icon { font-size: 1.5rem; }

.auto-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

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

/* ============================================================
   RESULTS — light section
   ============================================================ */
.results {
  padding: 7rem 4rem;
  background: var(--bg-light);
}

.results-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.results-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--fg-dark);
  margin-top: 0.75rem;
}

.results-header .section-label { color: #c47d12; }

.results-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.result-stat {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.result-stat:hover {
  border-color: #c47d12;
  box-shadow: 0 8px 30px rgba(200,130,20,0.1);
}

.result-stat-wide { grid-column: span 2; }

.result-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.result-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--fg-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

/* ============================================================
   PRICING — dark bg
   ============================================================ */
.pricing {
  padding: 7rem 4rem;
  background: var(--bg);
}

.pricing-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.pricing-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--fg);
  margin-top: 0.75rem;
}

.pricing-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: 0.75rem;
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.pricing-card:hover {
  border-color: rgba(232, 168, 56, 0.5);
  transform: translateY(-4px);
}

.pricing-card-featured {
  border-color: var(--accent) !important;
  background: var(--accent-dim);
}

.tier-badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.tier-period {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--fg-muted);
}

.tier-spend {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.tier-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tier-features li {
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding-left: 1.2rem;
  position: relative;
}
.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  top: 1px;
}

/* ============================================================
   MONITORING — light section
   ============================================================ */
.monitoring {
  padding: 7rem 4rem;
  background: var(--bg-light);
}

.monitoring-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.monitoring-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--fg-dark);
  margin-top: 0.75rem;
}

.monitoring-header .section-label { color: #c47d12; }

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

.monitor-item {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.monitor-item:hover {
  border-color: #c47d12;
  box-shadow: 0 8px 30px rgba(200,130,20,0.1);
  transform: translateY(-3px);
}

.monitor-icon { font-size: 1.4rem; }

.monitor-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg-dark);
}

.monitor-desc {
  font-size: 0.8rem;
  color: var(--fg-muted-dark);
  line-height: 1.6;
}

/* ============================================================
   TEAM — dark bg
   ============================================================ */
.team {
  padding: 7rem 4rem;
  background: var(--bg);
}

.team-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.team-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--fg);
  margin-top: 0.75rem;
}

.team-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s, transform 0.25s;
}
.team-card:hover {
  border-color: rgba(232, 168, 56, 0.5);
  transform: translateY(-4px);
}

.team-avatar {
  width: 4rem;
  height: 4rem;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 168, 56, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
}

.team-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.team-bio {
  font-size: 0.83rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-top: 0.25rem;
}

.team-cert {
  max-width: 1200px;
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cert-badge {
  background: var(--accent-dim);
  border: 1px solid rgba(232, 168, 56, 0.3);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.cert-text {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ============================================================
   CTA SECTION — bold, centered
   ============================================================ */
.cta-section {
  padding: 8rem 4rem;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.cta-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 3rem;
}

.cta-actions { margin-bottom: 1.75rem; }

.cta-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta-meta-item {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.cta-meta-sep { color: rgba(255,255,255,0.1); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 1rem 2.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #f0b842;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 168, 56, 0.35);
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.05rem;
  border-radius: 10px;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.btn-tier {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-tier:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

.btn-tier-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-tier-primary:hover { background: #f0b842 !important; color: var(--bg) !important; border-color: #f0b842 !important; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 3rem 4rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--fg); }

.footer-copy {
  width: 100%;
  font-size: 0.7rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(3, 1fr); }
  .result-stat-wide { grid-column: span 3; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav, .hero, .services, .outcomes, .automations,
  .results, .pricing, .monitoring, .team,
  .cta-section, .footer {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .hero { padding-top: 6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .auto-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-stat-wide { grid-column: span 1; }
  .monitoring-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .funnel-flow { gap: 0.25rem; }
  .funnel-arrow { padding: 0 0.2rem; }
  .footer { gap: 1rem; }
  .footer-links { margin-left: 0; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .nav-right { gap: 0.75rem; }
  .nav-tagline { display: none; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.75rem; }
  .auto-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .monitoring-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .pricing-grid { gap: 1rem; }
}