:root {
  --brand: #ff7722;
  --brand-bright: #ff944d;
  --brand-soft: rgba(255, 119, 34, 0.14);
  --charcoal: #0f1015;
  --charcoal-soft: #171922;
  --charcoal-mid: #1d202b;
  --metal-white: #f8f8f8;
  --metal-silver: #cfd4dc;
  --metal-fog: #95a0af;
  --ink: #f5f7fb;
  --text-soft: #b8c0cd;
  --line: rgba(255, 255, 255, 0.08);
  --panel: rgba(19, 21, 29, 0.82);
  --panel-strong: rgba(26, 29, 39, 0.95);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --nav-font: "Space Grotesk", "Segoe UI Variable", "Trebuchet MS", sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(255, 119, 34, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #090a0f 0%, #11131a 45%, #0f1117 100%);
  font-family: "Segoe UI Variable", "Trebuchet MS", "Arial Nova", sans-serif;
}

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

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

section {
  position: relative;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main[role="main"] {
  flex: 1 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0 0;
}

.premium-navbar {
  margin: 0 auto;
  width: min(1280px, calc(100% - 1.5rem));
  padding: 1.05rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.75rem;
  background:
    linear-gradient(135deg, rgba(9, 10, 15, 0.94), rgba(19, 21, 30, 0.92) 52%, rgba(255, 119, 34, 0.12)),
    rgba(12, 13, 18, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.premium-navbar.is-scrolled {
  transform: translateY(-0.15rem);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  background:
    linear-gradient(135deg, rgba(8, 9, 14, 0.98), rgba(16, 18, 26, 0.96) 52%, rgba(255, 119, 34, 0.16)),
    rgba(9, 10, 15, 0.96);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  color: var(--ink);
}

.brand-mark__wording {
  display: flex;
  flex-direction: column;
}

.brand-mark strong {
  display: block;
  font-family: var(--nav-font);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  background: linear-gradient(90deg, #ffffff, #ffd6bb 42%, #ff8c42);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-mark small {
  display: block;
  margin-top: 0.28rem;
  color: rgba(184, 192, 205, 0.88);
  font-family: var(--nav-font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark__logo {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 1.1rem;
  background: linear-gradient(145deg, #12141d, #2a2e3a 35%, var(--brand));
  color: #fff;
  font-weight: 800;
  font-family: var(--nav-font);
  font-size: 1rem;
  letter-spacing: 0.06em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 16px 34px rgba(255, 119, 34, 0.2);
}

.navbar-nav {
  gap: 0.35rem;
}

.nav-link {
  color: var(--text-soft);
  font-family: var(--nav-font);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.72rem 0.9rem !important;
  border-radius: 0.75rem;
  letter-spacing: -0.01em;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 119, 34, 0.14), rgba(255, 119, 34, 0.06));
  box-shadow: inset 0 0 0 1px rgba(255, 119, 34, 0.12);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  gap: 0.8rem;
}

.navbar-toggler {
  padding: 0.45rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
}

.custom-toggler-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 1.35rem;
  height: 1.1rem;
  background-image: none !important;
}

.custom-toggler-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.btn {
  border-radius: 0.8rem;
  padding: 0.76rem 1.05rem;
  font-family: var(--nav-font);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn-brand {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #ff9c59, var(--brand) 55%, #dd5f12);
  box-shadow: 0 12px 22px rgba(255, 119, 34, 0.22);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  box-shadow: 0 16px 28px rgba(255, 119, 34, 0.28);
}

.btn-outline-premium {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.btn-outline-premium:hover,
.btn-outline-premium:focus {
  color: #fff;
  border-color: rgba(255, 119, 34, 0.42);
  background: rgba(255, 119, 34, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.hero-section,
.page-hero {
  padding: 6rem 0 3rem;
}

.hero-section h1,
.page-hero h2,
.section-heading h2 {
  color: #fff;
  font-family: "Segoe UI Variable Display", "Segoe UI Variable", "Trebuchet MS", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-section h1 {
  font-size: clamp(3rem, 5vw, 5.35rem);
  max-width: 11ch;
}

.hero-copy,
.section-heading p,
.page-hero p {
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.trust-line {
  margin: 0 0 1rem;
  color: var(--metal-white);
  font-weight: 600;
}

.trust-line strong {
  color: var(--brand-bright);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--brand-bright);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

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

.hero-badge,
.premium-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(23, 25, 34, 0.95), rgba(18, 20, 28, 0.92));
  box-shadow: var(--shadow);
}

.hero-badge {
  display: flex;
  gap: 0.9rem;
  padding: 1rem;
}

.hero-badge strong,
.premium-card h3 {
  color: #fff;
}

.hero-badge span,
.premium-card p,
.premium-card small,
.accordion-body,
.footer-copy,
.site-footer a {
  color: var(--text-soft);
}

.hero-visual {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 119, 34, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(145deg, rgba(18, 20, 28, 0.98), rgba(14, 15, 22, 0.96));
}

.terminal-card {
  width: min(100%, 42rem);
  margin: 2rem auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  background: rgba(10, 13, 20, 0.92);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.terminal-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.terminal-dots {
  display: flex;
  gap: 0.5rem;
}

.terminal-dots span {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
}

.terminal-dots span:nth-child(1) {
  background: #ff6b57;
}

.terminal-dots span:nth-child(2) {
  background: #febc2e;
}

.terminal-dots span:nth-child(3) {
  background: #28c840;
}

.terminal-title {
  color: var(--metal-fog);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.terminal-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.terminal-line {
  margin-bottom: 0.45rem;
  color: #9eb0c8;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.98rem;
}

.terminal-line--prompt {
  color: var(--brand-bright);
}

.terminal-result {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 119, 34, 0.09);
}

.terminal-result strong {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
}

.terminal-result span {
  color: var(--text-soft);
}

.terminal-stats {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.terminal-stats div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-stats span {
  color: var(--metal-fog);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.terminal-stats strong {
  color: #fff;
  font-size: 0.92rem;
}

.floating-card {
  position: absolute;
  padding: 1rem 1.1rem;
  min-width: 12rem;
  border-radius: 1.2rem;
  backdrop-filter: blur(12px);
}

.floating-card--primary {
  top: 10%;
  right: 4%;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 119, 34, 0.92), rgba(255, 148, 77, 0.88));
}

.floating-card--dark {
  left: 4%;
  bottom: 8%;
  color: #fff;
  background: linear-gradient(145deg, rgba(18, 18, 18, 0.9), rgba(39, 42, 53, 0.88));
}

.floating-card span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.76);
}

.floating-card strong {
  display: block;
  margin-top: 0.35rem;
  color: #fff;
}

.content-section {
  padding: 2rem 0 5.5rem;
}

.contact-page-grid {
  align-items: flex-start;
}

.contact-support-stack {
  display: grid;
  gap: 1.25rem;
}

.section-tint {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at right top, rgba(255, 119, 34, 0.1), transparent 22%);
}

.section-dark {
  background:
    radial-gradient(circle at left top, rgba(255, 119, 34, 0.16), transparent 24%),
    linear-gradient(160deg, #0c0d13, #171a22);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.page-hero h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

.premium-card {
  height: 100%;
  padding: 1.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.34);
  border-color: rgba(255, 119, 34, 0.16);
}

.icon-frame {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.15rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, var(--brand), var(--brand-bright));
  color: #fff;
  box-shadow: 0 14px 26px rgba(255, 119, 34, 0.22);
}

.icon-frame--soft {
  background: rgba(255, 255, 255, 0.05);
  color: var(--brand-bright);
  box-shadow: none;
}

.icon-frame--mini {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 0;
}

.icon-frame svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.feature-card h3,
.offer-card h3,
.story-card h3,
.step-card h3,
.policy-card h3,
.contact-card h3,
.contact-side-card h3,
.narrative-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.service-card--orange,
.service-card--silver,
.service-card--dark,
.narrative-card,
.contact-card,
.contact-side-card,
.terms-note,
.policy-card,
.premium-accordion .accordion-button,
.premium-accordion .accordion-body {
  background: linear-gradient(180deg, rgba(20, 22, 31, 0.98), rgba(16, 18, 26, 0.95));
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  color: var(--brand-bright);
  font-weight: 700;
}

.text-link::after {
  content: "->";
}

.offer-card {
  position: relative;
  overflow: hidden;
}

.offer-label,
.offer-benefit {
  display: inline-block;
  border-radius: 999px;
  font-weight: 700;
}

.offer-label {
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  font-size: 0.78rem;
  color: var(--brand-bright);
  background: rgba(255, 119, 34, 0.12);
}

.offer-benefit {
  margin: 1rem 0 0.8rem;
  padding: 0.55rem 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 119, 34, 0.85), rgba(255, 148, 77, 0.88));
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-number {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 148, 77, 0.98);
}

.highlight-card .icon-frame {
  background: linear-gradient(145deg, rgba(255, 119, 34, 0.92), rgba(255, 148, 77, 0.72));
}

.section-action {
  margin-top: 2rem;
}

.premium-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 1rem;
  border: 0;
  border-radius: var(--radius-md);
  background: transparent;
}

.premium-accordion .accordion-button {
  font-weight: 700;
  color: #fff;
  box-shadow: none;
}

.premium-accordion .accordion-button:not(.collapsed) {
  color: #fff;
  background: linear-gradient(180deg, rgba(255, 119, 34, 0.16), rgba(17, 19, 27, 0.98));
}

.premium-accordion .accordion-button:focus {
  box-shadow: none;
}

.premium-accordion .accordion-button::after {
  filter: invert(1);
}

.cta-banner {
  padding: 0 0 5.5rem;
}

.cta-banner__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.2rem;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #0f1015, #1c1f28 52%, var(--brand));
}

.cta-banner__card h2,
.cta-banner__card p {
  color: #fff;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.narrative-card--accent {
  background: linear-gradient(160deg, rgba(255, 119, 34, 0.96), rgba(255, 162, 105, 0.92));
}

.narrative-card--accent h3,
.narrative-card--accent p {
  color: #fff;
}

.narrative-card--story {
  max-width: 60rem;
}

.service-detail-card {
  display: flex;
  gap: 1.25rem;
}

.service-detail-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-soft);
}

.service-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
}

.terms-note strong {
  display: block;
  margin-bottom: 0.65rem;
  color: #fff;
}

.form-label {
  font-weight: 700;
  color: #fff;
}

.form-control {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.form-control:focus {
  color: #fff;
  border-color: rgba(255, 119, 34, 0.45);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 0.22rem rgba(255, 119, 34, 0.14);
}

.policy-grid {
  display: grid;
  gap: 1.5rem;
}

.alert-success {
  color: #fff;
  background: rgba(255, 119, 34, 0.18);
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 4rem 0 2rem;
  color: #d8dde3;
  background: linear-gradient(180deg, #090a0f, #101217);
}

.brand-mark--footer {
  color: #fff;
}

.brand-mark--footer small,
.site-footer a,
.footer-copy {
  color: #b7bec8;
}

.site-footer h6 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer a {
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9aa3af;
  font-size: 0.92rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .premium-navbar {
    border-radius: 1.5rem;
  }

  .nav-actions {
    flex-direction: column;
    margin-top: 1rem;
  }

  .hero-section,
  .page-hero {
    padding-top: 5rem;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .cta-banner__card,
  .service-detail-card,
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .site-header {
    padding-top: 0.75rem;
  }

  .premium-navbar {
    width: calc(100% - 1rem);
    padding: 0.9rem 1rem;
    border-radius: 1.2rem;
  }

  .brand-mark strong {
    font-size: 1.28rem;
  }

  .brand-mark__logo {
    width: 2.7rem;
    height: 2.7rem;
  }

  .hero-section,
  .page-hero {
    padding: 4.6rem 0 2.25rem;
  }

  .hero-section h1 {
    max-width: none;
  }

  .content-section {
    padding: 1rem 0 4rem;
  }

  .hero-visual {
    min-height: auto;
    padding: 1.2rem;
  }

  .floating-card {
    position: static;
    margin-top: 1rem;
  }

  .premium-card {
    padding: 1.35rem;
  }

  .terminal-card__body {
    padding: 1.05rem 1.1rem 1.2rem;
  }

  .terminal-stats div {
    flex-direction: column;
    gap: 0.25rem;
  }
}
