/*
 * JAMM Site — Shared CSS
 * All direction pages link this file. Direction-specific colors go in:
 *   assets/automation.css  — orange (#FCA45E)
 *   assets/traffic.css     — green (#06B57F)
 *   assets/community.css   — blue (#5699F8)
 * Usage: <link rel="stylesheet" href="/assets/shared.css">
 *        <link rel="stylesheet" href="/assets/<direction>.css">
 *
 * RULE: NEVER inline these styles in HTML. Never duplicate --vars or components.
 * Add direction overrides only in direction.css, not inline.
 */

/* ============ BASE VARS (fallback, overridden by direction.css) ============ */
:root {
  --bg: #0b0d11;
  --bg-deep: #060709;
  --bg-card: #14171d;
  --bg-code: #0a0b0e;
  --border: #23262d;
  --border-strong: #323843;
  --text: #e8eaed;
  --text-muted: #8b93a0;
  --text-dim: #5a6270;
  /* --accent, --accent-bright, --accent-deep, --accent-glow → set in direction.css */
  --accent: #FCA45E;
  --accent-bright: #FFD4AE;
  --accent-deep: #7A2A0E;
  --accent-glow: rgba(252, 164, 94, 0.15);
  --white: #FFFFFF;
  --success: #10B981;
  --warning: #F59E0B;
  --font-display: 'Comfortaa', system-ui, -apple-system, sans-serif;
  --font-mono: 'DM Mono', ui-monospace, SFMono-Regular, monospace;
}

/* ============ RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-display);
  background: var(--bg); color: var(--text); line-height: 1.6;
  font-size: 16px; font-weight: 400;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: opacity 0.15s; }
a:hover { opacity: 0.8; }
code, pre, .mono { font-family: var(--font-mono); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 28px; }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 13, 17, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; max-width: 1180px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 44px; height: 44px; }
.brand-logo img { width: 100%; height: 100%; display: block; }
.brand-text { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }
.brand-text .sub { color: var(--text-muted); font-weight: 400; font-size: 12px; display: block; margin-top: 2px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--text); opacity: 1; }
.nav-links a.header-cta, a.header-cta {
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #000; font-size: 13px; font-weight: 700;
  border-radius: 8px; border: 0; cursor: pointer; font-family: inherit;
  letter-spacing: -0.005em;
}
.nav-links a.header-cta:hover, a.header-cta:hover { color: #000; opacity: 1; box-shadow: 0 4px 16px var(--accent-glow); }
.burger { display: none; background: transparent; border: 0; cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 4px 0; transition: 0.2s; }
@media (max-width: 820px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 100%; right: 0; flex-direction: column; background: var(--bg-card); padding: 20px; border-left: 1px solid var(--border); border-bottom: 1px solid var(--border); min-width: 200px; gap: 16px; }
}

/* ============ HERO ============ */
.hero {
  position: relative; padding: 100px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse at top right, var(--accent-glow) 0%, transparent 50%),
              radial-gradient(ellipse at bottom left, color-mix(in srgb, var(--accent-deep) 30%, transparent) 0%, transparent 55%);
}
.hero-canvas { position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.35; }
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); font-family: var(--font-mono); font-weight: 500;
  margin-bottom: 32px;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero h1 {
  font-size: clamp(40px, 6.5vw, 78px); line-height: 1.05; letter-spacing: -0.03em;
  font-weight: 700; margin-bottom: 28px; max-width: 920px; margin-left: auto; margin-right: auto;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; display: inline-block;
}
.hero-sub {
  font-size: clamp(17px, 2.1vw, 21px); color: var(--text-muted);
  max-width: 660px; margin: 0 auto 22px; line-height: 1.55;
}
.hero-credo {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 42px; font-family: var(--font-mono);
}
.hero-credo span { color: var(--accent); margin: 0 8px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 12px; font-weight: 600; font-size: 15px;
  transition: transform 0.15s, box-shadow 0.2s;
  cursor: pointer; border: 0; font-family: var(--font-display); line-height: 1;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff; box-shadow: 0 8px 32px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 12px 40px color-mix(in srgb, var(--accent) 45%, transparent); }
.btn-secondary {
  background: var(--bg-card); color: var(--text); border: 1px solid var(--border-strong);
}
.btn-secondary:hover { border-color: var(--accent); }
.btn-dark {
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-card) 100%);
  color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.btn-dark:hover { border-color: color-mix(in srgb, var(--accent) 80%, transparent); box-shadow: 0 8px 32px var(--accent-glow); }

/* ============ METRICS STRIP ============ */
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border-radius: 16px; overflow: hidden;
  margin-top: 72px; border: 1px solid var(--border);
}
.metric { padding: 26px 20px; background: var(--bg-card); text-align: center; transition: background 0.2s; }
.metric:hover { background: #1a1e26; }
.metric .num {
  font-size: clamp(24px, 3.5vw, 34px); font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em; line-height: 1;
}
.metric .lbl { font-size: 11px; color: var(--text-muted); margin-top: 8px; font-family: var(--font-mono); letter-spacing: 0.04em; }
@media (max-width: 720px) { .metrics { grid-template-columns: repeat(2, 1fr); } }

/* ============ SECTION ============ */
.section { padding: 96px 0; position: relative; }
.section-label {
  display: inline-block; padding: 4px 12px; border-radius: 6px;
  background: color-mix(in srgb, var(--accent) 10%, transparent); color: var(--accent);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  font-family: var(--font-mono); font-weight: 500; margin-bottom: 18px;
}
.section-title {
  font-size: clamp(30px, 4.5vw, 46px); font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 20px; max-width: 780px;
}
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 640px; margin-bottom: 48px; }
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============ PROBLEM CARDS ============ */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.problem-card {
  padding: 28px; border-radius: 16px; background: var(--bg-card);
  border: 1px solid var(--border); transition: all 0.25s;
}
.problem-card:hover { border-color: color-mix(in srgb, var(--accent) 30%, transparent); transform: translateY(-3px); }
.problem-ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.problem-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.problem-card p { color: var(--text-muted); font-size: 14px; line-height: 1.55; }
@media (max-width: 820px) { .problem-grid { grid-template-columns: 1fr; } }

/* ============ SOLUTION CARDS ============ */
.solution {
  background: linear-gradient(180deg, var(--bg) 0%, #0e1014 100%);
  padding: 96px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.solution::before {
  content: ''; position: absolute; inset: -50% -10% auto auto; width: 700px; height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.solution .container { position: relative; z-index: 1; }
.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.sol-card {
  padding: 32px; border-radius: 18px;
  background: linear-gradient(180deg, var(--bg-card) 0%, #11131a 100%);
  border: 1px solid var(--border-strong); position: relative; overflow: hidden;
  transition: all 0.3s;
}
.sol-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 60%, transparent), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.sol-card:hover::before { opacity: 1; }
.sol-card:hover { border-color: color-mix(in srgb, var(--accent) 35%, transparent); transform: translateY(-4px); }
.sol-num { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 14px; }
.sol-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 14px; letter-spacing: -0.01em; line-height: 1.25; }
.sol-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin-bottom: 14px; }
.sol-card ul { list-style: none; padding: 0; margin-top: 12px; display: grid; gap: 8px; }
.sol-card li { padding-left: 22px; position: relative; color: var(--text); font-size: 14px; }
.sol-card li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
@media (max-width: 820px) { .solution-grid { grid-template-columns: 1fr; } }

/* ============ STACK BADGES ============ */
.stack-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 36px; }
.badge {
  padding: 10px 18px; border-radius: 999px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 13px; color: var(--text);
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s;
}
.badge:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ============ TOUCHPOINTS ============ */
.touchpoints { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.touch-card {
  padding: 32px 28px; border-radius: 18px; background: var(--bg-card);
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: all 0.3s; display: flex; flex-direction: column;
}
.touch-card:hover { border-color: color-mix(in srgb, var(--accent) 40%, transparent); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.touch-icon-wrap {
  width: 72px; height: 72px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; background: color-mix(in srgb, var(--accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
}
.touch-icon-wrap img { width: 52px; height: 52px; }
.touch-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.touch-card .touch-handle { font-family: var(--font-mono); color: var(--accent); font-size: 13px; margin-bottom: 18px; }
.touch-card .touch-desc { color: var(--text-muted); font-size: 14px; line-height: 1.55; margin-bottom: 18px; flex: 1; }
.touch-card ul { list-style: none; padding: 0; margin-bottom: 24px; display: grid; gap: 7px; }
.touch-card li { padding-left: 18px; position: relative; font-size: 13px; color: var(--text); line-height: 1.5; }
.touch-card li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; font-size: 11px; }
.touch-cta { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 500; font-size: 14px; margin-top: auto; }
.touch-cta:hover { gap: 10px; }
@media (max-width: 900px) { .touchpoints { grid-template-columns: 1fr; } }

/* ============ STARTER KIT CTA ============ */
.kit-cta-section {
  padding: 96px 0;
  background:
    radial-gradient(circle at 20% 30%, var(--accent-glow) 0%, transparent 40%),
    linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--accent-deep) 10%, transparent) 100%);
}
.kit-showcase { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.kit-preview {
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 100px var(--accent-glow);
  transform: rotate(-1.5deg); transition: transform 0.4s; background: var(--bg-card);
}
.kit-preview:hover { transform: rotate(0deg) scale(1.02); }
.kit-preview img { width: 100%; display: block; }
.kit-info .section-label { margin-bottom: 18px; }
.kit-info h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 20px; line-height: 1.1; }
.kit-info p { color: var(--text-muted); font-size: 16px; line-height: 1.65; margin-bottom: 18px; }
.kit-checks { display: grid; gap: 10px; margin: 24px 0 32px; }
.kit-checks li {
  list-style: none; padding-left: 30px; position: relative;
  color: var(--text); font-size: 14px; line-height: 1.5;
}
.kit-checks li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 15%, transparent); color: var(--accent);
  font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 12px; line-height: 1;
}
@media (max-width: 900px) {
  .kit-showcase { grid-template-columns: 1fr; gap: 36px; }
  .kit-preview { transform: none; }
}

/* ============ NEXUS/VIP BLOCK ============ */
.nexus-section {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #10131a 100%);
  border-top: 1px solid var(--border); position: relative; overflow: hidden;
}
.nexus-section::before {
  content: ''; position: absolute; top: 10%; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 12%, transparent) 0%, transparent 60%);
  pointer-events: none; filter: blur(30px);
}
.nexus-hero { text-align: center; max-width: 780px; margin: 0 auto 64px; position: relative; z-index: 1; }
.nexus-hero h2 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 22px; line-height: 1.1; }
.nexus-hero h2 .accent { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nexus-hero p { font-size: 17px; color: var(--text-muted); line-height: 1.65; }
.nexus-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 900px; margin: 0 auto 64px; position: relative; z-index: 1;
}
.nexus-feat { padding: 22px; border-radius: 14px; background: var(--bg-card); border: 1px solid var(--border); }
.nexus-feat .t { font-family: var(--font-mono); color: var(--accent); font-size: 11px; letter-spacing: 0.06em; margin-bottom: 10px; }
.nexus-feat .name { font-weight: 600; font-size: 15px; margin-bottom: 5px; }
.nexus-feat .desc { color: var(--text-muted); font-size: 13px; line-height: 1.5; }
@media (max-width: 720px) { .nexus-features { grid-template-columns: 1fr; } }

/* ============ MARQUEE TESTIMONIALS ============ */
.marquee-wrap {
  position: relative; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  margin-bottom: 48px;
}
.marquee { display: flex; gap: 16px; width: max-content; animation: scroll-x 55s linear infinite; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial {
  flex-shrink: 0; width: 360px; padding: 24px;
  border-radius: 16px; background: var(--bg-card); border: 1px solid var(--border); position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: 0; left: 18px;
  font-size: 80px; color: var(--accent); opacity: 0.15; line-height: 1; font-family: Georgia;
}
.testimonial-text { font-size: 14px; line-height: 1.65; color: var(--text); margin-bottom: 16px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--bg); font-size: 13px; flex-shrink: 0;
}
.testimonial-meta .name { font-size: 13px; font-weight: 600; }
.testimonial-meta .role { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); }
.nexus-cta-block { text-align: center; margin-top: 16px; position: relative; z-index: 1; }
.nexus-cta-block p { color: var(--text-muted); font-size: 15px; margin-bottom: 20px; }

/* ============ FAQ ============ */
.faq-grid { max-width: 720px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--border-strong); border-radius: 12px; background: var(--bg-card); overflow: hidden; }
.faq-item summary {
  padding: 20px 24px; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 500; font-size: 15px; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 22px; transition: transform 0.2s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 20px; color: var(--text-muted); font-size: 14px; line-height: 1.65; }
.faq-item .faq-body p { margin-bottom: 10px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 120px 0; text-align: center;
  background:
    radial-gradient(ellipse at center, color-mix(in srgb, var(--accent) 12%, transparent) 0%, transparent 55%),
    linear-gradient(180deg, transparent 0%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border); position: relative; overflow: hidden;
}
.final-cta h2 {
  font-size: clamp(34px, 5.5vw, 64px); font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.05; margin-bottom: 22px; max-width: 780px; margin-left: auto; margin-right: auto;
}
.final-cta h2 .accent { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.final-cta p { color: var(--text-muted); font-size: 18px; max-width: 560px; margin: 0 auto 40px; }

/* ============ FOOTER ============ */
.footer { padding: 48px 0 32px; border-top: 1px solid var(--border); background: var(--bg-deep); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.55; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px; font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--text-muted); font-size: 14px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-family: var(--font-mono); font-size: 12px; color: var(--text-dim);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ REVEAL ON SCROLL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ MOBILE ============ */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 48px; }
  .kit-cta-section, .nexus-section, .solution { padding: 64px 0; }
  .final-cta { padding: 72px 0; }
  .container, .container-narrow { padding: 0 20px; }
  .testimonial { width: 300px; padding: 20px; }
  .header-inner { padding: 12px 20px; }
}
