:root {
  color-scheme: dark;
  --black: #030303;
  --panel: #0d0f10;
  --panel-strong: #141719;
  --steel: #b9c2c8;
  --silver: #f4f6f7;
  --muted: #9da7ad;
  --red: #ef233c;
  --red-dark: #9d1424;
  --cyan: #77d7ff;
  --line: rgba(244, 246, 247, 0.16);
  --shadow: rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--silver);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 13px
    ),
    linear-gradient(180deg, #000 0%, #0a0c0d 46%, #020202 100%);
  font-family:
    Barlow,
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(22px, 4vw, 56px);
  min-height: 76px;
  padding: 14px 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    min-height 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(0, 0, 0, 0.86);
}

.site-header.is-scrolled .brand img {
  width: 148px;
  height: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
}

.brand img {
  width: 164px;
  height: 48px;
  object-fit: cover;
  object-position: top center;
  transition:
    width 180ms ease,
    height 180ms ease;
}

.brand span {
  white-space: nowrap;
}

.header-meter {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 4px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 4px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--silver);
  background: rgba(239, 35, 60, 0.16);
  outline: none;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--silver);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 86svh;
  display: grid;
  align-items: end;
  padding: 126px 42px 38px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.82) 45%, rgba(0, 0, 0, 0.38) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 96px
    ),
    #000;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% 14% -8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--cyan), transparent);
  transform: skewY(-8deg);
  opacity: 0.86;
  box-shadow: 0 0 28px rgba(239, 35, 60, 0.7);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px,
      transparent 54px
    ),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
  opacity: 0.24;
  pointer-events: none;
}

.hero-media {
  position: absolute;
  z-index: -2;
  right: -70px;
  bottom: -52px;
  width: min(62vw, 780px);
  opacity: 0.92;
  filter: contrast(1.12) saturate(1.04);
}

.hero-media img {
  width: 100%;
}

.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 730px;
  padding-bottom: 148px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 0.98;
  font-family:
    Rajdhani,
    Barlow,
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
}

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: 5.75rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  color: #d5dbdf;
  font-size: 1.25rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  min-width: 152px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #ff3149 0%, #b51428 100%);
  box-shadow: 0 18px 36px rgba(157, 20, 36, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(180deg, #ff475d 0%, #c2182e 100%);
  outline: none;
}

.button-ghost {
  color: var(--silver);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--red);
  background: rgba(239, 35, 60, 0.14);
  outline: none;
}

.hero-stats {
  position: absolute;
  z-index: 3;
  left: 42px;
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(620px, calc(100% - 84px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 12, 13, 0.76);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  min-height: 88px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  margin-bottom: 5px;
  color: var(--silver);
  font-size: 1.12rem;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 92px 42px;
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.intro-band {
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(239, 35, 60, 0.16), rgba(119, 215, 255, 0.06), rgba(255, 255, 255, 0.04));
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.intro-grid p {
  max-width: 820px;
  margin: 0;
  color: #d8dde0;
  font-size: 1.08rem;
  line-height: 1.6;
}

.intro-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.intro-metrics span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  font-weight: 800;
  font-size: 0.9rem;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 34px;
}

.section-heading h2,
.booking-copy h2 {
  margin-bottom: 16px;
  font-size: 3.25rem;
  font-weight: 800;
}

.section-heading p:not(.eyebrow),
.booking-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

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

.service-card,
.package-card,
.result-panel,
.testimonial-card,
.booking-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 22px 50px var(--shadow);
}

.service-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.service-code {
  width: 44px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  border: 1px solid rgba(239, 35, 60, 0.52);
  border-radius: 4px;
  color: #fff;
  background: rgba(239, 35, 60, 0.16);
  font-weight: 800;
}

.service-card h3,
.package-card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 800;
}

.service-card p,
.package-card p,
.package-card li {
  color: var(--muted);
  line-height: 1.58;
}

.packages {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    #070808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.package-card {
  min-height: 458px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.package-card:hover,
.package-card:focus-within,

.package-card:hover {
  transform: translateY(-4px);
}

.package-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.package-topline h3 {
  margin-bottom: 0;
}

.package-topline span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 4px;
  color: #0b0d0e;
  background: var(--steel);
  font-weight: 800;
  font-size: 0.86rem;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  padding-left: 18px;
}

.package-select {
  min-height: 46px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 800;
  cursor: pointer;
}

.package-select:hover,
.package-select:focus-visible,


.results-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.result-card {
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    #0b0c0d;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.result-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 35, 60, 0.35);
}

.result-value {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  color: #ff3b4f;
  line-height: 1;
  margin-bottom: 8px;
}


.result-label {
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

.result-title {
  display: block;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  margin-bottom: 6px;
}

.result-status {
  display: inline-block;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
}

.result-card.highlight {
  grid-column: span 3;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 49, 73, 0.18), rgba(0,0,0,0.2)),
    #0b0c0d;
}

.result-card.highlight .result-label {
  font-size: 1rem;
}

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

  .result-card.highlight {
    grid-column: auto;
    flex-direction: column;
    gap: 10px;
  }
}


.result-panel {
  padding: 28px;
  background:
    linear-gradient(130deg, rgba(119, 215, 255, 0.1), rgba(239, 35, 60, 0.14) 48%, rgba(255, 255, 255, 0.04)),
    var(--panel);
}

.gauge {
  aspect-ratio: 1;
  width: min(300px, 100%);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    conic-gradient(from -95deg, var(--red) 0deg, #ff6b7b 86deg, rgba(255, 255, 255, 0.08) 86deg 360deg),
    #070808;
  box-shadow: inset 0 0 0 18px #090a0b;
  text-align: center;
}

.gauge-value,
.gauge-label {
  display: block;
}

.gauge-value {
  font-size: 3.45rem;
  line-height: 1;
  font-weight: 800;
}

.gauge-label {
  width: 160px;
  color: var(--muted);
  font-weight: 700;
}

.result-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.result-row strong {
  color: #fff;
}

.testimonials {
  color: var(--silver);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    #070808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.testimonial-heading p:not(.eyebrow) {
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 24px;
  padding-top: 30px;
}

.testimonial-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 54px 26px 24px;
  border-color: var(--line);
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 22px 50px var(--shadow);
  text-align: center;
  overflow: visible;
}

.testimonial-avatar {
  position: absolute;
  top: -26px;
  left: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border: 5px solid #070808;
  border-radius: 50%;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.48);
}

.avatar-blue {
  background: #6f8d9b;
}

.avatar-red {
  background: #ff5a2c;
}

.avatar-cyan {
  background: #009ba4;
}

.avatar-green {
  background: #5fa438;
}

.avatar-purple {
  background: #6742b8;
}

.avatar-pink {
  background: #ed3f7d;
}

.google-mark {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  font-size: 1.22rem;
  line-height: 1;
  font-weight: 800;
  background: conic-gradient(from -45deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonial-card h3 {
  margin-bottom: 9px;
  color: var(--cyan);
  font-size: 1.04rem;
  line-height: 1.2;
  font-family:
    Barlow,
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
  font-weight: 800;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #f9ab00;
  font-size: 1.02rem;
  line-height: 1;
}

.testimonial-stars small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.testimonial-card p {
  margin: 0 0 18px;
  color: #d8dde0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.testimonial-card > span:not(.google-mark) {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.booking {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 16px
    ),
    #050606;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
  gap: 38px;
}

.booking-copy {
  position: sticky;
  top: 100px;
}

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

.booking-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 800;
}

/* Target the label containing the textarea to span both columns */
.booking-form label:has(textarea) {
  grid-column: 1 / -1;
}

/* Or, if you prefer nth-child, it is now the 5th element */
.booking-form label:nth-child(5) {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: #fff;
  background: #080a0b;
  outline: none;
}

.booking-form input,
.booking-form select {
  height: 50px;
  padding: 0 13px;
}

.booking-form textarea {
  resize: vertical;
  min-height: 120px;
  padding: 13px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 35, 60, 0.16);
}

.booking-form button {
  width: max-content;
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--cyan);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #020202;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer img {
  width: 96px;
  height: 38px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    padding-left: 22px;
    padding-right: 22px;
  }

  .brand span {
    display: none;
  }

  .hero,
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }

  h1 {
    font-size: 4.35rem;
  }

  .section-heading h2,
  .booking-copy h2 {
    font-size: 2.7rem;
  }

  .hero-media {
    right: -180px;
    width: 760px;
    opacity: 0.54;
  }

  .service-grid,
  .package-grid,
  .results-layout,
  .booking-layout,
  .intro-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand img {
    width: 140px;
    height: 42px;
  }

  .site-header.is-scrolled .brand img {
    width: 140px;
    height: 42px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.94);
    box-shadow: 0 24px 48px var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 48px;
    font-size: 1rem;
  }

  .hero {
    min-height: 88svh;
    padding: 104px 18px 28px;
  }

  .hero-media {
    right: -250px;
    bottom: 18px;
    width: 700px;
  }

  .hero-content {
    padding-bottom: 188px;
  }

  h1 {
    font-size: 3.15rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 62px;
    padding: 13px 15px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 66px 18px;
  }

  .intro-band {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .intro-metrics {
    width: 100%;
  }

  .intro-metrics span {
    flex: 1 1 120px;
    justify-content: center;
  }

  .section-heading h2,
  .booking-copy h2 {
    font-size: 2.16rem;
  }

  .service-grid,
  .package-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 236px;
  }

  .service-code {
    margin-bottom: 28px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .booking-form button {
    width: 100%;
  }

  .form-status {
    min-height: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 18px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.72rem;
  }

  .section-heading h2,
  .booking-copy h2 {
    font-size: 1.96rem;
  }

  .hero-content {
    padding-bottom: 198px;
  }

  .hero-stats strong,
  .hero-stats span {
    font-size: 0.9rem;
  }
}

@media (max-width: 720px) and (max-height: 700px) {
  .hero {
    min-height: 86svh;
    padding-top: 88px;
  }

  .hero-content {
    padding-bottom: 18px;
  }

  .hero-stats {
    display: none;
  }
}

/* ===== MODERN SERVICE CARDS ===== */

.modern-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.modern-service-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0b0b0b;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.modern-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(239,35,60,0.5);
}

.modern-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: transform 0.45s ease;
}

.modern-service-card:hover img {
  transform: scale(1.06);
}

.modern-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.08) 0%,
      rgba(0,0,0,0.2) 30%,
      rgba(0,0,0,0.94) 100%
    );
}

.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px 28px;
}

.card-tag {
  position: absolute;
  top: 28px;
  left: 28px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 4px;
}

.card-content h3 {
  margin-bottom: 18px;
  font-size: 2.7rem;
  line-height: 0.95;
  color: #fff;
  font-weight: 800;
}

.card-pill {
  width: fit-content;
  padding: 12px 22px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    #ff3c4f 0%,
    #d61e34 100%
  );
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 10px 24px rgba(239,35,60,0.35);
}

.card-specs {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.card-specs small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
}

.card-specs strong {
  color: #fff;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .modern-service-grid {
    grid-template-columns: 1fr;
  }

  .modern-service-card {
    min-height: 460px;
  }
}

@media (max-width: 720px) {
  .card-content h3 {
    font-size: 2.1rem;
  }

  .modern-service-card {
    min-height: 420px;
    border-radius: 22px;
  }
}

/* ===== BUILD PATHS REDESIGN ===== */

.build-heading {
  text-align: left;
  margin-bottom: 60px;
}

.modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.modern-card {
  position: relative;
  padding: 42px 34px;
  border-radius: 34px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(18px);
  overflow: hidden;
  border: 1px solid rgba(255, 0, 0, 0.2);

  box-shadow:
    0 0 30px rgba(255, 0, 0, 0.08),
    inset 0 0 25px rgba(255,255,255,0.03);

  transition: 0.4s ease;
}

.modern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 34px;
  padding: 1px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 0, 0, 0.8),
      transparent,
      rgba(255, 0, 0, 0.35)
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.modern-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.18),
    transparent 70%
  );

  bottom: -120px;
  right: -80px;
}

.modern-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 0 40px rgba(255, 0, 0, 0.2),
    0 0 90px rgba(255, 0, 0, 0.08);
}

.modern-card.featured {
  border-color: rgba(255, 0, 0, 0.45);

  box-shadow:
    0 0 50px rgba(255, 0, 0, 0.22),
    inset 0 0 40px rgba(255, 0, 0, 0.05);
}

.modern-card .package-topline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}

.modern-card h3 {
  font-size: 2.4rem;
  color: #fff;
  margin: 0;
}

.modern-card .package-topline span {
  color: #ff3b3b;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.modern-card p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.modern-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
}

.modern-card ul li {
  color: rgba(255,255,255,0.88);
  margin-bottom: 16px;
  font-size: 0.96rem;
}

.modern-card .package-select {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 16px;

  background: linear-gradient(
    135deg,
    #ff1a1a,
    #c40000
  );

  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.modern-card .package-select:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.35);
}