/* ==========================================================================
   Axel Freeman — Unified Stylesheet
   Design: Vas3k-inspired typography-first with Merriweather + Ubuntu
   ========================================================================== */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,400&family=Ubuntu:wght@0,400;0,500;0,700&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --sans: "Ubuntu", Helvetica, Verdana, sans-serif;
  --serif: "Merriweather", Georgia, Times, serif;

  /* Light theme — Vas3k-inspired */
  --bg:        #f5f6f8;
  --card:      #ffffff;
  --text:      #1a1a1a;
  --body:      #3a3a3a;
  --muted:     #777777;
  --sub:       #777777;
  --link:      #2563eb;
  --accent:    #2563eb;
  --green:     #10b981;
  --border:    #e5e5e5;
  --border-light: rgba(0,0,0,0.06);
  --shadow:    10px 15px 40px rgba(83,91,110,0.10);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --radius:    30px;
  --radius-sm: 15px;
  --radius-xs: 10px;

  /* Legacy vars for index compatibility */
  --purple:    #2563eb;
  --purple-hover: #1d4ed8;
  --navy:      #1a1a1a;
  --slate:     #64748d;
  --dark-slate: #334155;
  --white:     #ffffff;
  --brand-dark: #0a0a1a;
  --shadow-blue: rgba(37,99,235,0.15);
  --shadow-black: rgba(0,0,0,0.08);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.67;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.01em;
}
h1 { font-size: 270%; font-weight: 300; }
h2 { font-size: 210%; font-weight: 300; }
h3 { font-size: 140%; }
h4 { font-size: 120%; }

p, li {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.7;
}

strong { font-weight: 400; }
a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
a:hover { text-decoration-thickness: 2px; }

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

/* ===== NAVIGATION (service pages) ===== */
nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 24px;
  gap: 30px;
}
nav .logo, .nav-logo {
  font-family: var(--sans);
  font-size: 170%;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
nav .logo:hover { text-decoration: none; }
nav a {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  font-size: 105%;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
nav a:hover { background: var(--card); text-decoration: none; }

/* Nav variant (index pages) */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.nav-logo {
  font-size: 20px; font-weight: 600; color: var(--navy);
  text-decoration: none; letter-spacing: -0.5px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--navy);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: var(--white) !important;
  padding: 8px 16px; border-radius: 6px; font-weight: 500 !important;
}
.nav-cta:hover { background: var(--purple-hover); color: var(--white) !important; }

/* ===== HERO (service pages) ===== */
.hero {
  padding: 140px 24px 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 270%;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero h1 span, .hero h1 em { font-style: normal; color: var(--link); }
.hero p, .hero .deck {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 120%;
  line-height: 1.7;
  color: var(--body);
  max-width: 650px;
  margin: 0 auto;
}

/* ===== TL;DR block ===== */
.tldr {
  background: var(--card);
  border-left: 3px solid var(--link);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 105%;
  color: var(--body);
  line-height: 1.7;
}
.tldr strong { font-weight: 400; color: var(--text); }

/* ===== STATS ===== */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0 80px;
}
.stat {
  flex: 1 1 180px;
  min-width: 160px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat .num, .stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 260%;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.stat .label, .stat-label {
  font-family: var(--sans);
  font-size: 85%;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}
.stats-bar {
  display: flex; justify-content: center; gap: 64px;
  margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}
.stats-bar .stat { background: transparent; box-shadow: none; padding: 0; }

/* ===== CASE / CARDS ===== */
.case, .ca {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px;
  margin: 28px 0;
  box-shadow: var(--shadow);
}
.case h3, .ca h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 140%;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 20px;
}
.case p, .ca p {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--body);
  margin-bottom: 12px;
}
.case ul { list-style: none; padding: 0; margin: 12px 0; }
.case ul li {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--body);
  padding: 5px 0 5px 18px;
  position: relative;
}
.case ul li::before { content: "—"; position: absolute; left: 0; color: var(--muted); }
.case .problem, .case .solution, .case .result { margin-bottom: 16px; }
.case .result { margin-top: 24px; }
.case strong { color: var(--text); font-weight: 400; }

/* ===== STEPS ===== */
.steps, .st { margin: 40px 0; }
.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.step-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 320%;
  color: var(--border);
  line-height: 0.8;
  min-width: 70px;
  letter-spacing: -0.02em;
}
.step h3, .step-content h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 130%;
  color: var(--text);
  margin-bottom: 8px;
}
.step p, .step-content p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 105%;
  color: var(--body);
  line-height: 1.7;
}

/* ===== PRICING TABLE ===== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0 48px;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-table th {
  background: rgba(37,99,235,0.06);
  padding: 18px 20px;
  text-align: left;
  font-family: var(--sans);
  font-size: 80%;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-table td {
  padding: 18px 20px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 95%;
  border-bottom: 1px solid var(--border-light);
  color: var(--body);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 130%;
  color: var(--text);
}

/* ===== PROBLEM BLOCKS ===== */
.problems { margin: 40px 0; }
.problem-item, .problem {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.problem-item h3, .problem h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 120%;
  color: var(--text);
  margin-bottom: 8px;
}
.problem-item p, .problem p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 100%;
  color: var(--body);
  line-height: 1.7;
}
.problem-item .solution, .problem .fix {
  font-family: var(--sans);
  font-size: 95%;
  color: var(--muted);
  margin-top: 8px;
}

/* ===== FAQ ===== */
.faq-block, .faq, .fa { margin: 40px 0; }
.faq-item, .fi {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.faq-item h3, .fi h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 130%;
  color: var(--text);
  margin-bottom: 10px;
}
.faq-item p, .fi p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 105%;
  color: var(--body);
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta-block, .cta {
  text-align: center;
  padding: 100px 0 120px;
}
.cta-block h2, .cta h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 210%;
  margin-bottom: 16px;
  color: var(--text);
}
.cta-block p, .cta p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 120%;
  color: var(--body);
  margin-bottom: 40px;
}
.cta-btn, .btn, .cta a {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 105%;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 0.15s;
}
.cta-btn, .cta a {
  background: var(--link);
  color: #fff;
}
.cta-btn:hover, .btn:hover, .cta a:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.cta-tg { background: #2AABEE; margin: 0 8px; }

/* ===== MISC SERVICE PAGE ELEMENTS ===== */
.m, .st { display: grid; gap: 16px; }
.m { grid-template-columns: repeat(4,1fr); margin: 24px 0; }
.st { grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); margin: 24px 0; }
.mc, .s {
  background: var(--card);
  border-radius: var(--radius-xs);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.mc .n, .s .n { font-family: var(--serif); font-weight: 300; font-size: 200%; color: var(--text); }
.mc .l { font-family: var(--sans); font-size: 75%; color: var(--muted); text-transform: uppercase; margin-top: 4px; }
.s h3 { font-family: var(--serif); font-weight: 400; font-size: 105%; margin: 8px 0; color: var(--text); }
.tr {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xs); padding: 28px; margin: 28px 0;
}
.tr h3 { font-family: var(--sans); font-size: 80%; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.ba { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.bd {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 14px; font-size: 90%;
  font-family: var(--sans); color: var(--body);
}
.bd span { color: var(--link); font-weight: 500; }

/* ===== INDEX PAGE — brutalist adaptation ===== */
.index .hero, .hero-content { text-align: center; }
.hero-content { padding: 80px 24px; }
.hero-image { width: 100%; max-width: 500px; opacity: 0.95; }

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 240%;
  text-align: center;
  letter-spacing: -0.01em;
  padding: 60px 0 40px;
  color: var(--text);
}

.benefits, .arsenal, .cases, .about {
  padding: 80px 24px;
  border-bottom: 1px solid var(--border);
}
.benefits { background: #fafbfc; }
.arsenal { background: var(--bg); }
.cases { background: #fafbfc; }
.about { background: var(--bg); }

.benefits-grid, .arsenal-grid, .cases-grid {
  display: grid;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.benefits-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.arsenal-grid { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
.cases-grid { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }

.benefit-card, .arsenal-card, .case-card {
  background: var(--card);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.benefit-card:hover, .arsenal-card:hover, .case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.10);
  transition: all 0.2s;
}
.benefit-card h3, .arsenal-card h3, .case-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 150%;
  margin-bottom: 16px;
  color: var(--text);
}
.benefit-card p, .arsenal-card p, .case-card p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 105%;
  color: var(--body);
  line-height: 1.7;
}
.case-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 110%;
  margin: 24px 0 10px;
  color: var(--text);
}
.case-result {
  background: var(--bg);
  padding: 20px;
  margin-top: 20px;
  border-radius: var(--radius-xs);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 90%;
  color: var(--text);
}
.about-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  padding: 50px 60px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-content p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 110%;
  line-height: 1.8;
  color: var(--body);
  margin-bottom: 20px;
}

.final-cta {
  background: var(--brand-dark);
  color: var(--white);
  padding: 120px 24px;
  text-align: center;
}
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 280%;
  color: var(--white);
  margin-bottom: 24px;
}
.final-cta p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 115%;
  opacity: 0.75;
  max-width: 650px;
  margin: 0 auto 36px;
}
.cta-button, .cta-button-white, .btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  padding: 18px 40px;
  border-radius: var(--radius-sm);
  font-size: 105%;
  text-decoration: none;
  transition: all 0.2s;
}
.cta-button, .btn-primary { background: var(--link); color: #fff; }
.cta-button-white { background: #fff; color: var(--text); box-shadow: var(--shadow); }
.cta-button:hover, .cta-button-white:hover, .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  text-decoration: none;
}

/* ===== SERVICE GRID (index) ===== */
.services-grid, .services-grid-section {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 10px; max-width: 1200px; margin: 40px auto;
}
.service-card {
  display: block; padding: 15px 12px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xs); font-family: var(--sans);
  font-size: 80%; color: var(--text); text-decoration: none;
  text-align: center; transition: all 0.2s;
}
.service-card:hover {
  border-color: var(--link); color: var(--link);
  transform: translateY(-2px); box-shadow: var(--shadow);
  text-decoration: none;
}

/* ===== FRAMEWORK STEP ===== */
.framework-step {
  background: var(--card); border-radius: var(--radius);
  padding: 32px; margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.framework-step h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 120%; color: var(--text); margin-bottom: 8px;
}
.framework-step p {
  font-family: var(--serif); font-weight: 300;
  color: var(--body); line-height: 1.7;
}

/* ===== FOOTER ===== */
footer, .footer {
  text-align: center;
  padding: 60px 24px 100px;
  font-family: var(--sans);
  font-size: 85%;
  color: var(--muted);
  border-top: 1px solid var(--border-light);
}
footer a, .footer a { color: var(--link); }
.data-goal { display: none; }

/* ===== SECTION DARK (index variant) ===== */
.section-dark {
  background: var(--brand-dark); color: var(--white);
}
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.65); }


/* ===== ABOUT PAGE — dark hero + white content ===== */
article.content { 
  max-width: 800px; margin: 0 auto; padding: 60px 24px; 
}
article.content h2 {
  font-family: var(--serif); font-weight: 400; font-size: 150%;
  letter-spacing: -0.01em; margin: 40px 0 16px; color: var(--text);
}
article.content p {
  font-family: var(--serif); font-weight: 300; font-size: 110%;
  line-height: 1.8; color: var(--body); margin-bottom: 20px;
}
article.content .stats { justify-content: flex-start; gap: 20px; }
article.content .stat { min-width: 130px; padding: 24px 20px; }
article.content .stat-num { font-size: 200%; color: var(--link); }
article.content .stat-label { font-size: 80%; }

.about-page .hero {
  background: var(--brand-dark); color: var(--white);
  padding: 100px 24px 80px; text-align: center;
}
.about-page .hero h1 {
  font-family: var(--serif); font-weight: 300; font-size: 270%;
  color: var(--white); letter-spacing: -0.01em; margin-bottom: 16px;
}
.about-page .hero p {
  font-family: var(--sans); font-size: 115%; opacity: 0.75; color: var(--white);
  max-width: 500px; margin: 0 auto; font-weight: 300;
}

.cta {
  background: var(--link); color: var(--white); text-align: center; padding: 80px 24px;
}
.cta h2 { font-family: var(--serif); font-weight: 300; font-size: 200%; margin-bottom: 16px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 36px; border-radius: var(--radius-sm); font-family: var(--sans);
  font-size: 105%; font-weight: 500; text-decoration: none; transition: transform 0.15s;
  background: var(--white); color: var(--link); min-height: 50px;
}
.btn:hover { transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */

/* Tablet: 900px — reduce grids, adjust padding */
@media (max-width: 900px) {
  .services-grid, .services-grid-section { grid-template-columns: repeat(3, 1fr); }
  .m { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid, .arsenal-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .step { flex-direction: column; gap: 16px; padding: 28px; }
  .step-num { font-size: 200%; min-width: auto; }
  .hero { padding: 100px 24px 50px; }
  .section-title { font-size: 190%; padding: 50px 0 30px; }
  .container, .c { padding: 0 20px; }
  
  /* AEO upgrade blocks */
  .aeo-upgrade { padding: 24px 20px !important; margin: 30px 0 !important; }
  .aeo-upgrade h3 { font-size: 105% !important; }
  .aeo-upgrade p { font-size: 90% !important; }
}

/* Phone landscape / small tablet: 768px — collapse grids, scale fonts */
@media (max-width: 768px) {
  body { font-size: 95%; }
  h1 { font-size: 200%; }
  h2 { font-size: 160%; }
  h3 { font-size: 120%; }
  p, li { font-size: 100%; }
  
  nav { flex-direction: column; gap: 12px; padding: 20px 16px; }
  nav .logo, .nav-logo { font-size: 140%; }
  
  .hero { padding: 70px 20px 40px; }
  .hero h1 { font-size: 180%; }
  .hero p, .hero .deck { font-size: 105%; }
  
  .section-title { font-size: 160%; padding: 40px 0 24px; }
  
  /* Stats */
  .stats { gap: 12px; }
  .stat { flex: 1 1 140px; min-width: 130px; padding: 20px 14px; }
  .stat .num, .stat-num { font-size: 160%; }
  .stats-bar { gap: 24px; margin-top: 30px; padding-top: 24px; }
  
  /* Pricing */
  .pricing-table { font-size: 85%; }
  .pricing-table th, .pricing-table td { padding: 12px 14px; }
  .pricing-table .price { font-size: 110%; }
  
  /* Cases / Cards */
  .case, .ca { padding: 24px; }
  .case h3, .ca h3 { font-size: 120%; }
  .case-card, .benefit-card, .arsenal-card { padding: 28px; }
  
  /* Index sections */
  .benefits, .arsenal, .cases, .about { padding: 50px 16px; }
  .benefits-grid, .arsenal-grid, .cases-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-content { padding: 24px; }
  .final-cta { padding: 80px 20px; }
  .final-cta h2 { font-size: 180%; }
  
  /* Services grid */
  .services-grid, .services-grid-section { grid-template-columns: repeat(2, 1fr); }
  .service-card { font-size: 75%; padding: 12px 8px; }
  
  .m { grid-template-columns: 1fr 1fr; }
  
  /* CTA */
  .cta-block, .cta { padding: 60px 16px 80px; }
  .cta-block h2, .cta h2 { font-size: 170%; }
  .cta-btn, .btn { padding: 14px 28px; font-size: 100%; }
  
  /* Step blocks */
  .step { flex-direction: column; gap: 12px; padding: 24px; }
  .step-num { font-size: 180%; min-width: auto; }
  
  /* AEO upgrade blocks */
  .aeo-upgrade { padding: 20px 16px !important; margin: 24px 0 !important; }
  
  /* Containers */
  .container, .c { padding: 0 16px; }
  article.content { padding: 40px 16px !important; }
  
  /* Trust + Guide blocks from trust_upgrade */
  [style*="grid-template-columns"] { gap: 12px !important; }
}

/* Phone: 480px — single column, compact */
@media (max-width: 480px) {
  body { font-size: 90%; }
  h1 { font-size: 170%; }
  h2 { font-size: 140%; }
  h3 { font-size: 110%; }
  
  .hero { padding: 50px 16px 32px; }
  .hero h1 { font-size: 150%; }
  .hero p, .hero .deck { font-size: 100%; }
  
  .section-title { font-size: 140%; padding: 32px 0 20px; }
  
  /* Stats — single column */
  .stats { flex-direction: column; gap: 10px; }
  .stat { min-width: auto; padding: 18px 16px; }
  .stat .num, .stat-num { font-size: 150%; }
  .stats-bar { flex-direction: column; gap: 16px; margin-top: 24px; padding-top: 20px; }
  
  /* Services — 2 columns */
  .services-grid, .services-grid-section { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .service-card { font-size: 65%; padding: 8px 4px; }
  
  .m { grid-template-columns: 1fr; }
  
  /* Cases */
  .case, .ca { padding: 20px; border-radius: var(--radius-sm); }
  
  /* Index sections */
  .benefits, .arsenal, .cases, .about { padding: 40px 12px; }
  .about-content { padding: 20px; border-radius: var(--radius-sm); }
  .case-card { padding: 20px; }
  .case-card h3 { font-size: 115%; }
  .benefit-card h3, .arsenal-card h3 { font-size: 110%; }
  
  /* CTA */
  .cta-block, .cta { padding: 40px 12px 60px; }
  .cta-block h2, .cta h2 { font-size: 140%; }
  .cta-block p, .cta p { font-size: 100%; margin-bottom: 24px; }
  .cta-btn, .btn, .cta a { padding: 14px 24px; font-size: 95%; display: block; margin: 8px 0; }
  .cta-buttons { flex-direction: column; }
  
  /* Final CTA */
  .final-cta { padding: 60px 16px; }
  .final-cta h2 { font-size: 150%; }
  .cta-button, .cta-button-white, .btn-primary { padding: 16px 24px; font-size: 95%; }
  
  /* Steps */
  .step { padding: 20px; }
  .step-num { font-size: 150%; }
  .step-body h3, .step h3, .step-content h3 { font-size: 105%; }
  
  /* AEO upgrade */
  .aeo-upgrade { padding: 16px 12px !important; margin: 20px 0 !important; border-radius: var(--radius-sm) !important; }
  .aeo-upgrade h3 { font-size: 100% !important; }
  .aeo-upgrade p { font-size: 85% !important; }
  
  /* Pricing — hide duration column */
  .pricing-table { font-size: 80%; }
  .pricing-head > *:nth-child(3), .pricing-row > *:nth-child(3) { display: none; }
  
  /* Nav */
  nav { padding: 16px 12px; }
  nav .logo, .nav-logo { font-size: 120%; }
  .nav { padding: 0 12px; }
  .nav-links { display: none; }
  .nav-inner { height: 48px; }
  
  /* Containers */
  .container, .c { padding: 0 12px; }
  article.content { padding: 32px 12px !important; }
  
  /* Trust blocks — single column on mobile */
  [style*="minmax(280px,1fr)"] { grid-template-columns: 1fr !important; }
  [style*="repeat(3,1fr)"] { grid-template-columns: repeat(2,1fr) !important; gap: 8px !important; }
  
  /* FREEMAN container */
  .container section > div[style*="border-radius:14px"] { padding: 24px 16px !important; }
}
