/* app/assets/stylesheets/marketing.css
   Styles for all marketing/public pages.
   Imported only in layouts/marketing.html.erb — NOT in the app layout.
*/

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

:root {
  --orange:      #FF8B03;
  --orange-l:    #ffa733;
  --orange-glow: rgba(255,139,3,0.25);
  --btn-blue-1:  #4d2ff6;
  --btn-blue-2:  #0d76f0;
  --btn-blue-glow: rgba(77,47,246,0.3);
  --indigo:      #4f46e5;
  --indigo-l:    #6366f1;
  --dark:        #09090f;
  --dark-2:      #111118;
  --dark-card:   rgba(255,255,255,0.04);
  --dark-border: rgba(255,255,255,0.08);
  --light:       #fafaf9;
  --light-2:     #f1f0ef;
  --text-w:      #f8fafc;
  --text-m:      #94a3b8;
  --text-d:      #1e293b;
  --text-d2:     #475569;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--dark);
  color: var(--text-w);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Plus Jakarta Sans', sans-serif; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Gradient text ────────────────────────────────────────── */
.grad-text {
  background: linear-gradient(135deg, var(--orange), #f43f5e);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.grad-text-blue {
  background: linear-gradient(135deg, var(--indigo-l), #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; border-radius: 10px;
  cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap;
}
.btn-orange {
  background: linear-gradient(135deg, var(--btn-blue-1), var(--btn-blue-2));
  color: white; padding: 14px 28px; font-size: 15px;
  box-shadow: 0 0 32px var(--btn-blue-glow), 0 4px 16px rgba(13,118,240,0.3);
}
.btn-orange:hover { transform: translateY(-1px); box-shadow: 0 0 48px var(--btn-blue-glow), 0 8px 24px rgba(13,118,240,0.4); }
.btn-ghost {
  background: transparent; color: var(--text-w);
  padding: 13px 24px; font-size: 15px;
  border: 1.5px solid var(--dark-border);
}
.btn-ghost:hover { background: var(--dark-card); border-color: rgba(255,255,255,0.16); }
.btn-sm { padding: 10px 20px !important; font-size: 13px !important; }
.btn-indigo {
  background: linear-gradient(135deg, var(--indigo), #4338ca);
  color: white; padding: 14px 28px; font-size: 15px;
  box-shadow: 0 4px 20px rgba(79,70,229,0.4);
}
.btn-indigo:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(79,70,229,0.5); }

/* ── Section shared ───────────────────────────────────────── */
.section-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
}
.section-h2 {
  font-size: clamp(32px, 3.5vw, 48px); font-weight: 800;
  letter-spacing: -1px; color: var(--text-w); line-height: 1.1; margin-bottom: 16px;
}
.section-h2-dark {
  font-size: clamp(32px, 3.5vw, 48px); font-weight: 800;
  letter-spacing: -1px; color: var(--text-d); line-height: 1.1; margin-bottom: 16px;
}
.section-sub      { font-size: 18px; color: var(--text-m); line-height: 1.7; }
.section-sub-dark { font-size: 18px; color: var(--text-d2); line-height: 1.7; }
.section-header   { text-align: center; margin-bottom: 64px; }

/* ── NAV ──────────────────────────────────────────────────── */
#marketing-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(135deg, #FF9A2E 0%, #FF8B03 55%, #F2740A 100%); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.14); box-shadow: 0 2px 24px rgba(255,139,3,0.22); transition: border-color 0.3s;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; height: 64px; gap: 40px; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 15px; letter-spacing: -0.3px;
}
.nav-logo img { height: 36px; width: auto; object-fit: contain; }
.nav-logo-text { color: var(--text-w); }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links a {
  padding: 8px 14px; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.92); border-radius: 8px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(0,0,0,0.22); }
.nav-ctas { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-login { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.92); padding: 8px 12px; border-radius: 8px; transition: all 0.2s; }
.nav-login:hover { color: white; background: rgba(0,0,0,0.18); }
.mobile-menu-btn { display: none; }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 24px 20px; border-top: 1px solid var(--dark-border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px; font-size: 15px; font-weight: 600; color: var(--text-m);
  border-radius: 10px; transition: all 0.2s;
}
.mobile-nav a:hover { color: var(--text-w); background: var(--dark-card); }
.mobile-nav-ctas { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding: 140px 24px 100px;
  position: relative; overflow: hidden; display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-blob-1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.hero-blob-2 {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.12) 0%, transparent 70%);
  bottom: -200px; right: -200px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.25);
  color: var(--orange-l); padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero h1 {
  font-size: clamp(40px, 5vw, 64px); font-weight: 900;
  line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero-sub { font-size: 18px; line-height: 1.7; color: var(--text-m); margin-bottom: 40px; max-width: 480px; }
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 20px; font-size: 13px; color: var(--text-m); display: flex; align-items: center; gap: 6px; }
.hero-note::before { content: '✓'; color: #22c55e; font-weight: 700; }

/* Hero mockup */
.hero-visual { position: relative; }
.hero-mockup {
  background: linear-gradient(145deg, #1a1a2e, #12121d);
  border: 1px solid var(--dark-border); border-radius: 16px; padding: 16px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05), 0 32px 80px rgba(0,0,0,0.8), 0 0 60px rgba(249,115,22,0.1);
  transform: perspective(1000px) rotateY(-6deg) rotateX(2deg); transition: transform 0.3s ease;
}
.hero-mockup:hover { transform: perspective(1000px) rotateY(-3deg) rotateX(1deg); }
.mockup-bar {
  display: flex; align-items: center; gap: 6px; margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--dark-border);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-title { margin-left: 8px; font-size: 12px; color: var(--text-m); font-weight: 500; }
.mockup-canvas {
  background: #0d0d14; border-radius: 10px; padding: 20px;
  min-height: 300px; position: relative; overflow: hidden;
}
.mockup-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 20px 20px;
}
.mockup-step {
  position: absolute; background: linear-gradient(145deg, #1e1e30, #171726);
  border: 1px solid var(--dark-border); border-radius: 10px; padding: 10px 14px;
  font-size: 10px; font-weight: 700; color: var(--text-w);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4); z-index: 2;
}
.mockup-step-label { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.mockup-step-name { font-size: 11px; font-weight: 700; }
.mockup-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; z-index: 1; }
.ms-optin   { top: 20px;  left: 20px; border-top: 2px solid var(--indigo-l); }
.ms-confirm { top: 20px;  left: 180px; border-top: 2px solid #10b981; }
.ms-sales   { top: 140px; left: 100px; border-top: 2px solid var(--orange); }
.ms-thank   { top: 140px; left: 260px; border-top: 2px solid #a855f7; }
.label-optin { color: var(--indigo-l); } .label-confirm { color: #10b981; }
.label-sales  { color: var(--orange); }  .label-thank   { color: #a855f7; }

.hero-badge {
  position: absolute; background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  border: 1px solid var(--dark-border); border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600;
  color: var(--text-w); box-shadow: 0 8px 32px rgba(0,0,0,0.4); z-index: 3;
}
.badge-1 { top: -12px; right: -12px; }
.badge-2 { bottom: 24px; left: -24px; }
.badge-icon { font-size: 18px; }

/* ── Proof bar ────────────────────────────────────────────── */
.proof-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border);
  padding: 24px;
}
.proof-bar-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center;
}
.proof-label { font-size: 12px; color: var(--text-m); font-weight: 500; white-space: nowrap; }
.proof-tools { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.proof-tool {
  font-size: 14px; font-weight: 700; color: #334155;
  letter-spacing: -0.3px; text-decoration: line-through; text-decoration-color: rgba(249,115,22,0.5);
}
.proof-divider { width: 1px; height: 20px; background: var(--dark-border); }

/* ── Pain section ─────────────────────────────────────────── */
.pain-section { background: var(--light); padding: 100px 24px; }
.pain-inner   { max-width: 1180px; margin: 0 auto; }
.cost-calculator {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center;
}
.cost-stack {
  background: white; border-radius: 20px; border: 1px solid #e2e8f0;
  padding: 28px; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.cost-title { font-size: 13px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.cost-item { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #f1f5f9; }
.cost-item:last-child { border-bottom: none; }
.cost-item-name  { font-size: 14px; font-weight: 600; color: var(--text-d); }
.cost-item-price { font-size: 14px; font-weight: 700; color: #ef4444; }
.cost-total { margin-top: 16px; padding-top: 16px; border-top: 2px solid #f1f5f9; display: flex; justify-content: space-between; align-items: center; }
.cost-total-label { font-size: 15px; font-weight: 700; color: var(--text-d); }
.cost-total-price { font-size: 22px; font-weight: 900; color: #ef4444; }
.vs-badge {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ea580c);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: white; flex-shrink: 0;
  box-shadow: 0 0 24px var(--orange-glow);
}
.cost-im {
  background: linear-gradient(145deg, #0d0d14, #1a1a2e);
  border: 1px solid rgba(249,115,22,0.3); border-radius: 20px; padding: 28px;
  box-shadow: 0 0 40px rgba(249,115,22,0.08), 0 16px 48px rgba(0,0,0,0.4); color: var(--text-w);
}
.cost-im .cost-title { color: rgba(255,255,255,0.4); }
.cost-im .cost-item  { border-bottom-color: rgba(255,255,255,0.06); }
.cost-im .cost-item-name  { color: var(--text-w); }
.cost-im .cost-item-price { color: #22c55e; }
.cost-im .cost-total { border-top-color: rgba(255,255,255,0.08); }
.cost-im .cost-total-label { color: white; }
.cost-im .cost-total-price { color: var(--orange-l); }

/* ── Features grid ────────────────────────────────────────── */
.features-section { background: var(--dark); padding: 100px 24px; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.feature-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: 20px; padding: 32px; transition: all 0.3s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.feature-card:hover {
  border-color: rgba(249,115,22,0.25); background: rgba(249,115,22,0.04);
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 32px rgba(249,115,22,0.06);
}
.feature-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.fi-orange { background: rgba(249,115,22,0.12); } .fi-indigo { background: rgba(99,102,241,0.12); }
.fi-green  { background: rgba(34,197,94,0.12); }  .fi-purple { background: rgba(168,85,247,0.12); }
.fi-blue   { background: rgba(59,130,246,0.12); }  .fi-pink   { background: rgba(244,63,94,0.12); }
.feature-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text-w); }
.feature-desc  { font-size: 14px; color: var(--text-m); line-height: 1.65; }
.feature-coming {
  display: inline-flex; margin-top: 12px;
  background: rgba(168,85,247,0.12); border: 1px solid rgba(168,85,247,0.25);
  color: #c084fc; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── Spotlight sections ───────────────────────────────────── */
.spotlight { padding: 100px 24px; }
.spotlight-light { background: var(--light); }
.spotlight-dark  { background: var(--dark-2); }
.spotlight-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.spotlight-inner.reverse { direction: rtl; }
.spotlight-inner.reverse > * { direction: ltr; }
.spotlight-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; padding: 4px 12px; border-radius: 100px; }
.tag-orange { background: rgba(249,115,22,0.1); color: var(--orange); border: 1px solid rgba(249,115,22,0.2); }
.tag-indigo { background: rgba(99,102,241,0.1); color: var(--indigo-l); border: 1px solid rgba(99,102,241,0.2); }
.spotlight-h2-dark  { font-size: clamp(28px,3vw,40px); font-weight: 800; color: var(--text-d); letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 20px; }
.spotlight-h2-light { font-size: clamp(28px,3vw,40px); font-weight: 800; color: var(--text-w); letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 20px; }
.spotlight-sub-dark  { font-size: 16px; color: var(--text-d2); line-height: 1.75; margin-bottom: 32px; }
.spotlight-sub-light { font-size: 16px; color: var(--text-m);  line-height: 1.75; margin-bottom: 32px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-m); line-height: 1.5; }
.feature-list.dark li { color: var(--text-d2); }
.feature-list li::before { content: '✓'; color: var(--orange); font-weight: 800; font-size: 13px; margin-top: 2px; flex-shrink: 0; }

/* ── Comparison table ─────────────────────────────────────── */
.compare-section { background: var(--light); padding: 100px 24px; }
.compare-table { width: 100%; border-collapse: collapse; background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 32px rgba(0,0,0,0.08); margin-top: 56px; }
.compare-table th { padding: 20px 24px; text-align: center; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800; background: var(--text-d); color: white; }
.compare-table th:first-child { text-align: left; background: #1e293b; }
.compare-table th.hl { background: linear-gradient(135deg, var(--orange), #ea580c); color: white; }
.compare-table td { padding: 16px 24px; text-align: center; border-bottom: 1px solid #f1f5f9; font-size: 14px; color: var(--text-d2); }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--text-d); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #fafaf9; }
.compare-table .hl-col { background: rgba(249,115,22,0.04); font-weight: 700; color: var(--text-d); }
.check { color: #22c55e; font-size: 18px; font-weight: 900; }
.cross { color: #e2e8f0; font-size: 18px; }
.partial { color: #f59e0b; font-size: 12px; font-weight: 600; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: var(--dark); padding: 100px 24px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.testimonial-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 20px; padding: 28px; }
.stars { color: var(--orange); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { font-size: 15px; color: var(--text-m); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: white; flex-shrink: 0; }
.av-orange { background: linear-gradient(135deg, var(--orange), #ea580c); }
.av-indigo { background: linear-gradient(135deg, var(--indigo), #4338ca); }
.av-green  { background: linear-gradient(135deg, #059669, #10b981); }
.author-name { font-size: 14px; font-weight: 700; color: var(--text-w); }
.author-role { font-size: 12px; color: var(--text-m); }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-section { background: var(--dark-2); padding: 100px 24px; }
.billing-toggle { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 56px; }
.toggle-label { font-size: 14px; font-weight: 600; color: var(--text-m); }
.toggle-label.active { color: var(--text-w); }
.toggle-switch { width: 48px; height: 26px; background: var(--indigo); border-radius: 100px; cursor: pointer; position: relative; transition: background 0.2s; }
.toggle-knob { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: white; transition: left 0.2s; }
.save-badge { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25); color: #22c55e; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.pricing-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 24px; padding: 32px; transition: all 0.3s; }
.pricing-card.featured { background: linear-gradient(145deg, rgba(249,115,22,0.08), rgba(249,115,22,0.03)); border: 2px solid rgba(249,115,22,0.4); box-shadow: 0 0 48px rgba(249,115,22,0.1); position: relative; }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--orange), #ea580c); color: white; font-size: 11px; font-weight: 800; padding: 4px 16px; border-radius: 100px; white-space: nowrap; }
.plan-name { font-size: 14px; font-weight: 700; color: var(--text-m); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.plan-price { font-size: 48px; font-weight: 900; color: var(--text-w); letter-spacing: -2px; line-height: 1; margin-bottom: 4px; }
.plan-price sup { font-size: 24px; vertical-align: top; margin-top: 8px; }
.plan-period { font-size: 13px; color: var(--text-m); margin-bottom: 8px; }
.plan-contacts { font-size: 13px; color: var(--orange-l); font-weight: 600; margin-bottom: 28px; }
.plan-divider { height: 1px; background: var(--dark-border); margin: 24px 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { font-size: 14px; color: var(--text-m); display: flex; gap: 10px; align-items: flex-start; }
.plan-features li::before { content: '✓'; color: var(--orange); font-weight: 800; font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.plan-cta { width: 100%; margin-top: 32px; justify-content: center; }

/* ── Agency section ───────────────────────────────────────── */
.agency-section { background: var(--dark); padding: 120px 24px; position: relative; overflow: hidden; border-top: 1px solid var(--dark-border); }
.agency-bg-blob { position: absolute; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.agency-inner { max-width: 1180px; margin: 0 auto; position: relative; z-index: 1; }
.agency-header { text-align: center; margin-bottom: 80px; }
.agency-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.25); color: var(--indigo-l); padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px; }
.agency-h2 { font-size: clamp(32px,3.5vw,52px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 20px; }
.agency-sub { font-size: 18px; color: var(--text-m); line-height: 1.7; max-width: 600px; margin: 0 auto; }
.agency-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 800px; margin: 0 auto 64px; }
.agency-service { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 20px; padding: 28px; display: flex; gap: 20px; align-items: flex-start; transition: all 0.3s; }
.agency-service:hover { border-color: rgba(99,102,241,0.3); background: rgba(99,102,241,0.04); transform: translateY(-2px); }
.service-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(99,102,241,0.12); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.service-title { font-size: 16px; font-weight: 700; color: var(--text-w); margin-bottom: 6px; }
.service-desc  { font-size: 14px; color: var(--text-m); line-height: 1.6; }
.agency-cta-area { text-align: center; }
.agency-cta-sub { font-size: 14px; color: var(--text-m); margin-top: 16px; }
.agency-built-by { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--dark-border); text-align: center; }
.built-by-text { font-size: 14px; color: var(--text-m); margin-bottom: 10px; }
.built-by-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 100px; padding: 8px 20px; font-size: 14px; font-weight: 700; color: var(--text-w); }
.built-by-badge img { height: 24px; width: auto; }

/* ── Final CTA ────────────────────────────────────────────── */
.final-cta { background: linear-gradient(135deg, #0d0d14 0%, #1a0a00 50%, #0d0d14 100%); padding: 100px 24px; text-align: center; position: relative; overflow: hidden; border-top: 1px solid rgba(249,115,22,0.15); }
.final-cta-blob { position: absolute; width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(249,115,22,0.15) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.final-cta h2 { font-size: clamp(32px,4vw,56px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 20px; position: relative; z-index: 1; }
.final-cta-sub { font-size: 18px; color: var(--text-m); margin-bottom: 40px; position: relative; z-index: 1; }
.final-cta-note { font-size: 13px; color: var(--text-m); margin-top: 20px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Footer ───────────────────────────────────────────────── */
footer { background: #060609; border-top: 1px solid var(--dark-border); padding: 64px 24px 40px; }
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 15px; color: var(--text-w); }
.footer-logo img { height: 32px; width: auto; }
.footer-brand-desc { font-size: 14px; color: var(--text-m); line-height: 1.7; margin-top: 16px; margin-bottom: 24px; max-width: 280px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-m); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-w); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--dark-border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: var(--text-m); }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: var(--dark-card); border: 1px solid var(--dark-border); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.2s; }
.social-btn:hover { background: var(--dark-border); transform: translateY(-1px); }

/* ── Inner pages (privacy, terms, about) ──────────────────── */
.inner-page { background: var(--dark); min-height: 100vh; padding: 120px 24px 80px; }
.inner-page-light { background: var(--light); color: var(--text-d); min-height: 100vh; padding: 120px 24px 80px; }
.inner-hero { max-width: 760px; margin: 0 auto 64px; }
.inner-hero h1 { font-size: clamp(32px,4vw,52px); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 16px; }
.inner-hero p  { font-size: 18px; color: var(--text-m); line-height: 1.7; }
.prose-dark, .prose-light { max-width: 760px; margin: 0 auto; }
.prose-dark  section, .prose-light  section { margin-bottom: 48px; }
.prose-dark h2  { font-size: 22px; font-weight: 700; color: var(--text-w); margin-bottom: 14px; }
.prose-light h2 { font-size: 22px; font-weight: 700; color: var(--text-d); margin-bottom: 14px; }
.prose-dark p   { font-size: 16px; color: var(--text-m); line-height: 1.8; }
.prose-light p  { font-size: 16px; color: var(--text-d2); line-height: 1.8; }
.prose-dark a   { color: var(--orange-l); }
.prose-light a  { color: var(--indigo); }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-m); margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--dark-border); }
.back-link:hover { color: var(--text-w); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .cost-calculator { grid-template-columns: 1fr; }
  .vs-badge { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .spotlight-inner { grid-template-columns: 1fr; gap: 40px; }
  .spotlight-inner.reverse { direction: ltr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .agency-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 12px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-ctas .nav-login { display: none; }
  .mobile-menu-btn { display: flex; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; }
  .mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--text-m); border-radius: 2px; transition: all 0.2s; }
  .hero-ctas { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ── Blue CTA button (Start free / register) ──────────────── */
.btn-blue {
  background: #0d76f0; color: white; padding: 14px 28px; font-size: 15px;
  box-shadow: 0 4px 16px rgba(13,118,240,0.35);
}
.btn-blue:hover { transform: translateY(-1px); background: #0a63cc; box-shadow: 0 8px 24px rgba(13,118,240,0.45); }
