@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500;600;700&display=swap");

:root {
  --bg: #ffffff;
  --surface: #f7f7f8;
  --accent: #e8763a;
  --accent-dark: #d06830;
  --accent-light: rgba(232, 118, 58, 0.1);
  --text: #111111;
  --text-secondary: #444444;
  --text-muted: #777777;
  --divider: #e8e8e873;
  --dark: #141418;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
}

.mono {
  font-family: "JetBrains Mono", monospace;
}

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

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 20;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hidden-overlay {
  opacity: 0;
  visibility: hidden;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
}

.nav.scrolled {
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--divider);
  padding: 16px 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo img {
  height: 32px;
  width: 32px;
}

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

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

.nav-links a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

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

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--dark);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 500;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center; /* Центруємо для зручності */
  gap: 6px;                /* Трохи збільшимо відстань для кращої динаміки */
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 10000;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Плавніша крива */
  transform-origin: center;
}

.nav-links.open + .nav-hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-links.open + .nav-hamburger span:nth-child(2) {
  opacity: 0; /* Зникає */
}

.nav-links.open + .nav-hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* @media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }

  .nav.scrolled {
    padding: 10px 20px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 100;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 18px;
  }
} */

@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }

  .nav.scrolled {
    padding: 10px 20px;
  }

  .nav-hamburger {
    display: flex;
  }

  /* ФІКС: меню тепер чітко на весь екран */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg); /* Білий фон перекриє все */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999; /* Максимальний пріоритет */
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    overflow-y: auto;
  }

  .nav-links a {
    font-size: 20px; /* Трохи збільшив для зручності на мобільних */
  }
}

.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/images/main_1440.jpeg") center/cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.95) 100%
  );
}

@keyframes heroShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.15em;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  max-width: 800px;
  color: var(--text);
}

.hero h1 .gold {
  color: var(--accent);
}

.hero-sub {
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 55ch;
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(232, 118, 58, 0.4);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  margin-top: 8px;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232, 118, 58, 0.4);
}

.scroll-indicator {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 32px;
  animation: pulse 2s ease-in-out infinite;
}

.scroll-indicator span {
  display: block;
  font-size: 16px;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(4px);
  }
}

.marquee-band {
  background-color: var(--dark);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-row {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.marquee-item {
  font-family: "Inter", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  color: var(--white);
  padding: 0 32px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 32px;
}

.marquee-item .sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.section-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-desc {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 50ch;
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.cortex-section {
  padding: 0 24px 120px;
  max-width: 1100px;
  margin: 0 auto;
}
.cortex-header {
  text-align: center;
  padding: 100px 0 60px;
}
.cortex-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.cortex-visual {
  position: sticky;
  top: 120px;
  height: fit-content;
}
.cortex-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
  padding: 40px;
  text-align: center;
}
.odometer {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  overflow: hidden;
  height: 1.15em;
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.odo-digit {
  display: inline-block;
  overflow: hidden;
  height: 1.15em;
  position: relative;
}
.odo-strip {
  display: flex;
  flex-direction: column;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.odo-strip span {
  display: block;
  height: 1.15em;
  line-height: 1.15;
}
.stat-suffix {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--accent);
  vertical-align: top;
}
.cortex-stat-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}
.cortex-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 20px 0;
}
.cortex-feature {
  padding: 32px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--divider);
  opacity: 0.4;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cortex-feature.active {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px var(--accent),
    0 12px 40px rgba(232, 118, 58, 0.08);
}
.cortex-feature-num {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cortex-feature h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.cortex-feature p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .cortex-container {
    grid-template-columns: 1fr;
  }
  .cortex-visual {
    position: relative;
    top: 0;
  }
}

.miss-section {
  padding: 100px 24px 120px;
  max-width: 1100px;
  margin: 0 auto;
}
.miss-header {
  text-align: center;
  margin-bottom: 60px;
}
.miss-accordion {
  display: flex;
  gap: 8px;
  height: 50vh;
  min-height: 350px;
  max-height: 500px;
}
.miss-panel {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--dark);
}
.miss-panel:hover,
.miss-panel.active {
  flex: 5;
}
.miss-panel-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e1e24, #141418);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.miss-panel:hover .miss-panel-bg {
  transform: scale(1.05);
}
.miss-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.9) 0%,
    rgba(26, 26, 26, 0.3) 50%,
    transparent 70%
  );
}
.miss-panel-title {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  bottom: 28px;
  left: 16px;
  transition: opacity 0.3s;
}
.miss-panel:hover .miss-panel-title,
.miss-panel.active .miss-panel-title {
  opacity: 0;
}
.miss-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
}
.miss-panel-num {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.miss-panel h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.miss-panel-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  max-width: 30ch;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.miss-panel:hover .miss-panel-num,
.miss-panel:hover .miss-panel h3,
.miss-panel:hover .miss-panel-desc,
.miss-panel.active .miss-panel-num,
.miss-panel.active .miss-panel h3,
.miss-panel.active .miss-panel-desc {
  opacity: 1;
  transform: translateY(0);
}
.miss-panel-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  max-width: calc(100% - 100px);
  max-height: calc(100% - 100px);
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 20%,
    transparent 75%
  );
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease;
}
.miss-panel.active .miss-panel-img {
  opacity: 0.65; /* Твоя базова прозорість */
  transform: translate(-50%, -50%) scale(1);
}
.miss-panel:hover .miss-panel-img,
.miss-panel.active .miss-panel-img {
  opacity: 0.8;
  transform: translate(-50%, -50%) scale(1.05);
}
@media (max-width: 768px) {
  .miss-accordion {
    flex-direction: column;
    height: auto;
    min-height: auto;
    max-height: none;
  }
  .miss-panel {
    height: 60px;
    flex: none !important;
  }
  .miss-panel:hover,
  .miss-panel.active {
    height: 220px;
    flex: none !important;
  }
  .miss-panel-title {
    writing-mode: horizontal-tb;
    position: relative;
    bottom: auto;
    left: auto;
    padding: 18px 20px;
  }
}

.how-section {
  position: relative;
  height: 300vh;
}
.how-sticky {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how-curtain-left,
.how-curtain-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: var(--surface);
  z-index: 2;
  display: flex;
  align-items: center;
}
.how-curtain-left {
  left: 0;
  justify-content: flex-end;
  padding-right: 24px;
  border-right: 1px solid var(--divider);
}
.how-curtain-right {
  right: 0;
  justify-content: flex-start;
  padding-left: 24px;
  border-left: 1px solid var(--divider);
}
.how-curtain-left h2,
.how-curtain-right h2 {
  font-size: clamp(28px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--text);
}
.how-curtain-left h2 span,
.how-curtain-right h2 span {
  color: var(--accent);
}
.how-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 40px;
}
.how-steps {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  width: 100%;
}
.how-step {
  flex: 1;
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--divider);
}
.how-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-light);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.how-step-icon.gold-bg {
  background: var(--accent);
}
.how-step-icon.gold-bg span {
  filter: brightness(10);
}
.how-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.how-step p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.how-connector {
  width: 40px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.4;
}
@media (max-width: 768px) {
  .how-steps {
    flex-direction: column;
    gap: 16px;
  }
  .how-connector {
    width: 2px;
    height: 24px;
  }
  .how-curtain-left h2,
  .how-curtain-right h2 {
    font-size: clamp(24px, 5vw, 40px);
  }
}

.pricing-section {
  padding: 40px 24px 40px;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--divider);
  border-radius: 20px;
  overflow: hidden;
}
.price-card {
  background: var(--white);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 0;
  background: radial-gradient(
    circle 200px at var(--mx, 50%) var(--my, 50%),
    rgba(232, 118, 58, 0.08),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.price-card:hover::before {
  opacity: 1;
}
.price-card.featured {
  background: var(--dark);
  color: var(--white);
}
.price-card.featured::before {
  background: radial-gradient(
    circle 200px at var(--mx, 50%) var(--my, 50%),
    rgba(232, 118, 58, 0.15),
    transparent
  );
}
.price-amount {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.price-card.featured .price-amount {
  color: var(--accent);
}
.price-currency {
  font-size: 24px;
  vertical-align: top;
  margin-right: 2px;
}
.price-period {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
}
.price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.5);
}
.price-trial {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
}
.price-badge {
  font-family: "Inter", sans-serif;
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}
.price-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.price-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}
.price-card.featured .price-desc {
  color: rgba(255, 255, 255, 0.6);
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.price-features li {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}
.price-card.featured .price-features li {
  color: rgba(255, 255, 255, 0.8);
}
.price-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
.price-card.featured .price-check {
  background: rgba(232, 118, 58, 0.2);
}
.price-cta {
  display: block;
  text-align: center;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition:
    transform 0.2s,
    background 0.2s;
}
.price-cta-outline {
  border: 1px solid var(--divider);
  color: var(--text);
  background: transparent;
}
.price-cta-outline:hover {
  background: var(--surface);
  transform: translateY(-1px);
}
.price-cta-gold {
  background: var(--accent);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 16px rgba(232, 118, 58, 0.3);
}
.price-cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 118, 58, 0.4);
}
.pricing-note {
  font-family: "Inter", sans-serif;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 24px;
}
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.roadmap-section {
  padding: 100px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.roadmap-header {
  text-align: center;
  margin-bottom: 60px;
}
.roadmap-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.roadmap-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--divider);
}
.roadmap-status {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.status-testing {
  background: #e8f5e9;
  color: #2e7d32;
}
.status-soon {
  background: #fff8e1;
  color: #f57f17;
}
.status-dev {
  background: var(--accent-light);
  color: var(--accent-dark);
}
.roadmap-item h3 {
  font-size: 17px;
  font-weight: 600;
  flex: 1;
}
.roadmap-item p {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
}
@media (max-width: 600px) {
  .roadmap-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.faq-section {
  padding: 100px 24px 120px;
  max-width: 700px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-item {
  border-bottom: 1px solid var(--divider);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
}
.faq-icon {
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding: 100px 24px;
  text-align: center;
}
.cta-section canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-section p {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}
.cta-gold {
  display: inline-block;
  padding: 14px 40px;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(232, 118, 58, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 118, 58, 0.5);
}
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.footer-logo span {
  color: var(--accent);
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-copy {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .site-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
