:root {
  --bg: #151515;
  --bg-soft: #1a1a1a;
  --text: #e7e7e7;
  --text-muted: #a5a5a5;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #ffc964;
  --accent-strong: #e5b55a;
  --card: #1f1f1f;
  --max: 1160px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --font-main: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(60rem 40rem at 95% -10%, rgba(255, 201, 100, 0.12), transparent 65%),
    radial-gradient(40rem 20rem at 10% 15%, rgba(255, 201, 100, 0.07), transparent 65%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 14px;
  top: 14px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  z-index: 1000;
}

.container {
  width: min(var(--max), 92vw);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 21, 21, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 1.2rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  padding: 12px 22px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #151515;
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-secondary {
  border-color: rgba(255, 201, 100, 0.9);
  color: var(--accent);
  background: rgba(255, 201, 100, 0.06);
}

.btn-secondary:hover {
  background: rgba(255, 201, 100, 0.14);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background: transparent;
  padding: 8px 12px;
  font-weight: 600;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #121212;
  padding: 10px 4vw 16px;
}

.mobile-nav a {
  display: block;
  padding: 10px 2px;
  color: var(--text-muted);
  font-weight: 600;
}

.mobile-nav a.btn {
  margin-top: 10px;
  color: #151515;
}

.mobile-nav.is-open {
  display: block;
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 70px 0 44px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 80% 10%, rgba(255, 201, 100, 0.2), transparent 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.badge {
  margin: 0;
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  color: #d7d7d7;
  font-size: 0.89rem;
  background: rgba(255, 255, 255, 0.03);
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.05rem, 4.4vw, 3.75rem);
  margin-top: 20px;
}

h1 span {
  color: var(--accent);
}

.subtitle {
  color: var(--text-muted);
  margin-top: 18px;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-points {
  display: flex;
  gap: 18px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: #c8c8c8;
  font-weight: 600;
}

.hero-points li::before {
  content: "•";
  margin-right: 7px;
  color: var(--accent);
}

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-image {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  transform: translateY(0);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.section {
  padding: 74px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-head-left {
  text-align: left;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
}

.section-head p {
  margin-top: 10px;
  color: var(--text-muted);
}

.mt-4 { margin-top: 16px; }

.feature-layout {
  display: grid;
  gap: 70px;
  margin-top: 20px;
}

.feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-item.reverse {
  grid-template-columns: 1fr 1fr;
}

.feature-item.reverse .feature-text {
  order: -1;
}

.feature-images {
  position: relative;
  border-radius: var(--radius-xl);
  perspective: 1000px;
}

.single-img-wrap {
  display: grid;
  place-items: center;
}

.feat-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.05);
}

.stacked-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.stacked-images .feat-img {
  width: auto;
  max-width: 48%; /* Ensure both images fit side by side */
  height: auto;
  object-fit: contain;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.05);
}

.bg-img,
.overlay-img {
  position: static;
  transform: none;
  opacity: 1;
}

.feature-text h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.feature-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.feature-text li {
  margin-bottom: 10px;
  color: #d2d2d2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-text li::before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
}

.stats-grid-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.stats-text h2 {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.stats-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.stats-image img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

.plan-grid,
.contacts-grid {
  display: grid;
  gap: 18px;
}

.plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.plan-card {
  --card-image: none;
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-image: radial-gradient(circle at 20% 15%, rgba(40, 206, 138, 0.26), transparent 42%),
    linear-gradient(180deg, rgba(14, 14, 16, 0.2) 0%, rgba(10, 10, 12, 0.92) 72%),
    var(--card-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.08) 20%, rgba(8, 8, 10, 0.9) 100%);
}

.plan-content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.plan-content h3 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.plan-content p {
  margin: 10px 0 0;
  color: #c8c8c8;
  font-size: 1.05rem;
}

.plan-price {
  margin-top: 30px;
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f5edd9;
}

.plan-price span {
  background: linear-gradient(120deg, #1ed2ff, #3d58ff 45%, #53f2c5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.plan-card-day {
  --card-image: url('/img/profile.png');
}

.plan-card-3days {
  --card-image: url('/img/auto.png');
}

.plan-card-week {
  --card-image: url('/img/graph.png');
}

.pricing-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.text-block {
  max-width: 820px;
}

.text-block p {
  color: var(--text-muted);
  margin-top: 14px;
}

.text-block a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-main {
  min-height: calc(100vh - 80px);
}

.narrow {
  max-width: 900px;
}

.page-hero {
  padding-bottom: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.86rem;
  color: #d7d7d7;
  margin: 0 0 14px;
}

.content-grid { display: grid; gap: 40px; }

.content-block h2 {
  font-size: clamp(1.35rem, 3.2vw, 1.9rem);
  margin-bottom: 10px;
}

.content-block p {
  margin: 0;
  color: var(--text-muted);
}

.content-block p + p {
  margin-top: 10px;
}

.meta-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #d6d6d6;
}

.meta-list li {
  margin: 8px 0;
}

.meta-list a {
  color: var(--accent);
}

.author-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.author-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.author-role {
  margin: 2px 0 10px;
  color: #d6d6d6;
  font-weight: 600;
}

.founder-quote {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 201, 100, 0.06);
  color: #e6e6e6;
  font-style: italic;
}

.faq-wrap {
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 3px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding: 16px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 14px;
  color: var(--text-muted);
}

.contacts-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-list strong {
  color: #f2f2f2;
}

.contact-list a {
  color: var(--accent);
}

.map-wrap {
  overflow: hidden;
  min-height: 360px;
  padding: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.9) contrast(0.95) brightness(0.9);
}

.footer {
  border-top: 1px solid var(--line);
  background: #101010;
  padding: 22px 0 30px;
}

.footer-wrap {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #a8a8a8;
}

.footer nav {
  display: flex;
  gap: 16px;
}

.footer nav a:hover {
  color: var(--accent);
}

.reveal-up {
  opacity: 0;
  transform: translateY(16px);
  animation: revealUp 0.65s ease forwards;
}

.reveal-up.delay-1 {
  animation-delay: 0.15s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-grid,
  .feature-item,
  .feature-item.reverse,
  .stats-grid-layout,
  .plan-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .feature-item.reverse .feature-text {
    order: 0;
  }

  .stacked-images {
    flex-direction: column;
    gap: 14px;
  }

  .stacked-images .feat-img {
    max-width: 100%;
  }

  .plan-card {
    min-height: 360px;
    padding: 24px;
  }

  .author-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .author-photo {
    margin: 0 auto;
  }

  .section {
    padding: 62px 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 54px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .brand-text {
    font-size: 1.04rem;
  }

  .feature-item {
    gap: 22px;
  }

  .plan-card {
    min-height: 320px;
    padding: 20px;
  }

  .plan-content h3 {
    font-size: 2.1rem;
  }

  .plan-content p {
    font-size: 1rem;
  }

  .plan-price {
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

