:root {
  --bg: #060606;
  --bg-soft: #0d0d10;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.1);
  --text: #f4f5f7;
  --muted: #b9bcc7;
  --accent: #ff7a00;
  --accent-2: #ff1c1c;
  --accent-3: #ffb347;
  --success: #7bffb2;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.16), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 28, 28, 0.15), transparent 24%),
    linear-gradient(180deg, #040404 0%, #09090b 45%, #050505 100%);
  min-height: 100vh;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.bg-orb {
  position: fixed;
  width: 42rem;
  height: 42rem;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.orb-one {
  top: -12rem;
  left: -12rem;
  background: #ff7a00;
}

.orb-two {
  right: -16rem;
  top: 20rem;
  background: #ff1c1c;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 80%);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.topbar,
.section,
.trust-strip,
.footer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.topbar {
  margin-top: 22px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(9, 9, 11, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  position: sticky;
  top: 16px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img,
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.88);
  padding: 6px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.brand strong,
.footer-brand strong {
  display: block;
  font-size: 1rem;
}

.brand span,
.footer-brand span,
.mini-label,
.eyebrow,
.section-heading p,
.glass-card p,
.price-card p,
.comparison-card li,
.testimonial-card p,
.faq-item p,
.contact-copy p,
.hero-text,
.trust-item span,
.metric span,
.stat-card p,
.footer p {
  color: var(--muted);
}

.brand span,
.footer-brand span {
  font-size: 0.82rem;
}

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

.nav a {
  font-size: 0.95rem;
  color: #e5e7ee;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent-3);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 18px 45px rgba(255, 73, 0, 0.35);
}

.button-secondary,
.button-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.button-full {
  width: 100%;
}

.section {
  padding: 92px 0 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 180px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #ffffff 0%, #ffb347 40%, #ff4d00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 650px;
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.hero-points div,
.glass-card,
.price-card,
.comparison-card,
.testimonial-card,
.faq-item,
.contact-card,
.showcase-panel,
.hero-card,
.trust-strip {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-points div {
  padding: 18px;
  border-radius: var(--radius-sm);
}

.hero-points strong {
  display: block;
  margin-bottom: 8px;
}

.hero-points span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 700px;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
}

.hero-logo-card {
  inset: 40px 44px 84px 20px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(255, 122, 0, 0.18), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.hero-logo-card img {
  width: min(100%, 480px);
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.35));
}

.card-glow {
  position: absolute;
  inset: auto 10% 8% 10%;
  height: 18%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.24), transparent 70%);
  filter: blur(35px);
}

.stat-card {
  width: 270px;
  padding: 22px;
}

.stat-card strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 1.15rem;
}

.stat-card.top {
  top: 0;
  right: 0;
}

.stat-card.bottom {
  bottom: 0;
  left: 0;
}

.mini-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.trust-strip {
  margin-top: 18px;
  padding: 22px 26px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-item strong,
.metric strong,
.price-card h3,
.glass-card h3,
.comparison-card .comparison-label,
.testimonial-card strong {
  display: block;
  margin-bottom: 8px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin-top: 16px;
  line-height: 1.8;
  font-size: 1rem;
}

.service-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.glass-card,
.price-card,
.testimonial-card {
  padding: 26px;
  border-radius: 28px;
}

.icon-chip,
.price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.24);
  color: #ffd0a2;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.glass-card h3,
.price-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.glass-card p,
.price-card p,
.testimonial-card p,
.stat-card p {
  margin: 0;
  line-height: 1.75;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card {
  padding: 28px;
  border-radius: 28px;
}

.comparison-card.highlight {
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 122, 0, 0.2);
}

.comparison-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffd8b0;
}

.comparison-card ul,
.price-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li,
.price-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  line-height: 1.7;
}

.comparison-card li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(255, 122, 0, 0.08);
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}

.price-card.featured {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 0, 0.3);
  background:
    radial-gradient(circle at top, rgba(255, 122, 0, 0.14), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.price-card .button {
  margin-top: auto;
}

.showcase-panel,
.contact-card {
  border-radius: 32px;
  padding: 34px;
}

.showcase-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.showcase-copy h2,
.contact-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.showcase-copy p {
  margin-top: 16px;
  line-height: 1.8;
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 14px;
}

.metric {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric strong {
  font-size: 1.5rem;
}

.testimonial-card {
  min-height: 100%;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 24px;
  padding: 22px 24px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-item p {
  margin: 14px 0 0;
  line-height: 1.8;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: #e7e8eb;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 18px;
  padding: 16px 18px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 122, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 48px 0 34px;
}

.footer p {
  margin: 0;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .split-section,
  .showcase-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 640px;
  }

  .service-grid,
  .pricing-grid,
  .testimonial-grid,
  .hero-points,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .topbar {
    padding: 16px;
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    padding-top: 8px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-logo-card {
    inset: 20px 20px 80px;
  }

  .stat-card {
    width: calc(100% - 20px);
    left: 10px;
    right: 10px;
  }

  .stat-card.top {
    top: 0;
  }

  .service-grid,
  .pricing-grid,
  .testimonial-grid,
  .hero-points,
  .trust-strip,
  .comparison,
  .metrics {
    grid-template-columns: 1fr;
  }

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

  .footer p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .section {
    padding-top: 72px;
  }

  .topbar,
  .section,
  .trust-strip,
  .footer {
    width: min(calc(100% - 22px), var(--max-width));
  }

  .brand img,
  .footer-brand img {
    width: 46px;
    height: 46px;
  }

  .brand div,
  .footer-brand div {
    max-width: 180px;
  }

  .nav {
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-logo-card {
    inset: 14px 14px 70px;
  }

  .showcase-panel,
  .contact-card,
  .glass-card,
  .price-card,
  .testimonial-card,
  .comparison-card {
    padding: 22px;
  }
}
