/* One Day Website Design — Premium (green) theme */

:root {
  --bg: #0f1311;
  --surface: #161b18;
  --ink: #eef2ee;
  --muted: #96a29a;
  --line: #28302b;
  --accent: oklch(0.74 0.15 158);
  --accent-ink: #08130d;
  --accent-soft: oklch(0.74 0.15 158 / 0.14);
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --wt-head: 600;
  --max-width: 1160px;
  --radius-sm: 9px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

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

a {
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 88px 0;
}

.section-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-family: var(--font-head);
  font-weight: var(--wt-head);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 14px;
}

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

/* ===== HEADER ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.1);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-ink);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.logo-domain {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.site-nav a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: filter 0.15s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  filter: brightness(1.06);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-primary-lg {
  font-size: 18px;
  padding: 18px 26px;
  border-radius: 13px;
}

.btn-nav {
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}

.btn-secondary {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  background: transparent;
}

.btn-secondary:hover {
  filter: brightness(1.1);
}

.btn-cta-inverse {
  background: var(--surface);
  color: var(--ink);
  font-size: 18px;
  padding: 18px 32px;
  border-radius: 13px;
}

.btn-cta-inverse:hover {
  filter: brightness(0.97);
}

.btn-hero {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 15px 26px;
  border-radius: var(--radius-md);
}

.btn-hero-main {
  font-size: 17px;
}

.btn-hero-sub {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

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

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

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

/* ===== HERO ===== */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 76px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent-soft);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-badge-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.hero-title {
  font-family: var(--font-head);
  font-weight: var(--wt-head);
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 22px;
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 30px;
}

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

.hero-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 26px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
  font-size: 17px;
}

.hero-trust-text {
  font-size: 14px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.browser-mockup {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.browser-url {
  margin-left: 8px;
  font-size: 11px;
  color: var(--muted);
}

.browser-screen {
  aspect-ratio: 4 / 3;
  background-image: repeating-linear-gradient(
    45deg,
    var(--line) 0,
    var(--line) 1px,
    transparent 1px,
    transparent 11px
  );
  background-color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.browser-placeholder {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 8px;
}

.hero-stat {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}

.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
}

/* ===== COMPARISON ===== */

.comparison {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.compare-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--bg);
}

.compare-card--highlight {
  border: 1.5px solid var(--accent);
  background: var(--surface);
  position: relative;
  box-shadow: 0 24px 60px -34px var(--accent);
}

.compare-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}

.compare-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.compare-label--accent {
  color: var(--accent);
}

.compare-price {
  font-family: var(--font-head);
  font-weight: var(--wt-head);
  font-size: 34px;
  color: var(--ink);
  margin: 12px 0 4px;
}

.compare-price--strike {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}

.compare-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.45;
}

.check-list .icon {
  font-size: 15px;
  line-height: 1.4;
  flex-shrink: 0;
}

.check-list .icon--muted {
  color: var(--muted);
}

.check-list .icon--accent {
  color: var(--accent);
}

.check-list li span:last-child {
  color: var(--muted);
}

.check-list--positive li span:last-child {
  color: var(--ink);
}

/* ===== BENEFITS ===== */

.benefits {
  background: var(--bg);
}

.benefits-intro {
  max-width: 660px;
  margin-bottom: 48px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 18px;
}

.benefit-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 9px;
  letter-spacing: -0.01em;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== HOW IT WORKS ===== */

.how-it-works {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step-number {
  font-family: var(--font-head);
  font-weight: var(--wt-head);
  font-size: 15px;
  color: var(--accent-ink);
  background: var(--accent);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ===== KEYWORD ===== */

.keyword {
  background: var(--bg);
}

.keyword-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.keyword-title {
  font-family: var(--font-head);
  font-weight: var(--wt-head);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 20px;
}

.keyword-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 18px;
}

.keyword-text:last-of-type {
  margin-bottom: 0;
}

.keyword-text em {
  font-style: italic;
  color: var(--ink);
}

.search-demo {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 26px 60px -34px rgba(0, 0, 0, 0.35);
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 13px 16px;
  margin-bottom: 18px;
}

.search-bar-icon {
  color: var(--muted);
  font-size: 16px;
}

.search-bar-text {
  font-size: 15px;
  color: var(--ink);
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-result {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 15px 16px;
}

.search-result--top {
  border: 1.5px solid var(--accent);
  background: var(--accent-soft);
}

.search-result--ghost {
  opacity: 0.6;
}

.search-result-url {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.search-result-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}

.search-result-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.skeleton-line {
  height: 9px;
  border-radius: 4px;
  background: var(--line);
  margin-bottom: 9px;
}

.skeleton-line:last-child {
  margin-bottom: 0;
}

.skeleton-line--55 { width: 55%; }
.skeleton-line--80 { width: 80%; margin-bottom: 7px; }
.skeleton-line--70 { width: 70%; }
.skeleton-line--48 { width: 48%; }
.skeleton-line--75 { width: 75%; }

/* ===== GUARANTEE ===== */

.guarantee {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guarantee-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent-soft);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.guarantee-badge-icon {
  color: var(--accent);
  font-size: 15px;
}

.guarantee-badge-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.guarantee-title {
  font-family: var(--font-head);
  font-weight: var(--wt-head);
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}

.guarantee-lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto 36px;
}

.guarantee-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}

.guarantee-stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  background: var(--bg);
}

.guarantee-stat-value {
  font-family: var(--font-head);
  font-weight: var(--wt-head);
  font-size: 26px;
  color: var(--accent);
  margin-bottom: 8px;
}

.guarantee-stat p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* ===== PRICING ===== */

.pricing {
  background: var(--bg);
}

.pricing-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 34px 80px -40px var(--accent);
}

.pricing-header {
  padding: 38px 40px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.pricing-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-amount-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pricing-amount {
  font-family: var(--font-head);
  font-weight: var(--wt-head);
  font-size: 56px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.pricing-period {
  font-size: 16px;
  color: var(--muted);
}

.pricing-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

.pricing-compare {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
  text-align: right;
}

.pricing-body {
  padding: 32px 40px;
}

.pricing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-bottom: 28px;
  list-style: none;
}

.pricing-features li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
}

.pricing-features .icon {
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-callout {
  background: var(--accent-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pricing-callout-icon {
  color: var(--accent);
  font-size: 16px;
  line-height: 1.3;
}

.pricing-callout p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}

.pricing-cta {
  width: 100%;
}

.pricing-footer-note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
}

/* ===== TESTIMONIALS ===== */

.testimonials {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonials-header .stars {
  justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--bg);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 14px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.testimonial-role {
  font-size: 13px;
  color: var(--muted);
}

/* ===== FAQ ===== */

.faq {
  background: var(--bg);
}

.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 20px 22px;
}

.faq-item summary {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 12px;
}

/* ===== FINAL CTA ===== */

.final-cta {
  background: var(--accent);
}

.final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-title {
  font-family: var(--font-head);
  font-weight: var(--wt-head);
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--accent-ink);
  margin-bottom: 20px;
}

.final-cta-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--accent-ink);
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 34px;
}

/* ===== FOOTER ===== */

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-logo .logo-mark {
  width: 30px;
  height: 30px;
  font-size: 15px;
  border-radius: 8px;
}

.footer-logo-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .keyword-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .comparison-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-stats {
    grid-template-columns: 1fr;
  }

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

  .pricing-header,
  .pricing-body {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 63px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: none;
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .hero-stat {
    left: 0;
    bottom: -12px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-secondary {
    justify-content: center;
  }

  .pricing-amount {
    font-size: 44px;
  }
}

/* ===== RESERVE FORM ===== */

.reserve-page {
  padding: 48px 0 88px;
}

.reserve-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

.reserve-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reserve-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reserve-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.reserve-step--active {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.reserve-step-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--line);
  color: var(--muted);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reserve-step--active .reserve-step-num {
  background: var(--accent);
  color: var(--accent-ink);
}

.reserve-step strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 2px;
}

.reserve-step span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.reserve-summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.reserve-summary-price {
  font-family: var(--font-head);
  font-weight: var(--wt-head);
  font-size: 36px;
  color: var(--ink);
  margin: 10px 0 12px;
}

.reserve-summary-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}

.reserve-summary-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 18px;
}

.reserve-summary-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reserve-summary-list li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}

.reserve-summary-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
}

.reserve-title {
  font-family: var(--font-head);
  font-weight: var(--wt-head);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 14px;
  margin-bottom: 12px;
}

.reserve-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
}

.reserve-intro {
  margin-bottom: 36px;
}

.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-section {
  border: none;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 28px;
  margin: 0;
}

.form-section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 22px;
  padding: 0;
  width: 100%;
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field + .form-field {
  margin-top: 18px;
}

.form-grid .form-field + .form-field {
  margin-top: 0;
}

.form-field label,
.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.required {
  color: var(--accent);
}

.optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2396a29a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.55;
}

.form-hint {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}

.form-radio:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.form-radio input {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}

.form-footer {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.form-disclaimer {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 20px;
}

.form-disclaimer strong {
  color: var(--ink);
}

.form-submit {
  width: 100%;
}

/* ===== SUCCESS PAGE ===== */

.success-page {
  padding: 80px 0 100px;
}

.success-inner {
  max-width: 640px;
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-title {
  font-family: var(--font-head);
  font-weight: var(--wt-head);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 14px;
  margin-bottom: 16px;
}

.success-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 36px;
}

.success-next {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
}

.success-next h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 16px;
}

.success-steps {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.success-steps li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.success-steps li::marker {
  color: var(--accent);
  font-weight: 700;
}

.success-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .reserve-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reserve-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .reserve-sidebar {
    grid-template-columns: 1fr;
  }

  .form-grid--2,
  .form-grid--3 {
    grid-template-columns: 1fr;
  }

  .form-section,
  .form-footer {
    padding: 22px 18px;
  }
}
