/* ==========================================================================
   MB TRADING CO. — main stylesheet
   Theme: bold red · crisp white · deep black / dark gray
   Stack: CSS custom properties + vanilla CSS (no build step)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens (CSS variables)
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --red:        #e10600;
  --red-dark:   #b80500;
  --red-soft:   #ff4d47;
  --red-glow:   rgba(225, 6, 0, 0.28);
  --white:      #ffffff;
  --black:      #0b0b0d;
  --ink:        #101014;          /* page background (deep black) */
  --ink-2:      #17171d;          /* raised card background */
  --ink-3:      #23232b;          /* hover / raised card background */
  --line:       rgba(255, 255, 255, 0.08);  /* hairline on dark */
  --line-light: rgba(0, 0, 0, 0.08);        /* hairline on light */

  /* Text */
  --text-light:  #ffffff;
  --text-soft:   #b9b9c2;
  --text-mute:   #7c7c88;
  --text-dark:   #17171b;
  --text-gray:   #4c4c55;

  /* Typography */
  --font-head: "Sora", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 18px 45px -18px rgba(0, 0, 0, 0.55);
  --shadow-red: 0 18px 40px -16px var(--red-glow);

  /* Motion */
  --ease:   cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.18s;
  --t-med:  0.3s;
  --t-slow: 0.6s;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* clip off-canvas nav so mobile browsers can't scroll right into it */
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--red-soft);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link (accessibility) */
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 2000;
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: top var(--t-fast) var(--ease);
}

.skip-link:focus {
  top: 16px;
}

/* Layout container */
.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

/* Section rhythm */
.section {
  padding: 108px 0;
  position: relative;
}

/* Anchor offset so the fixed header never covers a section heading */
[id] {
  scroll-margin-top: 88px;
}

.section-dark { background: var(--ink); }
.section-light { background: var(--white); color: var(--text-dark); }

/* Headings inside a section */
.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.text-red { color: var(--red); }

/* Policy page content */
.policy-content h2 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.section-light .policy-content h2 { color: var(--text-dark); }
.section-dark .policy-content h2 { color: #fff; }

.policy-content p {
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.section-light .policy-content p { color: var(--text-gray); }
.section-dark .policy-content p { color: var(--text-soft); }

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.section-light .policy-content li { color: var(--text-gray); }
.section-dark .policy-content li { color: var(--text-soft); }

.policy-content li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.policy-content a {
  color: var(--red-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-content a:hover {
  color: #fff;
}

.section-sub {
  margin-top: 14px;
  color: var(--text-mute);
  font-size: 17px;
}

/* Keep a section subtitle on a single line (e.g. careers intro) */
.section-sub--nowrap {
  white-space: nowrap;
}

/* Eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-soft);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.eyebrow--red { color: var(--red); }

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  will-change: transform;
  white-space: nowrap;
}

.btn-lg { padding: 17px 32px; font-size: 16px; }

.btn:active { transform: translateY(1px) scale(0.99); }

/* Solid red */
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 30px -12px var(--red-glow);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -14px var(--red-glow);
}

/* Outline on dark backgrounds */
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red-soft);
  background: rgba(225, 6, 0, 0.08);
  transform: translateY(-2px);
}

/* Outline on light backgrounds */
.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid rgba(0, 0, 0, 0.2);
}

.btn-outline-dark:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(225, 6, 0, 0.05);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   4. Scroll progress bar
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--red-soft));
  z-index: 1200;
  transition: width 80ms linear;
}

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--t-med) var(--ease), padding var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand / logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  background: #fff;
  padding: 4px 6px;
  border-radius: 8px;
  line-height: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__text strong {
  font-family: var(--font-head);
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #fff;
}

.brand__text strong em { font-style: normal; color: var(--white); }

.brand__text small {
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color var(--t-fast) var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 22px;
  font-size: 14px;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding: 150px 0 90px;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Deep vignette so text stays readable over the network animation */
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(225, 6, 0, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(11, 11, 13, 0.75) 0%, rgba(11, 11, 13, 0.4) 40%, var(--black) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 1100px;
  width: 100%;
}

/* H1 + 2×2 stat grid in one row — grid stretches to match H1 height */
.hero__headline-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 24px;
}

.hero__headline-row h1 {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

/* 2×2 stats grid — fills the H1's height, centered in the empty space */
.hero__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  flex: 0 0 320px;
}

.hero__stat-grid .stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.hero__stat-grid .stat__num {
  font-size: clamp(20px, 2.5vw, 28px);
}

.hero__stat-grid .stat__label {
  font-size: 12px;
  margin-top: 4px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero__accent {
  color: var(--red);
  position: relative;
}

.hero__accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 8px;
  background: var(--red);
  opacity: 0.22;
  border-radius: 4px;
  z-index: -1;
}

.hero__lead {
  margin-top: 26px;
  max-width: 560px;
  font-size: 18px;
  color: var(--text-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

/* Hero stats strip */
.hero__stats {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 720px;
}

.stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}

.stat:hover {
  border-color: rgba(225, 6, 0, 0.5);
  transform: translateY(-4px);
}

.stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.stat__num em {
  font-style: normal;
  color: var(--red-soft);
}

.stat__label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-mute);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-mute);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bob 2.4s var(--ease) infinite;
}

.hero__scroll svg { transition: color var(--t-fast); }
.hero__scroll:hover { color: var(--red-soft); }

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* --------------------------------------------------------------------------
   7. About
   -------------------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.about__text p {
  color: var(--text-gray);
  font-size: 17px;
  margin-bottom: 18px;
}

.about__text strong { color: var(--text-dark); }

.about__highlights {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.about__highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-dark);
}

.about__highlights svg {
  color: var(--red);
  flex-shrink: 0;
}

/* Core pillars */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pillar {
  background: #fafafa;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 6, 0, 0.35);
  box-shadow: 0 18px 40px -24px rgba(225, 6, 0, 0.35);
}

.pillar__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 24px -12px var(--red-glow);
}

.pillar h3 {
  font-family: var(--font-head);
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.pillar p {
  font-size: 14px;
  color: var(--text-gray);
}

/* --------------------------------------------------------------------------
   8. Services grid
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease), background var(--t-med) var(--ease);
}

/* Red glow that slides in on hover */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}

/* Soft radial glow behind the icon */
.service-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--red-glow), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 6, 0, 0.45);
  background: var(--ink-3);
  box-shadow: var(--shadow);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after  { opacity: 1; }

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  color: var(--red-soft);
  background: rgba(225, 6, 0, 0.1);
  border: 1px solid rgba(225, 6, 0, 0.22);
  transition: background var(--t-med) var(--ease), color var(--t-med) var(--ease),
              transform var(--t-med) var(--ease);
}

.service-card:hover .service-card__icon {
  background: var(--red);
  color: #fff;
  transform: scale(1.05) rotate(-4deg);
}

.service-card__num {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}

.service-card__title {
  font-family: var(--font-head);
  font-size: 21px;
  color: #fff;
  margin-bottom: 10px;
}

.service-card__lead {
  color: var(--text-mute);
  font-size: 15px;
  margin-bottom: 20px;
}

/* Tag chips */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.chip-list li {
  font-size: 13px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  transition: color var(--t-fast), border-color var(--t-fast);
}

.service-card:hover .chip-list li {
  border-color: rgba(225, 6, 0, 0.25);
  color: #fff;
}

/* Links inside chips (e.g. the Vyapar authorized-partner chip) */
.chip-list a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--t-fast);
}

.chip-list a:hover {
  text-decoration-color: currentColor;
}

/* Card link button */
.service-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-soft);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  transition: gap var(--t-fast) var(--ease), color var(--t-fast);
}

.service-card__link svg { transition: transform var(--t-fast) var(--ease); }

.service-card__link:hover {
  color: #fff;
  gap: 12px;
}

.service-card__link:hover svg { transform: translateX(2px); }

/* --------------------------------------------------------------------------
   9. ISP plans
   -------------------------------------------------------------------------- */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-bottom: 40px;
}

/* Hidden plan group must override the grid display */
.plans[hidden] {
  display: none;
}

/* Prepaid / Postpaid billing-mode toggle */
.plan-toggle {
  display: flex;
  justify-content: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
  margin: 28px auto 34px;
  padding: 6px;
  background: #f0f0f2;
  border: 1px solid var(--line-light);
  border-radius: 999px;
}

.plan-toggle__btn {
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 30px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-mute);
  cursor: pointer;
  transition: background var(--t-med), color var(--t-med);
}

.plan-toggle__btn:hover {
  color: var(--text);
}

.plan-toggle__btn.is-active {
  background: var(--red);
  color: #fff;
}


/* Availability note under the plan cards */
.plans-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: -20px;
  margin-bottom: 36px;
  font-size: 14px;
  color: var(--text-mute);
  text-align: center;
}

.plans-note svg {
  flex-shrink: 0;
  color: var(--red);
}

/* Offer banner above the availability note */
.plans-offer {
  margin: 26px 0 14px;
  background: rgba(225, 6, 0, 0.07);
  border: 1px dashed rgba(225, 6, 0, 0.55);
  border-radius: 999px;
  padding: 9px 20px;
  color: var(--red);
  font-weight: 600;
}

.plans-offer + .plans-note {
  margin-top: 0;
}

.plans-note a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  border-radius: 5px;
  padding: 0 4px;
  transition: background var(--t-fast), color var(--t-fast);
}

.plans-note a:hover {
  color: #fff;
  background: var(--red);
  text-decoration: none;
}

.plan {
  position: relative;
  background: #fafafa;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
}

.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 6, 0, 0.3);
  box-shadow: 0 22px 45px -26px rgba(225, 6, 0, 0.45);
}

.plan--popular {
  background: var(--ink);
  color: #fff;
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.plan--popular:hover { border-color: var(--red-soft); }

.plan__badge {
  position: absolute;
  top: -12px;
  left: 26px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.plan__head h3 {
  font-family: var(--font-head);
  font-size: 20px;
}

.plan__head p {
  font-size: 13.5px;
  color: var(--text-mute);
  margin-top: 4px;
}

.plan--popular .plan__head p { color: var(--text-soft); }

.plan__price {
  margin: 22px 0;
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: var(--text-dark);
}

.plan__price span {
  font-size: 22px;
  color: var(--red);
  vertical-align: top;
  margin-right: 2px;
}

.plan__price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mute);
  margin-left: 4px;
  white-space: nowrap;
}

.plan--popular .plan__price { color: #fff; }

.plan__features {
  margin-bottom: 26px;
  display: grid;
  gap: 10px;
  flex: 1;
}

.plan__star {
  color: var(--red);
  font-size: 15px;
  margin-left: 2px;
  vertical-align: top;
}

.plan__footnote {
  font-size: 12px;
  color: var(--text-mute);
  margin: -16px 0 22px;
}

.plan--popular .plan__footnote { color: var(--text-soft); }

.plan__features li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--text-gray);
}

.plan--popular .plan__features li { color: var(--text-soft); }

.plan__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e10600' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.plan__btn { width: 100%; }

/* Enterprise / ILL callout */
.isp__enterprise {
  background: linear-gradient(120deg, var(--black), #1a1a20);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: #fff;
}

.isp__enterprise-copy {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  max-width: 760px;
}

.isp__enterprise-icon {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 30px -12px var(--red-glow);
}

.isp__enterprise h3 {
  font-family: var(--font-head);
  font-size: 21px;
  margin-bottom: 10px;
}

.isp__enterprise p {
  color: var(--text-mute);
  font-size: 15px;
}

.isp__checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px 24px;
  margin-top: 18px;
}

.isp__checks li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--text-soft);
}

.isp__checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff4d47' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* --------------------------------------------------------------------------
   10. Why choose us
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-item {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}

.why-item:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 6, 0, 0.4);
  box-shadow: var(--shadow);
}

.why-item__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  color: var(--red-soft);
  background: rgba(225, 6, 0, 0.1);
  border: 1px solid rgba(225, 6, 0, 0.2);
  margin-bottom: 22px;
  transition: background var(--t-med) var(--ease), color var(--t-med) var(--ease),
              transform var(--t-med) var(--ease);
}

.why-item:hover .why-item__icon {
  background: var(--red);
  color: #fff;
  transform: scale(1.06) rotate(-4deg);
}

.why-item h3 {
  font-family: var(--font-head);
  font-size: 19px;
  color: #fff;
  margin-bottom: 10px;
}

.why-item p {
  color: var(--text-mute);
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   11. Marketplace (Available On)
   -------------------------------------------------------------------------- */
.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.marketplace-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  background: #fafafa;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
}

.marketplace-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 6, 0, 0.3);
  box-shadow: 0 18px 40px -24px rgba(225, 6, 0, 0.35);
}

.marketplace-card__logo svg {
  width: 120px;
  height: 40px;
  border-radius: 8px;
}

.marketplace-card__text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* Coming Soon badge */
.marketplace-card--soon {
  position: relative;
  opacity: 0.85;
  pointer-events: none;
}

.marketplace-card--soon:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--line-light);
}

.marketplace-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

@media (max-width: 1020px) {
  .marketplace-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .marketplace-grid { grid-template-columns: 1fr; max-width: 320px; }
}

/* --------------------------------------------------------------------------
   12. Testimonials
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 6, 0, 0.4);
  box-shadow: var(--shadow);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.testimonial-card__quote {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  color: #fff;
}

.testimonial-card__author span {
  font-size: 13px;
  color: var(--text-mute);
}

@media (max-width: 1020px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   12. Contact
   -------------------------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

/* Info cards */
.contact__info {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.info-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #fafafa;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 6, 0, 0.35);
  box-shadow: 0 16px 36px -24px rgba(225, 6, 0, 0.4);
}

.info-card__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px -12px var(--red-glow);
}

.info-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.info-card p {
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* Dial links inside the Call Us card */
.info-card__phone {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background var(--t-fast), color var(--t-fast);
}

.info-card__phone:hover {
  background: var(--red);
  color: #fff;
  text-decoration: none;
}

/* Form */
.contact-form {
  background: #fafafa;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: 0 26px 60px -40px rgba(0, 0, 0, 0.25);
  min-width: 0;
}

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

.form-group {
  margin-bottom: 18px;
  min-width: 0;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group label span { color: var(--red); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 0;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-dark);
  font-size: 15px;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.12);
}

.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: var(--red);
}

/* Field error text */
.form-error {
  margin-top: 6px;
  font-size: 13px;
  color: var(--red);
}

/* CV upload field */
.cv-field input[type="file"] {
  padding: 11px 16px;
  cursor: pointer;
}

.form-hint {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--text-mute);
}

/* Honeypot — visually hidden, bots will see and fill it */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Arithmetic captcha */
.captcha__row {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.captcha__question {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  min-width: 120px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  user-select: none;
}

.captcha__row input {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
}

.captcha__refresh {
  flex-shrink: 0;
  width: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: var(--text-gray);
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
              transform var(--t-med) var(--ease);
}

.captcha__refresh:hover {
  border-color: var(--red);
  color: var(--red);
  transform: rotate(180deg);
}

/* Submit button */
.form-submit {
  width: 100%;
  margin-top: 6px;
  position: relative;
}

.form-submit__spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.form-submit.is-loading .form-submit__label { visibility: hidden; }
.form-submit.is-loading .form-submit__spinner { display: inline-block; position: absolute; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Inline status message */
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
}

.form-status.is-success {
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.3);
}

.form-status.is-error {
  background: rgba(225, 6, 0, 0.07);
  color: var(--red-dark);
  border: 1px solid rgba(225, 6, 0, 0.3);
}

/* Toast (form feedback + small notifications) */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 140%);
  z-index: 3000;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 14.5px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--t-slow) var(--ease-out);
  max-width: min(90vw, 460px);
}

.toast.is-visible { transform: translate(-50%, 0); }
.toast.is-success { border-left-color: #22c55e; }
.toast.is-error   { border-left-color: var(--red); }

/* --------------------------------------------------------------------------
   12. Modal (service details)
   -------------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease), visibility var(--t-med);
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 9, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  width: min(100%, 620px);
  max-height: min(82vh, 720px);
  overflow-y: auto;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  color: #fff;
  box-shadow: var(--shadow);
  transform: translateY(24px) scale(0.98);
  transition: transform var(--t-med) var(--ease-out);
}

.modal.is-open .modal__panel {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.modal__close:hover {
  background: var(--red);
  color: #fff;
  transform: rotate(90deg);
}

.modal__body h3 {
  font-family: var(--font-head);
  font-size: 26px;
  padding-right: 44px;
  margin-bottom: 14px;
}

.modal__body > p {
  color: var(--text-soft);
  font-size: 15.5px;
}

.detail-list {
  margin: 22px 0;
  display: grid;
  gap: 12px;
}

.detail-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 15px;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 17px;
  height: 17px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff4d47' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.detail-list li strong { color: #fff; font-weight: 600; }

.detail-note {
  background: rgba(225, 6, 0, 0.08);
  border: 1px solid rgba(225, 6, 0, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--red-soft);
}

.modal__footer {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand p {
  margin-top: 18px;
  color: var(--text-mute);
  font-size: 14.5px;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col ul a {
  color: var(--text-mute);
  font-size: 14.5px;
  transition: color var(--t-fast), padding-left var(--t-fast) var(--ease);
}

.footer-col ul a:hover {
  color: var(--red-soft);
  padding-left: 6px;
}

.footer-col address {
  font-style: normal;
  display: grid;
  gap: 10px;
  color: var(--text-mute);
  font-size: 14.5px;
}

.footer-col address p {
  white-space: nowrap;
}

.footer-col address a { transition: color var(--t-fast); }
.footer-col address a:hover { color: var(--red-soft); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--text-mute);
}

.footer-bottom a {
  color: inherit;
  transition: color var(--t-fast) var(--ease);
}

.footer-bottom a:hover {
  color: var(--red-soft);
}

.footer-policies {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.footer-policies span {
  color: var(--text-mute);
  opacity: 0.5;
}

.footer-tagline {
  font-family: var(--font-head);
  color: var(--red-soft);
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   14. Floating WhatsApp button + back-to-top
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 950;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;                       /* WhatsApp brand green */
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(37, 211, 102, 0.6);
  transition: transform var(--t-med) var(--ease), background var(--t-fast);
}

/* Pulsing ring to draw the eye */
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.4s var(--ease) infinite;
  z-index: -1;
}

.wa-float:hover {
  background: #1eb958;
  transform: translateY(-3px) scale(1.05);
}

@keyframes wa-pulse {
  0%        { transform: scale(1); opacity: 0.7; }
  70%, 100% { transform: scale(1.7); opacity: 0; }
}

/* Back-to-top sits above the WhatsApp button */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 92px;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease),
              visibility var(--t-med), background var(--t-fast);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover { background: var(--red-dark); }

/* --------------------------------------------------------------------------
   15. Scroll-reveal animations
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
  will-change: opacity, transform;
}

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

/* Staggered delays (applied when an element is revealed) */
.reveal[data-delay="1"]  { transition-delay: 0.08s; }
.reveal[data-delay="2"]  { transition-delay: 0.16s; }
.reveal[data-delay="3"]  { transition-delay: 0.24s; }
.reveal[data-delay="4"]  { transition-delay: 0.32s; }
.reveal[data-delay="5"]  { transition-delay: 0.4s; }
.reveal[data-delay="6"]  { transition-delay: 0.48s; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   16. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1020px) {
  .about__grid,
  .contact__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__stats { grid-template-columns: repeat(2, 1fr); }

  /* Stack headline + stat grid vertically on smaller screens */
  .hero__headline-row { flex-direction: column; gap: 20px; }
  .hero__stat-grid { flex: none; width: 100%; max-width: 340px; margin: 0; }
  .hero__stat-grid .stat { min-width: 0; }
}

@media (max-width: 860px) {
  .section { padding: 80px 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh; /* dynamic viewport — fits mobile browsers' visible area */
    overflow-y: auto;
    width: min(82vw, 340px);
    background: var(--ink);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px 36px;
    transform: translateX(100%);
    transition: transform var(--t-med) var(--ease);
    box-shadow: -30px 0 60px -40px rgba(0, 0, 0, 0.8);
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .nav-link {
    font-size: 18px;
    padding: 10px 0;
  }

  .nav-link::after { display: none; }

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

@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: minmax(0, 1fr); }
  .plans { grid-template-columns: 1fr; }

  .hero__actions .btn { width: 100%; }

  .isp__enterprise { padding: 28px 24px; }
  .isp__enterprise-copy { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 32px, var(--container)); }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero__scroll { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
