nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-decoration: none;
}

.nav-logo span {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-auth {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero > * {
  width: min(100%, 1050px);
}

.hero h1 {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-sub {
  max-width: 760px;
  margin: 0 auto;
}


.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 60% 60% at 70% 50%,
      rgba(201, 168, 76, 0.07) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 50% at 10% 80%,
      rgba(184, 56, 30, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
  animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
  max-width: 800px;
  animation: fadeUp 0.7s 0.1s ease both;
}

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

.hero-sub {
  margin-top: 28px;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-details {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.5px;
  animation: fadeUp 0.7s 0.25s ease both;
}

.hero-details span {
  color: var(--gold);
}

.hero-actions {
  margin: 44px auto 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-hero {
  padding: 14px 36px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.25s;
}

.btn-hero:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.hero-ticker {
  margin: 70px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 50px;
  animation: fadeUp 0.7s 0.4s ease both;
}

.ticker-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ticker-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: 1px;
}

.ticker-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  padding: 100px 60px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 0 60px;
}

.section-tag {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 500px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  border: 1px solid var(--border);
  width: 100%;
}

.service-card {
  background: var(--card);
  padding: 40px 36px;
  position: relative;
  transition: background 0.3s;
  cursor: default;
  border: 1px solid transparent;
}

.service-card:hover {
  background: #1c1c22;
  border-color: var(--border);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.service-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(201, 168, 76, 0.06);
  line-height: 1;
}

.why-section {
  background: var(--dark);
  text-align: left;
  align-items: flex-start;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
  width: 100%;
}

.why-left .big-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--white);
}

.why-left .big-text span {
  color: var(--gold);
}

.why-left p {
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.92rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-item:first-child {
  border-top: 1px solid var(--border);
}

.why-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.why-item h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-item p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  width: 100%;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 30px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1a1810 0%, #16161a 100%);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-tier {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--white);
  letter-spacing: 1px;
}

.price-amount sub {
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--muted);
}

.price-desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 12px 0 24px;
  line-height: 1.6;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.price-features li {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  gap: 10px;
}

.price-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 2px;
}

.contact-section {
  background: var(--dark);
  text-align: left;
  align-items: flex-start;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-val {
  font-size: 0.92rem;
  color: var(--white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  padding: 14px;
  background: var(--gold);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
}

.form-submit:hover {
  background: var(--gold-light);
}

.form-msg {
  font-size: 0.82rem;
  padding: 10px 14px;
  border-radius: 2px;
  display: none;
}

.form-msg.success {
  background: rgba(50, 160, 80, 0.15);
  border: 1px solid rgba(50, 160, 80, 0.3);
  color: #6fcf97;
  display: block;
}

.form-msg.error {
  background: rgba(184, 56, 30, 0.15);
  border: 1px solid rgba(184, 56, 30, 0.3);
  color: #eb6b55;
  display: block;
}

footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 2px;
}

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

.footer-links a {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.72rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: 14px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 80vw);
    height: 100vh;
    padding: 100px 22px 24px;
    flex-direction: column;
    gap: 20px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--border);
    display: flex;
    transition: right 0.3s ease;
    z-index: 100;
  }

  nav.open .nav-links {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    color: var(--white);
    font-size: 1rem;
  }

  .nav-cta {
    width: 100%;
    justify-content: flex-end;
  }

  .nav-auth {
    display: none;
  }

  nav.open .nav-auth {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
  }

  .nav-auth a {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 60px 20px;
  }

  .divider {
    margin: 0 20px;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-ticker {
    gap: 24px;
    flex-wrap: wrap;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 30px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
