/* ── COMPONENTS ──────────────────────────────────────────────────────────────
   Every UI component: nav, buttons, hero, sections, cards, FAQ, panel, footer.
   Layout/grid for each section lives in layout.css.
   ──────────────────────────────────────────────────────────────────────── */

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  height: 64px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

nav.scrolled {
  background: rgba(11, 16, 20, 0.92);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep) !important;
  background: var(--accent);
  padding: 9px 20px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-cta:hover { opacity: 0.85; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--accent);
  padding: 16px 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.btn-primary::after {
  content: '→';
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0;
  margin-left: 0;
  max-width: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: max-width 0.3s ease, opacity 0.3s ease, transform 0.3s ease, margin-left 0.3s ease;
}

@media (hover: hover) {
  .btn-primary:hover { opacity: 0.88; }

  .btn-primary:hover::after {
    max-width: 20px;
    opacity: 1;
    transform: translateX(0);
    margin-left: 10px;
  }
}

.btn-secondary {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s ease;
}

.btn-secondary::after {
  content: '→';
  font-size: 13px;
  transition: transform 0.2s ease;
}

.btn-secondary:hover             { color: var(--text); }
.btn-secondary:hover::after      { transform: translateX(4px); }

/* ── HERO ── */
.hero-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 820px;
  padding-bottom: 8px;
  margin-bottom: 48px;
}

h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 20px;
}

.hero-support {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--border);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.work-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.work-footer-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.work-footer-stat .num {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

.work-footer-stat .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.work-footer-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── HERO MARQUEE ── */
.hero-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-item {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.marquee-sep {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--border);
  flex-shrink: 0;
}

.marquee-logo {
  display: block;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── PROBLEM ── */
#problem h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
}

#problem .body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 24px;
}

#problem .closing {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  border-left: 2px solid var(--accent);
  padding-left: 24px;
  margin-top: 40px;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.problem-list li {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.5;
  transition: background 0.2s ease, color 0.2s ease;
}

.problem-list li:last-child  { border-bottom: none; }
.problem-list li:hover       { background: rgba(219,255,0,0.03); color: var(--text); }

.problem-list li::before {
  content: '—';
  font-family: var(--mono);
  font-size: 11px;
  color: var(--border);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── WHAT WE BUILD ── */
#what h2 {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 640px;
  margin-bottom: 32px;
}

#what .intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 80px;
}

.comparison-item {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
}

.comparison-item:last-child { border-right: none; }

.comparison-tag {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.comparison-item h3 {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.4;
}

.comparison-item p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

#what .closing-line {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  max-width: 600px;
}

#what .closing-line strong {
  color: var(--text);
  font-weight: 400;
}

/* ── CORE FOCUS ── */
#focus h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

#focus .intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

#focus .closing {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.service-list {
  list-style: none;
  border: 1px solid var(--border);
}

.service-list li {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  cursor: default;
}

.service-list li:last-child { border-bottom: none; }

.service-list li:hover {
  background: rgba(255,255,255,0.025);
  color: var(--text);
  padding-left: 32px;
}

.service-list li .arrow {
  font-size: 10px;
  color: var(--border);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-list li:hover .arrow { opacity: 1; color: var(--accent); }

/* ── PLANS ── */
#plans h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}

#plans .intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 64px;
}

.plan-card {
  border: 1px solid var(--border);
  padding: 40px;
  background: var(--canvas);
  transition: border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.plan-card:hover { border-color: var(--muted); }

.plan-card .btn-primary { margin-top: auto; }

.plan-card h3 {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}

.plan-card .tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.plan-price {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price-note {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.plan-features li::before {
  content: '—';
  font-family: var(--mono);
  font-size: 10px;
  color: var(--border);
  position: absolute;
  left: 0;
  top: 2px;
}

.plan-badge {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--deep);
  background: var(--accent);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 20px;
}

/* ── PROCESS ── */
#process h2 {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 640px;
  margin-bottom: 32px;
}

#process .intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 64px;
}

.process-phase {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.process-phase:last-child { border-right: none; }

.process-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--accent);
  display: block;
  margin-bottom: 40px;
}

.process-timing {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--border);
  display: block;
  margin-bottom: 20px;
}

.process-phase h3 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.3;
}

.process-phase p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

/* ── WORK ── */
#work h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 640px;
}

#work .intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 64px;
}

.work-card {
  position: relative;
  background: var(--canvas);
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.work-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
              filter  0.8s cubic-bezier(0.19, 1, 0.22, 1);
  display: block;
}

.work-card:hover .work-card-image {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.work-card-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-card:hover .work-card-meta { opacity: 1; }

.work-card-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 6px;
}

.work-card-title {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.work-card-arrow {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--accent);
}

/* ── FAQ ── */
#faq h2 {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text);
  position: sticky;
  top: 88px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  user-select: none;
}

.faq-question span {
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.45;
  flex: 1;
}

.faq-toggle {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  transition: transform 0.25s ease, color 0.25s ease;
  margin-top: 2px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  overflow: hidden;
  height: 0;
}

.faq-answer p {
  padding-bottom: 28px;
  max-width: 560px;
}

/* ── CTA ── */
#cta h2 {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

#cta .body {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

#cta .cta-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer-logo {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.footer-logo span { color: var(--accent); }

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--border);
}

/* ── AVAILABILITY DOT ── */
.avail-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.avail-dot::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 110;
  position: relative;
}

.burger span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: all 0.3s ease;
}

.burger span:nth-child(1) { width: 24px; }
.burger span:nth-child(2) { width: 16px; align-self: flex-end; }

.burger.open span:nth-child(1) { transform: translateY(3px) rotate(45deg); width: 24px; }
.burger.open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); width: 24px; }

/* ── MOBILE MENU ── */
#menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11,16,20,0.75);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

#mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: var(--canvas);
  border-left: 1px solid var(--border);
  z-index: 201;
  padding: 48px;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

#mobile-menu.open { transform: translateX(0); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 96px;
  flex: 1;
}

.mobile-nav a {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  padding: 20px 0;
  width: 100%;
  text-align: right;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

.mobile-nav a:hover { color: var(--accent); }

/* ── SLIDE PANEL ── */
#panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11,16,20,0.75);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#panel-overlay.open {
  opacity: 1;
  pointer-events: all;
}

#slide-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: var(--canvas);
  border-left: 1px solid var(--border);
  z-index: 201;
  padding: 48px;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

#slide-panel.open { transform: translateX(0); }

.close-x {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s ease, border-color 0.2s ease;
  z-index: 1;
}

.close-x:hover { color: var(--text); border-color: var(--muted); }

.panel-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-top: 56px;
  margin-bottom: 20px;
}

.panel-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 48px;
}

.panel-field {
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  margin-bottom: 32px;
  transition: border-color 0.2s ease;
}

.panel-field:focus-within { border-color: var(--accent); }

.panel-field label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}

.panel-field input,
.panel-field select {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text);
  padding: 4px 0 8px;
}

.panel-field select option {
  background: var(--canvas);
  color: var(--text);
}

.panel-submit {
  margin-top: auto;
  padding-top: 40px;
}

.panel-submit .btn-primary {
  width: 100%;
  text-align: center;
  display: block;
  padding: 18px 32px;
}

.panel-note {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--border);
  text-align: center;
  margin-top: 16px;
}

/* ── RESPONSIVE: show burger, hide nav links ── */
@media (max-width: 1024px) {
  .nav-links { gap: 24px; }
}

@media (max-width: 640px) {
  nav           { height: 56px; }
  .nav-links    { display: none; }
  .burger       { display: flex; }

  h1 { margin-bottom: 32px; }
  .hero-label   { margin-bottom: 32px; }
  .hero-support { margin-bottom: 40px; }
  .hero-actions { margin-bottom: 48px; gap: 16px; }

  /* Hero footer: 2×2 on small screens */
  .work-footer  { gap: 24px; }
  .work-footer-divider { display: none; }
  .work-footer-stat .num { font-size: 22px; }

  /* Comparison items: remove side border */
  .comparison-item { border-right: none; padding: 28px 20px; }

  /* Plan cards: tighten padding */
  .plan-card { padding: 28px 20px; }

  /* FAQ */
  .faq-question { padding: 20px 0; }
  .faq-question span { font-size: 15px; }
  #faq h2 { font-size: 26px; }

  /* CTA stacked actions */
  #cta .cta-actions { flex-direction: column; align-items: flex-start; gap: 20px; }

  /* Work card meta always visible on touch */
  .work-card-meta { opacity: 1; }

  /* Panel title */
  .panel-title { margin-bottom: 32px; }
}
