:root {
  --bg: #0a0a0a;
  --card: #111827;
  --accent: #2563eb;
  --success: #14b8a6;
  --text: #f8fafc;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.2);
  --glow: rgba(37, 99, 235, 0.35);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  color: var(--text);
  background:
    radial-gradient(circle at 85% -10%, rgba(37, 99, 235, 0.3), transparent 40%),
    radial-gradient(circle at 10% 15%, rgba(20, 184, 166, 0.2), transparent 35%),
    var(--bg);
  line-height: 1.5;
}

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

.container {
  width: min(1240px, 94%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 10, 0.84);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.35s var(--ease-soft);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(17, 24, 39, 0.9);
  color: var(--text);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.hero {
  padding: 6.7rem 0 4.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.1rem;
}

.eyebrow {
  color: var(--success);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.65rem;
  letter-spacing: 0.2px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 5.8vw, 4.1rem);
  margin-bottom: 0.7rem;
}

.rotating-subheadline,
.lead {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  color: #e2e8f0;
  margin-bottom: 1.2rem;
  transition: opacity 0.45s var(--ease-smooth), transform 0.45s var(--ease-smooth);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat-box {
  background: rgba(17, 24, 39, 0.65);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.9rem 1.05rem;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.stat-value {
  font-weight: 700;
  font-size: 1.3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.trust-badge {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 4rem 0;
}

.page-hero {
  padding-top: 5.4rem;
  padding-bottom: 2.4rem;
}

.section-heading {
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 4.3vw, 2.6rem);
  margin-bottom: 0;
}

.card {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.58));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.45rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.45);
  transition: transform 0.45s var(--ease-smooth), border-color 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth);
}

.card:hover {
  transform: translateY(-7px) scale(1.02);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 24px 52px rgba(2, 6, 23, 0.58), 0 0 0 1px var(--glow);
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.66rem 0;
}

.clean-list i {
  color: var(--success);
}

.btn {
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0.86rem 1.35rem;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: transform 0.38s var(--ease-smooth), box-shadow 0.38s var(--ease-smooth), background 0.38s var(--ease-smooth);
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(37, 99, 235, 0.5);
}

.story-rail {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  padding-left: 92px;
  display: grid;
  gap: 1.2rem;
}

.story-rail::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 14px;
  bottom: 20px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.95), rgba(20, 184, 166, 0.95));
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.35);
}

.story-rail::after {
  content: "";
  position: absolute;
  left: 21px;
  bottom: -2px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 15px solid var(--success);
  filter: drop-shadow(0 0 8px rgba(20, 184, 166, 0.45));
}

.story-step {
  position: relative;
}

.story-step .timeline-icon {
  position: absolute;
  left: -91px;
  top: 22px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.4);
  font-size: 1.3rem;
}

.story-step h3 {
  margin-bottom: 0.65rem;
}

.story-step p {
  margin: 0.55rem 0;
  color: #dbeafe;
}

.story-close {
  max-width: 980px;
  margin: 1.4rem auto 0;
  font-size: 1.18rem;
  color: #dbeafe;
}

.activity-feed p {
  margin: 0.55rem 0;
  color: #cbd5e1;
}

.activity-feed i {
  color: var(--success);
  margin-right: 0.45rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.55), rgba(20, 184, 166, 0.45));
}

.product-icon {
  margin-left: auto;
  color: #93c5fd;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.logo-chip {
  text-align: center;
  padding: 1rem 0.65rem;
  background: rgba(17, 24, 39, 0.65);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #dbeafe;
  font-weight: 500;
  font-size: 0.95rem;
}

.bundle-card {
  padding: 1.8rem;
}

.payment-alt-text {
  margin: 1rem 0 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.paypal-button-wrap {
  max-width: 360px;
}

.bundle-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.price {
  font-size: 1.9rem;
  font-weight: 800;
  color: #93c5fd;
}

.price small {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.supplier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.brand-preview {
  margin: 0;
  color: #dbeafe;
}

.brand-details {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  background: rgba(15, 23, 42, 0.35);
}

.brand-details summary {
  cursor: pointer;
  color: #bfdbfe;
  font-weight: 600;
  list-style: none;
}

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

.brand-details summary::after {
  content: " +";
  color: var(--success);
}

.brand-details[open] summary::after {
  content: " -";
}

.brand-details p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-small {
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.45);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.86rem;
}

.supplier-card h3 {
  margin-bottom: 0.45rem;
}

.category-badge {
  display: inline-block;
  margin-bottom: 0.55rem;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.45);
  color: #99f6e4;
  padding: 0.26rem 0.72rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
}

.hidden-supplier {
  display: none;
}

.center {
  text-align: center;
  margin-top: 1.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.6);
  color: var(--text);
  border-radius: 12px;
  padding: 0.86rem 0.95rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.65);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 600;
  padding: 1rem 0.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height 0.45s var(--ease-smooth);
}

.faq-item.open .faq-answer {
  max-height: 100px;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.7);
}

.footer-grid {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-grid p {
  color: var(--muted);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: #bfdbfe;
}

.purchase-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  max-width: 340px;
  background: rgba(17, 24, 39, 0.93);
  border: 1px solid rgba(37, 99, 235, 0.45);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.6);
  border-radius: 16px;
  color: #dbeafe;
  padding: 0.95rem 1rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.45s var(--ease-smooth), transform 0.45s var(--ease-smooth);
  z-index: 55;
}

.purchase-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 990px) {
  .hero-grid,
  .contact-layout,
  .testimonial-grid,
  .supplier-grid,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    right: 4%;
    top: 78px;
    min-width: 220px;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(10, 10, 10, 0.95);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .contact-layout,
  .testimonial-grid,
  .pricing-grid,
  .supplier-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .story-rail {
    padding-left: 72px;
  }

  .story-rail::before {
    left: 24px;
  }

  .story-rail::after {
    left: 15px;
  }

  .story-step .timeline-icon {
    left: -71px;
    width: 50px;
    height: 50px;
    font-size: 1.15rem;
  }

  .bundle-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .purchase-toast {
    right: 10px;
    bottom: 10px;
    max-width: 88vw;
  }
}
