:root {
  --bg: #0C0C0E;
  --bg-warm: #121210;
  --fg: #F5F0E8;
  --fg-muted: #A09A8C;
  --accent: #E8A838;
  --accent-soft: #E8A83820;
  --card-bg: #1A1A18;
  --card-border: #2A2A26;
  --service-dark: #E8A838;
  --service-dark-fg: #0C0C0E;
  --radius: 12px;
  --max-w: 1140px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .service-tier, .step-num, .nav-logo, .hero-badge {
  font-family: 'Space Grotesk', sans-serif;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 32px;
  background: #0C0C0Ecc;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  border-radius: 8px;
}
.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 140px 32px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-soft);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.65;
}
.window-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.window-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color 0.3s;
}
.window-card:hover {
  border-color: var(--accent-soft);
}
.window-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--card-bg), #1F1D16);
}
.window-icon {
  font-size: 24px;
  color: var(--accent);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 10px;
  flex-shrink: 0;
}
.window-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 18px;
  flex: 1;
}
.window-stat {
  font-size: 14px;
  color: var(--fg-muted);
}

/* PROBLEM */
.problem {
  padding: 100px 32px;
  background: var(--bg-warm);
}
.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: sticky;
  top: 120px;
}
.problem-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.problem-x {
  color: #E84848;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.problem-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
}
.problem-item p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* SERVICES */
.services {
  padding: 100px 32px;
}
.services-header {
  max-width: var(--max-w);
  margin: 0 auto 60px;
  text-align: center;
}
.services-header h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.services-sub {
  color: var(--fg-muted);
  font-size: 18px;
}
.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 48px 40px;
}
.service-card.dark {
  background: var(--service-dark);
  color: var(--service-dark-fg);
  border-color: var(--service-dark);
}
.service-tier {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.service-card.dark .service-tier {
  color: var(--service-dark-fg);
  opacity: 0.7;
}
.service-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.service-type {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.service-card.dark .service-type {
  color: var(--service-dark-fg);
  opacity: 0.6;
}
.service-list {
  list-style: none;
  margin-bottom: 32px;
}
.service-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
  font-size: 15px;
}
.service-card.dark .service-list li {
  border-color: #00000020;
}
.service-list li:last-child {
  border: none;
}
.service-note {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}
.service-card.dark .service-note {
  color: var(--service-dark-fg);
  opacity: 0.6;
}

/* PROCESS */
.process {
  padding: 100px 32px;
  background: var(--bg-warm);
}
.process h2 {
  max-width: var(--max-w);
  margin: 0 auto 60px;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}
.process-steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {
  padding: 40px 32px;
  border-left: 2px solid var(--card-border);
}
.step-num {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.step p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 120px 32px;
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-text {
  font-size: 20px;
  color: var(--fg-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}
.closing-niches {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 15px;
  color: var(--fg-muted);
}
.niche {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 8px 20px;
  border-radius: 100px;
}
.niche-dot {
  display: none;
}

/* FOOTER */
.footer {
  padding: 40px 32px;
  border-top: 1px solid var(--card-border);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand .logo-mark {
  width: 28px;
  height: 28px;
  font-size: 15px;
  border-radius: 6px;
}
.footer-brand .logo-text {
  font-size: 16px;
}
.footer-location {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-email {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg-muted);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 0;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--fg); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
}
.btn-dark:hover { opacity: 0.8; transform: translateY(-1px); }

.btn-large { padding: 18px 40px; font-size: 17px; }
.btn-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* ========================================
   NAV LINKS
   ======================================== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--fg); background: var(--card-bg); }
.nav-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--bg);
  background: var(--accent);
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 8px;
  transition: opacity 0.2s;
  margin-left: 8px;
}
.nav-cta:hover { opacity: 0.88; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}
.nav-logo { text-decoration: none; color: var(--fg); }

/* ========================================
   HERO ACTIONS
   ======================================== */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

/* ========================================
   CLOSING ACTIONS
   ======================================== */
.closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}
.closing-niches { margin-top: 0; }

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  padding: 160px 32px 80px;
  background: var(--bg);
}
.page-hero-accent {
  background: linear-gradient(180deg, #141210 0%, var(--bg) 100%);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.hero-price-badge {
  display: inline-block;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 15px;
  color: var(--fg-muted);
  margin-top: 8px;
}
.hero-price-badge strong {
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
}

/* ========================================
   PORTFOLIO PAGE
   ======================================== */
.case-study {
  padding: 80px 32px;
  border-top: 1px solid var(--card-border);
}
.case-study-alt {
  background: var(--bg-warm);
}
.case-study-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.case-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.case-tag {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--card-border);
  color: var(--fg-muted);
}
.case-tag-service {
  border-color: var(--accent-soft);
  color: var(--accent);
}
.case-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.case-subtitle {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* Before / After */
.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 60px;
}
.ba-panel {}
.ba-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E84848;
  margin-bottom: 16px;
}
.after-label { color: var(--accent); }
.ba-mockup {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.mockup-browser {
  display: flex;
  flex-direction: column;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #161614;
  border-bottom: 1px solid var(--card-border);
}
.browser-dots {
  display: flex;
  gap: 5px;
}
.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--card-border);
}
.browser-url {
  font-size: 12px;
  color: var(--fg-muted);
  font-family: monospace;
  background: var(--card-bg);
  padding: 3px 10px;
  border-radius: 4px;
  flex: 1;
}
.mockup-content { padding: 20px; }

/* Before mockup content */
.before-content { opacity: 0.9; }
.bc-header {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--fg-muted);
}
.bc-cover-placeholder {
  height: 70px;
  background: #1F1F1D;
  border-radius: 6px;
  margin-bottom: 14px;
}
.bc-post-list { display: flex; flex-direction: column; gap: 6px; }
.bc-post {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 6px 10px;
  background: #161614;
  border-radius: 4px;
  border-left: 2px solid #E84848;
}

/* After mockup content */
.after-content { }
.ac-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.ac-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  background: var(--accent);
  color: var(--bg);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 12px;
}
.ac-book {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  background: var(--accent);
  color: var(--bg);
  padding: 6px 14px;
  border-radius: 6px;
}
.ac-hero-img {
  height: 90px;
  background: linear-gradient(135deg, #1F1C14, #2A2410);
  border-radius: 8px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.ac-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a2010 0%, #1a1a12 100%);
}
.cafe-hero::before { background: linear-gradient(135deg, #1a1810 0%, #22201A 100%); }
.boutique-hero::before { background: linear-gradient(135deg, #1a1420 0%, #12101A 100%); }
.ac-hero-overlay { position: relative; z-index: 1; }
.ac-hero-text {
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.ac-hero-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.ac-services-row {
  display: flex;
  gap: 6px;
}
.ac-service {
  flex: 1;
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 11px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
}

/* Facts list */
.ba-facts { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ba-facts li {
  font-size: 14px;
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.5;
}
.ba-facts li::before {
  position: absolute;
  left: 0;
}
.fact-bad { color: var(--fg-muted); }
.fact-bad::before { content: '✕'; color: #E84848; }
.fact-good { color: var(--fg); }
.fact-good::before { content: '✓'; color: var(--accent); }

/* Divider */
.ba-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 80px;
}
.ba-arrow {
  font-size: 24px;
  color: var(--accent);
}
.ba-days {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  writing-mode: horizontal-tb;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 6px 12px;
  border-radius: 100px;
}

/* Case quote */
.case-quote {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 48px;
  position: relative;
}
.quote-mark {
  font-size: 64px;
  color: var(--accent-soft);
  line-height: 0.5;
  font-family: Georgia, serif;
  position: absolute;
  top: 32px;
  left: 32px;
}
.case-quote p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg);
  font-style: italic;
  padding-left: 28px;
  margin-bottom: 16px;
}
.quote-attr {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 28px;
}

/* Results */
.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-stat {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
}
.result-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.result-label {
  font-size: 14px;
  color: var(--fg-muted);
}

/* Portfolio CTA */
.portfolio-cta {
  padding: 120px 32px;
  text-align: center;
  background: var(--bg-warm);
}
.portfolio-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.portfolio-cta h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.portfolio-cta p {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 36px;
}

/* ========================================
   SERVICE DETAIL PAGES
   ======================================== */
.section-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  text-align: center;
}
.service-detail {
  padding: 100px 32px;
}
.service-detail-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.deliverable-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.2s;
}
.deliverable-card:hover { border-color: var(--accent-soft); }
.deliverable-icon {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.deliverable-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.deliverable-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.deliverable-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.deliverable-list li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.deliverable-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Timeline */
.timeline-section {
  padding: 100px 32px;
  background: var(--bg-warm);
}
.timeline-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 80px;
  right: 80px;
  height: 1px;
  background: var(--card-border);
}
.timeline-item {
  padding: 0 20px;
  position: relative;
}
.timeline-day {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.timeline-day::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.timeline-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Pricing section */
.pricing-section {
  padding: 100px 32px;
}
.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
}
.pricing-card-featured {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 32px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid var(--accent-soft);
}
.pricing-tier {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  opacity: 0.7;
}
.pricing-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-per {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.6;
}
.pricing-desc {
  font-size: 15px;
  opacity: 0.7;
  margin-bottom: 32px;
}
.pricing-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-list li {
  font-size: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pricing-card-featured .pricing-list li {
  border-color: rgba(0,0,0,0.12);
}
.pricing-list li:last-child { border: none; padding-bottom: 0; }
.pricing-note {
  text-align: center;
  font-size: 15px;
  color: var(--fg-muted);
}
.pricing-note a { color: var(--accent); text-decoration: none; }
.pricing-note a:hover { text-decoration: underline; }

/* Why section (Grow page) */
.why-section {
  padding: 100px 32px;
  background: var(--bg-warm);
}
.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.why-left h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: sticky;
  top: 120px;
}
.why-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  color: var(--accent);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 28px;
}
.why-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
}
.why-item p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Service CTA */
.service-cta {
  padding: 120px 32px;
  text-align: center;
}
.service-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.service-cta h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.service-cta p {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-page {
  padding: 120px 32px 80px;
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-left h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 24px 0 20px;
}
.contact-intro {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 400px;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-detail-icon {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-detail-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}
.contact-detail-item p {
  color: var(--fg-muted);
  font-size: 14px;
}
.contact-niches-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.niche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.niche-tag {
  font-size: 13px;
  color: var(--fg-muted);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 6px 14px;
  border-radius: 100px;
}

/* Contact form */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 48px 40px;
}
.form-package-note {
  font-size: 14px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}
.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--fg);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #4A4A44;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group select {
  cursor: pointer;
}
.form-group textarea { resize: vertical; }

/* Checkboxes */
.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.form-checkbox:hover { color: var(--fg); }
.form-checkbox input { display: none; }
.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 1px solid var(--card-border);
  border-radius: 5px;
  background: var(--bg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.form-checkbox input:checked + .checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}
.form-checkbox input:checked + .checkbox-custom::after {
  content: '✓';
  font-size: 12px;
  font-weight: 700;
  color: var(--bg);
}

/* Form success / error */
.form-success {
  text-align: center;
  padding: 60px 40px;
}
.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}
.form-success p {
  color: var(--fg-muted);
  font-size: 16px;
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.6;
}
.form-error {
  background: #E8484820;
  border: 1px solid #E8484840;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #E87878;
  margin-bottom: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    min-height: auto;
    gap: 40px;
  }
  .hero-sub {
    max-width: 100%;
  }
  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .problem-left h2 {
    position: static;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .nav {
    padding: 16px 20px;
  }
  .closing {
    padding: 80px 24px;
  }
  .services, .problem, .process {
    padding: 60px 24px;
  }
  .service-card {
    padding: 36px 28px;
  }

  /* Nav mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0C0C0Eee;
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 24px 24px;
    gap: 4px;
    border-top: 1px solid var(--card-border);
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-link { padding: 12px 14px; }
  .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; }

  /* Hero actions */
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Closing actions */
  .closing-actions { flex-direction: column; gap: 12px; align-items: center; }

  /* Page hero */
  .page-hero { padding: 120px 24px 60px; }

  /* Portfolio */
  .before-after {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ba-divider { flex-direction: row; padding-top: 0; }
  .case-results { grid-template-columns: 1fr; }
  .case-quote { padding: 28px 24px; }
  .case-quote p { padding-left: 0; }
  .quote-attr { padding-left: 0; }
  .quote-mark { display: none; }

  /* Service pages */
  .deliverables-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 32px; }
  .timeline::before { display: none; }
  .pricing-cards { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-left h2 { position: static; }
  .cta-actions { flex-direction: column; gap: 12px; align-items: center; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-page { padding: 100px 24px 60px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}