:root {
  color-scheme: light;
  --font-base: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";;
  --bg-page: #f7f7fb;
  --bg-content: #ffffff;
  --bg-muted: #f2f4f7;
  --bg-accent: linear-gradient(120deg, #ff8a3d, #ffb86b);
  --text-primary: #1f2933;
  --text-secondary: #4b5563;
  --text-inverse: #ffffff;
  --border-color: #e5e7eb;
  --brand: #ff8a3d;
  --brand-dark: #d86216;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
  --chart-contract: #2563eb;
  --header-bg: rgba(255, 255, 255, 0.68);
  --header-border: rgba(255, 255, 255, 0.4);
  --header-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --header-pill-bg: rgba(255, 255, 255, 0.32);
  --header-pill-border: rgba(255, 255, 255, 0.45);
  --header-pill-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 12px 32px rgba(15, 23, 42, 0.12);
  --theme-toggle-bg: rgba(255, 255, 255, 0.35);
  --theme-toggle-border: rgba(255, 255, 255, 0.5);
}

html.theme-dark {
  color-scheme: dark;
  --bg-page: #0f172a;
  --bg-content: #111827;
  --bg-muted: #1f2937;
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --border-color: #1f2937;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.35);
  --header-bg: rgba(17, 24, 39, 0.62);
  --header-border: rgba(94, 106, 133, 0.4);
  --header-shadow: 0 26px 60px rgba(8, 15, 30, 0.6);
  --header-pill-bg: rgba(22, 30, 46, 0.72);
  --header-pill-border: rgba(98, 116, 152, 0.4);
  --header-pill-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 26px rgba(0, 0, 0, 0.45);
  --theme-toggle-bg: rgba(23, 33, 52, 0.75);
  --theme-toggle-border: rgba(94, 106, 133, 0.5);
  --chart-contract: #60a5fa;
}

@media (prefers-color-scheme: dark) {
  :root:not(.theme-dark) {
    color-scheme: dark;
    --bg-page: #0f172a;
    --bg-content: #111827;
    --bg-muted: #1f2937;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --border-color: #1f2937;
    --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.35);
    --header-bg: rgba(17, 24, 39, 0.62);
    --header-border: rgba(94, 106, 133, 0.4);
    --header-shadow: 0 26px 60px rgba(8, 15, 30, 0.6);
      --header-pill-bg: rgba(22, 30, 46, 0.72);
      --header-pill-border: rgba(98, 116, 152, 0.4);
      --header-pill-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 26px rgba(0, 0, 0, 0.45);
      --theme-toggle-bg: rgba(23, 33, 52, 0.75);
      --theme-toggle-border: rgba(94, 106, 133, 0.5);
      --chart-contract: #60a5fa;
    }
  }

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    box-shadow: var(--header-shadow);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.15));
    opacity: 0.5;
}

.site-header.is-transparent {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
}
.site-header.is-transparent::after {
    opacity: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 40px;
  background: var(--bg-content);
  border: 1px solid var(--header-border);
  box-shadow: var(--header-pill-shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.brand-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.brand-subtitle {
  margin: 2px 0 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--header-pill-bg);
    border: 1px solid var(--header-pill-border);
    box-shadow: var(--header-pill-shadow);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.nav-links a {
    color: rgba(31, 41, 51, 0.72);
    transition: color 0.2s ease, opacity 0.2s ease;
}

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

html.theme-dark .nav-links a {
    color: rgba(229, 231, 235, 0.72);
}

.nav-links .nav-cta {
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--bg-accent);
    color: var(--text-inverse);
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(255, 138, 61, 0.25);
}

.nav-links .nav-cta:hover {
    opacity: 0.9;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid var(--theme-toggle-border);
    background: var(--theme-toggle-bg);
    color: var(--text-secondary);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.6);
    color: var(--text-primary);
}

html.theme-dark .menu-toggle:hover {
    background: rgba(26, 36, 54, 0.9);
}

.menu-toggle__icon {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle__icon span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-active .menu-toggle__icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .menu-toggle__icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid var(--theme-toggle-border);
    background: var(--theme-toggle-bg);
    color: var(--text-secondary);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.6);
    color: var(--text-primary);
}

html.theme-dark .theme-toggle:hover {
    background: rgba(26, 36, 54, 0.9);
}

main {
  flex: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 90px;
  background-image: radial-gradient(ellipse at 20% 10%, rgba(255, 138, 61, .25), transparent 55%), radial-gradient(ellipse at 80% 30%, rgba(255, 184, 107, .25), transparent 50%), radial-gradient(ellipse at 50% 100%, rgba(255, 138, 61, .18), transparent 60%), linear-gradient(0deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .04));

}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 138, 61, 0.12);
  filter: blur(40px);
  z-index: -1;
}

.hero::before {
  top: -120px;
  left: -160px;
}

.hero::after {
  bottom: -180px;
  right: -120px;
}

.hero-grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.hero-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-dashboard {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-dashboard::after {
  content: "";
  position: absolute;
  inset: -35% 45% 45% -35%;
  background: radial-gradient(circle at top, rgba(255, 138, 61, 0.15), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-dashboard > * {
  position: relative;
  z-index: 1;
}

.hero-dashboard__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.hero-dashboard__eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin: 0 0 8px;
}

.hero-dashboard__value {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}

.hero-dashboard__note {
  margin: 10px 0 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.hero-dashboard__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-dashboard__summary div {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 120px;
}

html.theme-dark .hero-dashboard__summary div {
  background: rgba(17, 24, 39, 0.55);
  border-color: rgba(71, 85, 105, 0.35);
}

.hero-dashboard__summary dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin: 0 0 6px;
}

.hero-dashboard__summary dd {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-dashboard__chart {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 12px 12px 0;
  overflow: hidden;
}

html.theme-dark .hero-dashboard__chart {
  background: rgba(17, 24, 39, 0.65);
  border-color: rgba(71, 85, 105, 0.4);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.hero-dashboard__chart svg {
  width: 100%;
  height: auto;
  display: block;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-dashboard__grid line {
  stroke: rgba(148, 163, 184, 0.25);
  stroke-width: 1;
  stroke-dasharray: 6 8;
}

html.theme-dark .hero-dashboard__grid line {
  stroke: rgba(94, 106, 133, 0.35);
}

.hero-dashboard__area {
  fill: url(#chartActualFill);
  opacity: 0.45;
}

[data-line="actual"] {
  fill: none;
  stroke: var(--brand);
  stroke-width: 3;
}

[data-line="contract"] {
  fill: none;
  stroke: var(--chart-contract);
  stroke-width: 2.5;
  stroke-dasharray: 8 6;
}

.hero-dashboard__chart circle {
  fill: var(--brand);
  stroke: var(--bg-content);
  stroke-width: 2;
  box-shadow: 0 0 0 4px rgba(255, 138, 61, 0.2);
}

.hero-dashboard__chart circle[data-dot="contract"] {
  fill: var(--chart-contract);
}

.hero-dashboard__tooltip {
  position: absolute;
  inset: 16px auto auto 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px;
  min-width: 160px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

html.theme-dark .hero-dashboard__tooltip {
  background: rgba(17, 24, 39, 0.9);
  border-color: rgba(71, 85, 105, 0.45);
  color: var(--text-secondary);
}

html:not(.has-js) .hero-dashboard__tooltip {
  position: static;
  opacity: 1;
  transform: none;
  margin-top: 12px;
  pointer-events: auto;
}

.hero-dashboard__tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-dashboard__tooltip strong {
  font-weight: 700;
  color: var(--text-primary);
}

.hero-dashboard__tooltip-time {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.hero-dashboard__tooltip-delta {
  font-weight: 600;
  color: var(--brand);
}

.hero-dashboard__tooltip-delta.is-negative {
  color: var(--chart-contract);
}

.hero-dashboard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-dashboard__legend {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-dashboard__legend li {
  display: inline-flex;
  align-items: center;
}

.hero-dashboard__legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-flex;
  margin-right: 8px;
}

.hero-dashboard__legend-dot--actual {
  background: var(--brand);
}

.hero-dashboard__legend-dot--contract {
  background: var(--chart-contract);
}

.hero-dashboard__delta {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 138, 61, 0.12);
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 14px;
}

.hero-dashboard__delta.is-negative {
  background: rgba(37, 99, 235, 0.12);
  color: var(--chart-contract);
}

.hero-dashboard__caption {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
}
.hero-title {
  font-size: clamp(42px, 4vw, 48px);
  line-height: 1;
  font-weight: 800;
  margin: 0;
}

.hero-text {
  margin: 18px 0 24px;
  font-size: 17px;
  color: var(--text-secondary);
}
.hero-sub-text {
  margin: 18px 0 24px;
  font-size: 13px;
  color: var(--text-secondary);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--bg-accent);
  color: var(--text-inverse);
  box-shadow: var(--shadow-soft);
}

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

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

.btn-secondary:hover {
  background: var(--bg-muted);
}

.stats {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-md);
  background: var(--bg-content);
  padding: 20px 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  text-align: center;
  /* gap: 10px;
  min-height: 132px; */
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
}

.stat-label {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.section {
  padding: 80px 0;
}

.section-header {
  max-width: 680px;
  text-align: center;
  margin: 0 auto 40px;
}

.section-title {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 16px;
}

.section-lead {
  margin: 0;
  color: var(--text-secondary);
  font-size: 17px;
}

.features-grid,
.audience-grid,
.steps-grid,
.gallery-grid {
  display: grid;
  gap: 24px;
}

.text-brand-500 {
  --tw-text-opacity: 1;
  color: rgb(255 138 61 / var(--tw-text-opacity, 1));
}
.w-5 {
  width: 1.25rem;
}
.h-5 {
  height: 1.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.flex {
  display: flex;
}
.mt-6 {
  margin-top: 1.5rem;
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.card {
  background: var(--bg-content);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--text-secondary);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 138, 61, 0.16);
  display: grid;
  place-items: center;
  color: var(--brand);
  font-weight: 700;
}

.step-number {
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 10px;
}

.timeline {
  display: grid;
  gap: 20px;
  position: relative;
  --timeline-line-x: 20px;
  --timeline-dot-size: 16px;
  --timeline-dot-offset: 26px;
  --timeline-gap: 26px;
  --timeline-dash-color: rgba(255, 138, 61, 0.28);
}

html.theme-dark .timeline {
  --timeline-dash-color: rgba(96, 165, 250, 0.35);
}

.timeline-item {
  position: relative;
  padding-left: 58px;
}

.timeline-node {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--timeline-line-x);
  width: 2px;
  pointer-events: none;
  background-image:
    linear-gradient(
      to bottom,
      transparent 0 var(--timeline-dot-offset),
      var(--brand) var(--timeline-dot-offset) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.6) 0%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0) 100%
    );
  background-size: 100% 100%, 100% 48px;
  background-position: left top, left 0;
  background-repeat: no-repeat, repeat-y;
  animation: timeline-flow 2.8s linear infinite;
}

html.theme-dark .timeline-node {
  background-image:
    linear-gradient(
      to bottom,
      transparent 0 var(--timeline-dot-offset),
      var(--brand) var(--timeline-dot-offset) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0) 100%
    );
}

.timeline-node::before {
  content: "";
  position: absolute;
  top: var(--timeline-dot-offset);
  left: 50%;
  width: var(--timeline-dot-size);
  height: var(--timeline-dot-size);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(255, 138, 61, 0.18);
}

html.theme-dark .timeline-node::before {
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.25);
}

.timeline-node::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: var(--timeline-gap);
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    to bottom,
    var(--timeline-dash-color) 0 8px,
    transparent 8px 16px
  );
  background-size: 100% 16px;
  background-position: left 0;
  animation: timeline-dash 1.6s linear infinite;
}

.timeline-item:last-child .timeline-node::after {
  display: none;
}

@keyframes timeline-flow {
  0% {
    background-position: left top, left 0;
  }
  100% {
    background-position: left top, left 48px;
  }
}

@keyframes timeline-dash {
  0% {
    background-position: left 0;
  }
  100% {
    background-position: left 16px;
  }
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-content);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.gallery-grid figure:hover {
  transform: translateY(-2px);
}

.gallery-grid figcaption {
  padding: 16px 20px;
  color: var(--text-secondary);
  font-size: 15px;
}

.contact-section {
  display: grid;
  gap: 28px;
}

form {
  background: var(--bg-content);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  display: grid;
  gap: 18px;
}

label span {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-muted);
  color: var(--text-primary);
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--brand);
  background: var(--bg-content);
}

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

.form-note {
  font-size: 14px;
  color: var(--text-secondary);
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  background: var(--bg-content);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
  padding: 22px 26px;
}

.faq-question {
  font-weight: 600;
  margin: 0 0 10px;
  font-size: 18px;
}

.faq-answer {
  margin: 0;
  color: var(--text-secondary);
}

footer {
  background: var(--bg-content);
  border-top: 1px solid var(--border-color);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 138, 61, 0.12);
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 13px;
}

.theme-icon {
    display: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.theme-toggle.is-dark .theme-icon--moon {
    display: block;
}

.theme-toggle:not(.is-dark) .theme-icon--sun {
    display: block;
}

.will-animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.will-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .will-animate,
  .will-animate.is-visible {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .timeline-node {
    animation: none;
    background-position: left top, left 0;
  }

  .timeline-node::after {
    animation: none;
    background-position: left 0;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}

.lightbox figure {
  max-width: 960px;
  width: 100%;
  background: var(--bg-content);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.lightbox-close {
  position: absolute;
  top: 26px;
  right: 28px;
  background: transparent;
  border: none;
  color: var(--text-inverse);
  font-size: 28px;
  cursor: pointer;
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-content);
  color: var(--text-primary);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  z-index: 101;
  border: 1px solid var(--border-color);
  min-width: 240px;
  text-align: center;
}

.noscript-banner {
  background: #fef3c7;
  color: #7c2d12;
  text-align: center;
  padding: 12px 16px;
  font-size: 15px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  padding: 10px 16px;
  background: var(--bg-accent);
  color: var(--text-inverse);
  border-radius: 999px;
  font-weight: 600;
  z-index: 200;
}

.skip-link:focus {
  left: 16px;
}

@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-section {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .has-js .menu-toggle {
    display: inline-flex;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 14px 0;
  }

  .brand {
    flex: 1;
    min-width: 0;
    gap: 10px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-title {
    font-size: 18px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .brand-subtitle {
    display: none;
  }

  .header-actions {
    width: auto;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .menu-toggle,
  .theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    flex: none;
  }

  .has-js .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: auto;
    z-index: 150;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    font-size: 15px;
    background: var(--header-pill-bg);
    border: 1px solid var(--header-pill-border);
    box-shadow: var(--header-shadow);
    min-width: 240px;
    width: min(280px, calc(100vw - 32px));
  }

  .has-js .nav-links.is-open {
    display: flex;
  }

  .has-js .nav-links a {
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
  }

  .has-js .nav-links .nav-cta {
    padding: 10px 14px;
    text-align: center;
  }

  .hero-dashboard__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-dashboard__summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-dashboard__chart {
    padding: 10px 10px 0;
  }

  .hero-dashboard__tooltip {
    inset: auto 16px 16px 16px;
  }

  .hero-dashboard__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-dashboard__legend {
    width: 100%;
  }

  body.menu-open {
    overflow: hidden;
  }

  .cta-row {
    flex-direction: column;
  }

  .timeline {
    --timeline-line-x: 16px;
    --timeline-dot-size: 14px;
    --timeline-dot-offset: 22px;
    --timeline-gap: 24px;
  }

  .timeline-item {
    padding-left: 50px;
  }

  .lightbox figure {
    max-height: 80vh;
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .hero-dashboard__summary {
    grid-template-columns: 1fr;
  }
}
