/* PermitArc marketing site — palette matches app (compliance_form_theme.dart) */
:root {
  --bg-dark: #0d1117;
  --bg-panel: #161b22;
  --border: #30363d;
  --text-muted: #8b949e;
  --text-body: #c9d1d9;
  --text-light: #fafaf8;
  --accent-teal: #2dd4bf;
  --accent-blue: #58a6ff;
  --urgent: #ffa657;
  --valid: #56d364;
  --expired: #ff7b72;
  --bg-light: #fafaf8;
  --text-dark: #1a1f2e;
  /* Desktop uses full width; phones/tablets stack via grids + breakpoint below */
  --layout-max: 1280px;
  --layout-content: 1160px;
  --layout-read: 760px;
  --layout-gutter: clamp(1rem, 3vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 0.85rem var(--layout-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(45, 212, 191, 0.35));
  animation: logo-radar-glow 3.2s ease-in-out infinite;
}

@keyframes logo-radar-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(45, 212, 191, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(45, 212, 191, 0.55));
  }
}

.logo-wordmark {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo-arc {
  color: var(--accent-teal);
}

.nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

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

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-teal);
  color: #0d1117;
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}

/* App-matched canvas — premium_canvas_background.dart */
.premium-canvas {
  position: relative;
  background: radial-gradient(ellipse 115% 100% at 50% -20%, #1e2024 0%, #0b0c0e 100%);
  overflow: hidden;
}

.premium-canvas::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 224, 0.07) 0.75px, transparent 0.75px),
    linear-gradient(90deg, rgba(0, 255, 224, 0.07) 0.75px, transparent 0.75px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}

.premium-canvas > * {
  position: relative;
  z-index: 1;
}

.section-light {
  background: var(--bg-light);
}

/* Hero */
.hero {
  color: var(--text-light);
  padding: 3.5rem var(--layout-gutter) 3.25rem;
}

/* Thin light seam between hero and next dark band — keeps rhythm without a full white section */
.section-seam {
  height: 6px;
  background: var(--bg-light);
}

/* Slightly softer grid on second dark band so hero reads as the lead */
.why-band.premium-canvas {
  background: radial-gradient(ellipse 115% 100% at 50% -20%, #25282c 0%, #121316 100%);
}

.hero-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.hero-phone-col {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  padding-top: 0.35rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 700;
}

.hero .subhead {
  font-size: 1.05rem;
  color: var(--text-body);
  margin: 0 0 0.75rem;
}

.hero .scope {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.hero-tag {
  font-size: 0.92rem;
  color: var(--text-body);
  margin: 0 0 1.5rem;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-platform {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-platform strong {
  color: var(--text-body);
  font-weight: 600;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
}

.hero-pillar-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.12);
  color: var(--accent-teal);
  border: 1px solid rgba(45, 212, 191, 0.38);
}

.hero-pillars-note {
  flex: 1 1 100%;
  margin: 0.1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Phone mock */
.phone-mock {
  background: var(--bg-panel);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 1rem;
  width: 100%;
  max-width: 320px;
  margin: 0;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(45, 212, 191, 0.07);
}

.phone-screen {
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
}

.mock-score {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--valid);
  margin: 0;
}

.mock-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.mock-alert {
  background: rgba(255, 166, 87, 0.15);
  border: 1px solid var(--urgent);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0;
}

.mock-alert strong {
  color: var(--urgent);
}

.mock-ok {
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid var(--accent-teal);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-body);
}

.mock-proactive {
  background: rgba(88, 166, 255, 0.1);
  border: 1px solid rgba(88, 166, 255, 0.35);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-body);
}

/* Sections */
section {
  padding: 3.5rem var(--layout-gutter);
}

.section-inner {
  max-width: var(--layout-content);
  margin: 0 auto;
}

section h2 {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  color: var(--text-dark);
}

.section-lead {
  color: #4a5568;
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

.section-dark {
  color: var(--text-body);
}

.section-dark h2 {
  color: var(--text-light);
}

.section-dark .section-lead {
  color: var(--text-muted);
}

.section-divider {
  border-top: 1px solid #e2e8f0;
}

/* Why PermitArc — compare (dark canvas) */
.why-compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.why-col {
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
}

.why-col-muted {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.why-col-accent {
  background: rgba(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.45);
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.08);
}

.why-col h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--text-light);
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-body);
}

.why-list li:last-child {
  margin-bottom: 0;
}

.why-icon {
  flex-shrink: 0;
  width: 1.25rem;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.45;
  text-align: center;
}

.why-no .why-icon {
  color: var(--expired);
}

.why-yes .why-icon {
  color: var(--accent-teal);
}

.why-close {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
}

/* Intelligence section — light band (alternates with dark canvas) */
#ai.section-light .section-lead {
  color: #4a5568;
}

#ai.section-light h2 {
  color: var(--text-dark);
}

#ai .ai-included-banner {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.35);
  color: #2d3748;
}

#ai .ai-card {
  background: #fff;
  border: 1px solid #e2e8f0;
}

#ai .ai-card h3 {
  color: var(--text-dark);
}

#ai .ai-card p {
  color: #4a5568;
}

#ai .ai-where {
  color: #718096 !important;
}

#ai .ai-foot {
  color: #718096;
}

#ai .ai-foot a {
  color: var(--accent-blue);
}

/* Scope pillars */
.scope-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.scope-pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.15rem;
}

.pillar-num {
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  line-height: 1.75rem;
  text-align: center;
  background: var(--accent-teal);
  color: #0d1117;
  font-weight: 700;
  border-radius: 50%;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.scope-pillar h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--text-light);
}

.scope-pillar p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.track-subhead {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0 0 1rem;
}

.track-item-accent {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
  font-weight: 600;
}

.track-foot {
  margin: 1.25rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* AI intelligence section */
.section-inner-wide {
  max-width: var(--layout-max);
}

.ai-included-banner {
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  color: var(--text-body);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.ai-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.15rem;
}

.ai-card h3 {
  margin: 0.5rem 0 0.35rem;
  font-size: 1rem;
  color: var(--text-light);
}

.ai-card p {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.ai-card p:last-child {
  margin-bottom: 0;
}

.ai-where {
  font-size: 0.82rem !important;
  color: var(--text-body) !important;
  opacity: 0.85;
}

.ai-benefit {
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#ai .ai-benefit {
  border-top-color: #e2e8f0;
}

#ai .ai-benefit strong {
  color: #0d9488;
}

.section-dark .why-close {
  color: var(--text-muted);
}

.ai-foot {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ai-foot a {
  color: var(--accent-teal);
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.badge-included {
  background: rgba(86, 211, 100, 0.15);
  color: var(--valid);
  border: 1px solid rgba(86, 211, 100, 0.35);
}

.badge-metered {
  background: rgba(88, 166, 255, 0.12);
  color: var(--accent-blue);
  border: 1px solid rgba(88, 166, 255, 0.3);
}

.section-dark h2 {
  color: var(--text-light);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
}

.step-num {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  background: var(--accent-teal);
  color: #0d1117;
  font-weight: 700;
  border-radius: 50%;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: #4a5568;
}

/* Track grid */
.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.track-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  text-align: center;
}

/* Pricing teaser */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.pricing-cards-compact {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.pricing-expand {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.75rem;
  text-align: center;
}

.pricing-expand h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.pricing-expand p {
  margin: 0;
  color: #4a5568;
  font-size: 0.95rem;
}

.price-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.price-card.featured {
  border-color: var(--accent-teal);
  box-shadow: 0 0 0 1px var(--accent-teal);
}

.price-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.price-card .amount {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.price-card .amount span {
  font-size: 1rem;
  font-weight: 500;
  color: #718096;
}

.price-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #718096;
}

.satisfaction-guarantee {
  margin: 1.75rem auto 0;
  max-width: 42rem;
  padding: 1.15rem 1.35rem;
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.12), rgba(88, 166, 255, 0.08));
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-radius: 0.65rem;
  text-align: center;
}

.satisfaction-guarantee h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.satisfaction-guarantee p {
  margin: 0;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.55;
}

.satisfaction-guarantee-dark {
  background: rgba(45, 212, 191, 0.08);
  border-color: rgba(45, 212, 191, 0.28);
}

.satisfaction-guarantee-dark h3 {
  color: var(--text-light);
}

.satisfaction-guarantee-dark p {
  color: var(--text-body);
}

.pricing-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #4a5568;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
}

.faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #4a5568;
}

.section-lead-tight {
  margin-bottom: 1.35rem;
  max-width: 42rem;
}

.section-cta-row {
  margin: 1.25rem 0 0;
  text-align: center;
}

.section-cta-block {
  text-align: center;
  padding-bottom: 2rem;
}

.section-cta-sub {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.text-link-arrow {
  font-weight: 600;
  color: var(--accent-blue);
  text-decoration: none;
}

.text-link-arrow:hover {
  color: var(--accent-teal);
  text-decoration: underline;
}

.pillar-teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.pillar-teaser {
  display: block;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.15rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.pillar-teaser:hover {
  border-color: rgba(45, 212, 191, 0.55);
  box-shadow: 0 4px 20px rgba(45, 212, 191, 0.12);
  transform: translateY(-2px);
  text-decoration: none;
}

.pillar-teaser h3 {
  margin: 0.5rem 0 0.35rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.pillar-teaser p {
  margin: 0;
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.45;
}

.scope-pillars-compact .scope-pillar p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.scope-pillar a {
  color: var(--accent-teal);
  font-weight: 500;
}

.satisfaction-guarantee-compact {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
}

.satisfaction-guarantee-compact p {
  margin: 0;
  font-size: 0.92rem;
}

.faq-accordion {
  max-width: var(--layout-read);
}

.faq-details {
  border-bottom: 1px solid #e2e8f0;
  padding: 0.35rem 0;
}

.faq-details summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 0;
  list-style: none;
  color: var(--text-dark);
}

.faq-details summary::-webkit-details-marker {
  display: none;
}

.faq-details summary::after {
  content: "+";
  float: right;
  color: var(--accent-teal);
  font-weight: 700;
}

.faq-details[open] summary::after {
  content: "−";
}

.faq-details p {
  margin: 0 0 1rem;
  padding-right: 1.5rem;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.55;
}

/* Footer */
.site-footer {
  color: var(--text-muted);
  padding: 2rem var(--layout-gutter);
  font-size: 0.85rem;
}

.footer-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

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

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

.disclaimer {
  max-width: var(--layout-max);
  margin: 1rem auto 0;
  font-size: 0.8rem;
  color: var(--hint, #484f58);
}

/* Subpages */
.page-hero {
  color: var(--text-light);
  padding: 2.75rem var(--layout-gutter) 2.5rem;
  text-align: center;
}

.page-hero-inner {
  max-width: var(--layout-content);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.page-hero p {
  margin: 0;
  color: var(--text-body);
  font-size: 1.05rem;
}

.page-hero-scope {
  margin-top: 0.85rem !important;
  font-size: 0.95rem !important;
  color: var(--text-muted) !important;
}

.page-content {
  padding: 2.5rem var(--layout-gutter) 3.5rem;
}

.page-content .section-inner {
  max-width: var(--layout-read);
}

.pricing-full .section-inner {
  max-width: var(--layout-max);
}

/* Full pricing */
.pricing-full .pricing-cards {
  margin-bottom: 2rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  text-align: left;
  font-size: 0.9rem;
  color: #4a5568;
}

.price-card li {
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-weight: 700;
}

.pricing-anchor {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.pricing-anchor h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.pricing-anchor p {
  margin: 0;
  color: #4a5568;
}

.pricing-scope-note {
  text-align: center;
  margin: 0 0 1.75rem;
  font-size: 0.98rem;
  color: #4a5568;
  line-height: 1.55;
}

.pricing-included {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-included h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.included-col h4 {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.included-col ul {
  margin: 0;
  padding-left: 1.15rem;
  color: #4a5568;
  font-size: 0.92rem;
}

.included-col li {
  margin-bottom: 0.4rem;
}

.included-note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: #718096;
}

/* Feedback page */
.feedback-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.75rem;
}

.feedback-intro {
  margin: 0 0 1.5rem;
  color: #4a5568;
  font-size: 1.02rem;
}

.feedback-panel h2 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.feedback-list {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: #4a5568;
}

.feedback-list li {
  margin-bottom: 0.5rem;
}

.feedback-cta {
  margin-bottom: 1.25rem;
}

.feedback-note {
  margin: 0;
  font-size: 0.9rem;
  color: #718096;
}

.pricing-cta {
  text-align: center;
  margin-top: 2rem;
}

.btn-disabled {
  background: #30363d;
  color: var(--text-muted);
  cursor: default;
  pointer-events: none;
}

/* Legal documents */
.legal-doc {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  font-size: 0.95rem;
  color: #2d3748;
}

.legal-doc .legal-meta {
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.legal-doc h2 {
  font-size: 1.05rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--text-dark);
}

.legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-doc p,
.legal-doc li {
  line-height: 1.65;
}

.legal-doc ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.legal-doc .draft-notice {
  background: rgba(255, 166, 87, 0.12);
  border: 1px solid var(--urgent);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-phone-col {
    padding-top: 0;
    margin-top: 0.5rem;
    justify-content: center;
  }

  .phone-mock {
    margin-inline: auto;
  }

  .hero-pillars {
    justify-content: center;
  }

  .hero-pillars-note {
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .nav {
    width: 100%;
    justify-content: center;
  }

  .legal-doc {
    padding: 1.25rem;
  }

  .pricing-cards-compact {
    grid-template-columns: 1fr;
  }
}
