/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    transform var(--duration) var(--ease-out),
    background var(--duration) var(--ease-out),
    color var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out);
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

.btn-primary:hover {
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  border-color: var(--color-primary-400);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-secondary);
}

.btn-ghost:hover {
  background: var(--color-bg-subtle);
  color: var(--color-text);
}

.btn-accent {
  background: var(--color-accent-500);
  color: #fff;
}

.btn-lg {
  min-height: 56px;
  padding: 0.9rem 1.75rem;
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}

.btn-sm {
  min-height: 36px;
  padding: 0.4rem 0.9rem;
  font-size: var(--text-xs);
}

.btn-icon {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: var(--radius-md);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  background: var(--color-primary-50);
  color: var(--color-primary-700);
  border: 1px solid var(--color-primary-100);
}

[data-theme="dark"] .badge {
  background: rgba(37, 99, 235, 0.15);
  color: var(--color-primary-300);
  border-color: rgba(37, 99, 235, 0.25);
}

.badge-accent {
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-accent-600);
  border-color: rgba(16, 185, 129, 0.2);
}

[data-theme="dark"] .badge-accent {
  color: var(--color-accent-400);
}

/* Surfaces */
.surface {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.glass {
  background: var(--color-surface-glass);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid var(--color-border);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-strong);
}

.card-link {
  display: block;
  color: inherit;
  height: 100%;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--color-primary-50);
  color: var(--color-primary-600);
  margin-bottom: 1.25rem;
}

[data-theme="dark"] .card-icon {
  background: rgba(37, 99, 235, 0.15);
  color: var(--color-primary-400);
}

.card-icon.accent {
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-accent-600);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}

.feature-card .card-meta {
  margin-top: 1.25rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary-600);
}

[data-theme="dark"] .feature-card .card-meta {
  color: var(--color-primary-400);
}

/* Navbar */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-nav);
  height: var(--nav-height);
  transition:
    background var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: var(--color-surface-glass);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.media-logo {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.media-logo-frame {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.media-logo-frame.is-dark {
  background: #0f172a;
  border-color: #1e293b;
}

.media-logo-frame img {
  max-width: 100%;
  max-height: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--duration-fast), background var(--duration-fast);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--color-text);
  background: var(--color-bg-subtle);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: border-color var(--duration-fast), color var(--duration-fast);
}

.theme-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  place-items: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease-out), opacity var(--duration);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--nav-height) 0 0;
  background: var(--color-bg);
  padding: 1.5rem var(--gutter) 2rem;
  overflow-y: auto;
  z-index: var(--z-overlay);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
  color: var(--color-text);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }
}

/* Footer */
.site-footer {
  background: var(--color-bg-muted);
  border-top: 1px solid var(--color-border);
  padding-block: 4rem 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 22rem;
  line-height: var(--leading-normal);
}

.footer-company {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.footer-company strong {
  display: block;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.footer-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  padding: 0.35rem 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  transition: color var(--duration-fast);
}

.footer-col a:hover {
  color: var(--color-primary-600);
}

[data-theme="dark"] .footer-col a:hover {
  color: var(--color-primary-400);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.footer-copy {
  display: grid;
  gap: 0.35rem;
  max-width: 40rem;
}

.footer-reg {
  color: var(--color-text-muted);
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Forms */
.form {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.95rem;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-text);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 4px var(--color-ring);
}

.field-hint {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: rgba(22, 163, 74, 0.12);
  color: var(--color-success);
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.form-status.error {
  background: rgba(220, 38, 38, 0.1);
  color: var(--color-danger);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--color-text);
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

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

.faq-item .faq-body {
  padding: 0 1.35rem 1.25rem;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* Mockups / Placeholders */
.mockup {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.mockup-screen {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, var(--color-bg-muted) 0%, var(--color-surface) 100%);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border-strong);
}

.mockup-dot:nth-child(1) { background: #f87171; }
.mockup-dot:nth-child(2) { background: #fbbf24; }
.mockup-dot:nth-child(3) { background: #34d399; }

.mockup-sidebar {
  width: 22%;
  background: var(--color-bg-subtle);
  border-radius: var(--radius-sm);
}

.mockup-body {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  min-height: 0;
}

.mockup-main {
  flex: 1;
  display: grid;
  gap: 0.6rem;
}

.mockup-bar {
  height: 10px;
  border-radius: 4px;
  background: var(--color-border);
  width: 40%;
}

.mockup-panel {
  border-radius: var(--radius-md);
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  min-height: 48px;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.mockup-stat {
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.mockup-stat-value {
  height: 14px;
  width: 50%;
  border-radius: 4px;
  background: var(--gradient-primary);
  opacity: 0.7;
  margin-bottom: 0.4rem;
}

.mockup-stat-label {
  height: 6px;
  width: 70%;
  border-radius: 3px;
  background: var(--color-border);
}

.media-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  background: var(--color-bg-muted);
}

.media-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-visual .media-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 10;
}

.hero-visual .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-box {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 2rem;
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-xl);
  background: var(--color-bg-muted);
  color: var(--color-text-muted);
  min-height: 200px;
  aspect-ratio: attr(data-ratio type(<number>), auto);
}

.placeholder-box[data-ratio="16/9"] { aspect-ratio: 16 / 9; }
.placeholder-box[data-ratio="4/3"] { aspect-ratio: 4 / 3; }
.placeholder-box[data-ratio="1/1"] { aspect-ratio: 1 / 1; }
.placeholder-box[data-ratio="3/4"] { aspect-ratio: 3 / 4; }

.placeholder-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.placeholder-hint {
  font-size: var(--text-sm);
  max-width: 16rem;
}

/* Logo strip */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  opacity: 0.7;
}

.logo-placeholder {
  height: 36px;
  min-width: 100px;
  padding: 0 1rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-surface);
}

/* Stats */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin-top: 0.35rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CTA band */
.cta-band {
  border-radius: var(--radius-2xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--gradient-primary);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.25), transparent 40%);
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.cta-band .btn-secondary {
  background: #fff;
  color: var(--color-primary-700);
  border-color: transparent;
}

.cta-band .btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a:hover {
  color: var(--color-primary-600);
}

.breadcrumb [aria-current="page"] {
  color: var(--color-text);
  font-weight: 500;
}

/* Prose for legal/content */
.prose {
  max-width: 720px;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2.5rem 0 1rem;
  color: var(--color-text);
}

.prose h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 650;
  margin: 1.75rem 0 0.75rem;
  color: var(--color-text);
}

.prose p,
.prose li {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 1rem;
}

.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.prose ol {
  list-style: decimal;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.prose a {
  color: var(--color-primary-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-theme="dark"] .prose a {
  color: var(--color-primary-400);
}

.prose .meta {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: 2rem;
}

/* AEO: direct-answer block for answer engines */
.direct-answer {
  margin: 0 0 2rem;
  padding: 1.25rem 1.35rem;
  border-left: 3px solid var(--color-primary-500, #2563eb);
  background: color-mix(in srgb, var(--color-primary-500, #2563eb) 8%, transparent);
  border-radius: 0 var(--radius-md, 0.75rem) var(--radius-md, 0.75rem) 0;
}

.direct-answer > p:first-child {
  margin: 0 0 0.35rem;
  font-size: var(--text-xs, 0.75rem);
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-600, #2563eb);
}

[data-theme="dark"] .direct-answer > p:first-child {
  color: var(--color-primary-400, #60a5fa);
}

.direct-answer > p:last-child {
  margin: 0;
  color: var(--color-text);
  font-size: var(--text-base, 1rem);
  line-height: var(--leading-relaxed);
  font-weight: 500;
}

/* GEO: citation-ready entity facts */
.entity-facts {
  margin: 1.75rem 0 0;
  padding: 1.5rem 1.5rem 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg, 0.75rem);
  background: var(--color-bg-muted, transparent);
}

.entity-facts > h2,
.entity-facts > .heading-xs {
  margin: 0 0 1rem;
}

.entity-facts dl {
  display: grid;
  grid-template-columns: minmax(8rem, 11rem) 1fr;
  gap: 0.65rem 1.25rem;
  margin: 0;
}

.entity-facts dt {
  margin: 0;
  font-size: var(--text-sm, 0.875rem);
  font-weight: 650;
  color: var(--color-text-muted);
}

.entity-facts dd {
  margin: 0;
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text);
  line-height: var(--leading-relaxed);
}

@media (max-width: 560px) {
  .entity-facts dl {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .entity-facts dt {
    margin-top: 0.5rem;
  }

  .entity-facts dt:first-child {
    margin-top: 0;
  }
}

.prose .faq-list {
  max-width: none;
  margin-top: 1rem;
}

.prose .faq-item .faq-body {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-primary-600);
  border: 3px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-primary-200);
}

.timeline-year {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-600);
  margin-bottom: 0.35rem;
}

[data-theme="dark"] .timeline-year {
  color: var(--color-primary-400);
}

/* Pricing */
.price-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.price-card.featured {
  border-color: var(--color-primary-400);
  box-shadow: var(--shadow-glow);
  position: relative;
}

.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 1rem 0 0.25rem;
}

.price-amount span {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-muted);
}

.price-features {
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.65rem;
  flex: 1;
}

.price-features li {
  display: flex;
  gap: 0.6rem;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.price-features li::before {
  content: "✓";
  color: var(--color-accent-500);
  font-weight: 700;
}

/* Testimonial */
.testimonial {
  padding: 1.75rem;
}

.testimonial blockquote {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: var(--text-sm);
}

.testimonial-author strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.testimonial-author span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Ownership callout — Meta verification friendly */
.ownership-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--color-bg-muted);
  border: 1px solid var(--color-border);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.ownership-note strong {
  color: var(--color-text);
}

/* Clear India-only company presence notice */
.india-only-notice {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg, 0.75rem);
  border: 1px solid color-mix(in srgb, var(--color-primary-500, #2563eb) 35%, var(--color-border));
  background: color-mix(in srgb, var(--color-primary-500, #2563eb) 7%, transparent);
}

.india-only-notice strong {
  display: inline-block;
  font-size: var(--text-xs, 0.75rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-primary-700, #1d4ed8);
  background: color-mix(in srgb, var(--color-primary-500, #2563eb) 14%, transparent);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  flex: 0 0 auto;
}

[data-theme="dark"] .india-only-notice strong {
  color: var(--color-primary-300, #93c5fd);
}

.india-only-notice p {
  margin: 0;
  flex: 1 1 16rem;
  font-size: var(--text-sm, 0.875rem);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  font-weight: 500;
}

/* Table of links / resource list */
.resource-list {
  display: grid;
  gap: 0.75rem;
}

.resource-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.resource-item:hover {
  border-color: var(--color-primary-300);
  box-shadow: var(--shadow-sm);
}

.resource-item span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Floating helper cards (hero) */
.float-card {
  position: absolute;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--color-surface-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text);
  animation: float 6s var(--ease-in-out) infinite;
  z-index: 2;
}

.float-card.accent-dot::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-500);
  margin-right: 0.45rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Icon SVG helpers */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}
