    /* Base Tokens And Resets */
    :root {
      color-scheme: light;
      --bg: #0d1117;
      --bg-soft: #151b24;
      --panel: #ffffff;
      --text: #111827;
      --muted: #6b7280;
      --light: #f8fafc;
      --silver: #d7dde6;
      --blue: #1e6fd9;
      --blue-dark: #174f9f;
      --gold: #f7c948;
      --red: #d72638;
      --radius: 22px;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
      --max: 1180px;
      --scroll-offset: 108px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      color: var(--text);
      background: var(--light);
      line-height: 1.5;
      overflow-x: hidden;
    }

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

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

    /* Header And Navigation */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(13, 17, 23, 0.86);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav {
      max-width: var(--max);
      margin: 0 auto;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
    }

    .brand-mark {
      width: min(260px, 42vw);
      height: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: rgba(255, 255, 255, 0.78);
      font-weight: 650;
      font-size: 0.94rem;
    }

    .nav-links a:hover { color: white; }

    /* Shared Buttons */
    .button {
      appearance: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 13px 20px;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 800;
      line-height: 1.2;
      border: 0;
      cursor: pointer;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
      white-space: nowrap;
    }

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

    .button-primary {
      background: var(--blue);
      color: white;
      box-shadow: 0 16px 34px rgba(30, 111, 217, 0.34);
    }

    .button-primary:hover { background: var(--blue-dark); }

    .button-secondary {
      background: white;
      color: var(--bg);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
    }

    /* Hero Section */
    .hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 84% 16%, rgba(30, 111, 217, 0.38), transparent 30%),
        radial-gradient(circle at 10% 8%, rgba(247, 201, 72, 0.16), transparent 26%),
        linear-gradient(135deg, #0b1020 0%, #111827 52%, #1f2937 100%);
      color: white;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto -10% -42% -10%;
      height: 420px;
      background: var(--light);
      transform: rotate(-3deg);
      transform-origin: left top;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: var(--max);
      margin: 0 auto;
      padding: 82px 22px 128px;
      display: grid;
      grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
      gap: 52px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.14);
      color: rgba(255, 255, 255, 0.82);
      font-weight: 750;
      font-size: 0.88rem;
    }

    .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 18px rgba(247, 201, 72, 0.8);
    }

    h1 {
      margin: 22px 0 18px;
      font-size: clamp(3rem, 7vw, 6.6rem);
      line-height: 0.9;
      letter-spacing: -0.02em;
    }

    .hero h1 span {
      display: block;
      margin-top: 0.08em;
      color: var(--gold);
    }

    .hero-copy {
      max-width: 680px;
      color: rgba(255, 255, 255, 0.78);
      font-size: clamp(1.06rem, 2vw, 1.28rem);
      margin: 0 0 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    .trust-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 42px;
      max-width: 650px;
    }

    .trust-card {
      padding: 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .trust-card strong {
      display: block;
      font-size: 1.35rem;
      letter-spacing: -0.04em;
    }

    .trust-card span {
      color: rgba(255, 255, 255, 0.68);
      font-size: 0.9rem;
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.92);
      color: var(--text);
      border-radius: 32px;
      padding: 18px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 255, 255, 0.35);
    }

    .shop-visual {
      min-height: 450px;
      border-radius: 26px;
      overflow: hidden;
      position: relative;
      background: #111827;
    }

    .shop-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transform: scale(1.02);
      transition: opacity 520ms ease, transform 1600ms ease;
    }

    .shop-slide.is-active {
      opacity: 1;
      transform: scale(1);
    }

    .visual-badge {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.92);
      padding: 18px;
      display: grid;
      gap: 6px;
      z-index: 1;
      opacity: 0;
      transform: translateY(calc(100% + 36px));
      transition: opacity 360ms ease, transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
    }

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

    .visual-badge strong {
      font-size: 1.2rem;
      letter-spacing: -0.035em;
    }

    .visual-badge span { color: var(--muted); }

    .shop-carousel-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 9px;
      padding: 15px 6px 2px;
    }

    .shop-carousel-dot {
      appearance: none;
      width: 10px;
      height: 10px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: #cbd5e1;
      cursor: pointer;
      overflow: hidden;
      position: relative;
      transition: width 220ms ease, background 220ms ease;
    }

    .shop-carousel-dot::after {
      content: "";
      position: absolute;
      inset: 0;
      transform: scaleX(0);
      transform-origin: right center;
      background: var(--blue);
      border-radius: inherit;
    }

    .shop-carousel-dot.is-active {
      width: 46px;
      background: #dbeafe;
    }

    .shop-carousel-dot.is-active::after {
      animation: carouselProgress var(--slide-duration, 5200ms) linear forwards;
    }

    .shop-carousel-dot:focus-visible {
      outline: 3px solid rgba(247, 201, 72, 0.95);
      outline-offset: 4px;
    }

    @keyframes carouselProgress {
      from { transform: scaleX(1); }
      to { transform: scaleX(0); }
    }

    /* Shared Section Layout */
    .section {
      max-width: var(--max);
      margin: 0 auto;
      padding: 86px 22px;
      scroll-margin-top: var(--scroll-offset);
    }

    .section-heading {
      display: flex;
      justify-content: space-between;
      gap: 28px;
      align-items: end;
      margin-bottom: 28px;
    }

    .kicker {
      color: var(--blue);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.78rem;
      font-weight: 900;
      margin: 0 0 10px;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 0.98;
      letter-spacing: -0.01em;
      margin: 0;
      max-width: 760px;
    }

    .section-heading p {
      max-width: 390px;
      color: var(--muted);
      margin: 0;
      font-size: 1.02rem;
    }

    /* Services Section */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .service-card {
      background: white;
      border-radius: var(--radius);
      padding: 24px;
      min-height: 310px;
      border: 1px solid #e5e7eb;
      box-shadow: 0 16px 50px rgba(15, 23, 42, 0.08);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
    }

    .icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: #eef5ff;
      color: var(--blue);
      font-size: 1.4rem;
      margin-bottom: 22px;
    }

    .service-card h3 {
      margin: 0 0 10px;
      font-size: 1.2rem;
      letter-spacing: 0;
    }

    .service-card p {
      margin: 0;
      color: var(--muted);
    }

    .service-flip-card {
      position: relative;
      min-height: 310px;
      padding: 0;
      cursor: pointer;
      overflow: hidden;
    }

    .service-card-inner {
      position: relative;
      width: 100%;
      min-height: 310px;
      height: 100%;
      border-radius: inherit;
    }

    .service-card-face {
      position: absolute;
      inset: 0;
      padding: 24px;
      border-radius: inherit;
      display: flex;
      flex-direction: column;
      transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
    }

    .service-card-front {
      background: inherit;
      border-radius: inherit;
    }

    .service-card-back {
      align-items: flex-start;
      justify-content: center;
      gap: 14px;
      transform: translateY(102%);
      opacity: 0;
      pointer-events: none;
      background:
        linear-gradient(145deg, rgba(30, 111, 217, 0.12), rgba(13, 17, 23, 0.02)),
        white;
    }

    .service-flip-card.is-flipped .service-card-front {
      transform: translateY(-10%);
      opacity: 0;
    }

    .service-flip-card.is-flipped .service-card-back {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .service-card-back h3,
    .service-card-back p {
      margin: 0;
    }

    .service-card-back p {
      max-width: 18ch;
    }

    .service-card-call {
      margin-top: 6px;
    }

    .service-card-cta {
      margin-top: auto;
      padding-top: 18px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 0.92rem;
      font-weight: 700;
      line-height: 1.2;
      color: #1e6fd9;
      letter-spacing: 0;
      text-decoration: none;
    }

    /* Specials Slide-Over Panel */
    .service-special-card {
      position: relative;
      cursor: pointer;
      overflow: visible;
      display: flex;
      flex-direction: column;
    }

    .specials-panel {
      position: absolute;
      top: -1px;
      right: -1px;
      width: calc(400% + 54px);
      min-height: calc(100% + 2px);
      padding: 28px;
      border-radius: var(--radius);
      border: 1px solid #e5e7eb;
      box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
      background:
        linear-gradient(145deg, rgba(30, 111, 217, 0.08), rgba(13, 17, 23, 0.01)),
        var(--panel);
      display: grid;
      align-content: center;
      gap: 14px;
      transform: translateX(102%);
      opacity: 0;
      pointer-events: none;
      transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
      z-index: 8;
    }

    .service-special-card.is-open {
      z-index: 12;
    }

    .service-special-card.is-open .specials-panel {
      transform: translateX(0);
      opacity: 1;
      pointer-events: auto;
    }

    .specials-panel h3,
    .specials-panel p {
      margin: 0;
    }

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

    .special-offer {
      min-height: 138px;
      display: grid;
      grid-template-columns: 118px 1fr;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(15, 23, 42, 0.08);
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
      color: var(--bg);
    }

    .special-offer-badge {
      padding: 18px 12px;
      display: grid;
      place-items: center;
      align-content: center;
      text-align: center;
      gap: 6px;
      background: linear-gradient(180deg, #580808 0%, #d12e1e 100%);
      color: white;
    }

    .special-offer-badge strong {
      display: block;
      font-size: 1.68rem;
      line-height: 0.92;
      letter-spacing: -0.05em;
      color: white;
    }

    .special-offer-badge span {
      display: block;
      font-size: 0.84rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .special-offer-content {
      padding: 18px 18px 16px;
      display: grid;
      gap: 8px;
      align-content: start;
    }

    .special-offer-title {
      margin: 0;
      font-size: 1.06rem;
      line-height: 1.12;
    }

    .special-offer-copy {
      margin: 0;
      max-width: none;
      font-size: 0.93rem;
      line-height: 1.4;
      color: var(--muted);
    }

    .special-offer-expiry {
      margin-top: auto;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--blue);
    }

    .specials-panel-note {
      font-size: 1rem;
      font-weight: 700;
      color: var(--blue);
    }

    .specials-panel-terms {
      margin: 2px 0 0;
      font-size: 0.88rem;
      line-height: 1.45;
      color: var(--muted);
    }

    /* Subaru Focus Section */
    .feature-band {
      background: var(--bg);
      color: white;
      border-radius: 34px;
      padding: 34px 44px;
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 42px;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    .feature-band::before {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      right: -120px;
      top: -140px;
      background: radial-gradient(circle, rgba(30, 111, 217, 0.42), transparent 68%);
    }

    .feature-band > * { position: relative; z-index: 1; }

    .feature-band p { color: rgba(255, 255, 255, 0.72); }

    .feature-copy {
      display: grid;
      gap: 18px;
    }

    .feature-copy > p {
      margin: 0;
    }

    .feature-toggle {
      justify-self: start;
    }

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

    .check {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 14px;
      border-radius: 16px;
      color: rgba(255, 255, 255, 0.85);
      font-weight: 700;
    }

    .feature-panel {
      grid-column: 1 / -1;
      display: grid;
      grid-template-rows: 0fr;
      opacity: 0;
      transition: grid-template-rows 360ms ease, opacity 220ms ease, margin-top 360ms ease;
      margin-top: 0;
    }

    .feature-panel-inner {
      min-height: 0;
      overflow: hidden;
    }

    .feature-panel-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 24px;
      padding: 28px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .feature-panel-card h3 {
      margin: 0 0 14px;
      font-size: 1.35rem;
      letter-spacing: -0.02em;
    }

    .feature-panel-card p {
      margin: 0;
      max-width: 920px;
    }

    .feature-panel-card p + p {
      margin-top: 14px;
    }

    .feature-band.is-open .feature-panel {
      grid-template-rows: 1fr;
      opacity: 1;
      margin-top: 8px;
    }

    /* Process Section */
    .process {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .step {
      border-left: 3px solid var(--blue);
      background: white;
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 26px;
      box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
      opacity: 1;
      transform: translateX(0);
      clip-path: inset(0 0 0 0 round 0 var(--radius) var(--radius) 0);
      transition:
        transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 620ms ease,
        clip-path 980ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 320ms ease;
    }

    .process.is-pending .step {
      opacity: 0;
      transform: translateX(-34px);
      clip-path: inset(0 100% 0 0 round 0 var(--radius) var(--radius) 0);
      box-shadow: 0 0 0 rgba(15, 23, 42, 0);
    }

    .process.is-visible .step {
      opacity: 1;
      transform: translateX(0);
      clip-path: inset(0 0 0 0 round 0 var(--radius) var(--radius) 0);
      box-shadow: 0 28px 72px rgba(15, 23, 42, 0.18);
    }

    .process.is-visible .step:nth-child(1) {
      transition-delay: 0ms;
    }

    .process.is-visible .step:nth-child(2) {
      transition-delay: 260ms;
    }

    .process.is-visible .step:nth-child(3) {
      transition-delay: 520ms;
    }

    .process.is-visible .step:nth-child(4) {
      transition-delay: 780ms;
    }

    .step-number {
      color: var(--blue);
      font-weight: 900;
      letter-spacing: -0.04em;
      font-size: 2.2rem;
      line-height: 1;
      margin-bottom: 12px;
    }

    .step h3 { margin: 0 0 8px; }
    .step p { margin: 0; color: var(--muted); }

    @media (prefers-reduced-motion: reduce) {
      .step {
        transition: none;
      }

      .process.is-pending .step {
        opacity: 1;
        transform: none;
        clip-path: inset(0 0 0 0 round 0 var(--radius) var(--radius) 0);
      }
    }

    /* Contact CTA Section */
    .cta {
      max-width: var(--max);
      margin: 0 auto 70px;
      padding: 0 22px;
      scroll-margin-top: var(--scroll-offset);
    }

    .cta-inner {
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(30, 111, 217, 0.94) 0%, rgba(30, 88, 170, 0.9) 44%, rgba(13, 17, 23, 0.94) 100%),
        url("Assets/Map%20of%20Silver%20Star.jpg") center/cover no-repeat;
      color: white;
      padding: 54px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
      gap: 32px;
      align-items: center;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .cta-inner::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 7% 8%, rgba(255, 255, 255, 0.12), transparent 28%),
        radial-gradient(circle at 82% 30%, rgba(255, 255, 255, 0.08), transparent 24%);
      pointer-events: none;
    }

    .cta-inner > * {
      position: relative;
      z-index: 1;
    }

    .cta-copy {
      display: grid;
      gap: 18px;
    }

    .cta h2 { max-width: 650px; }
    .cta p { color: rgba(255, 255, 255, 0.76); max-width: 580px; }

    .contact-cta-group {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .contact-cta-options {
      display: flex;
      gap: 12px;
      max-width: 0;
      opacity: 0;
      overflow: hidden;
      padding: 2px 0;
      transform: translateX(-8px);
      transition: max-width 260ms ease, opacity 180ms ease, transform 260ms ease;
      white-space: nowrap;
    }

    .contact-cta-options .button {
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    }

    .contact-cta-options.is-open {
      max-width: 220px;
      opacity: 1;
      transform: translateX(0);
    }

    .contact-map {
      position: relative;
      display: flex;
      align-items: flex-end;
      width: 100%;
      max-width: 420px;
      aspect-ratio: 1 / 1;
      justify-self: end;
      border-radius: 28px;
      overflow: hidden;
      background: url("Assets/Close%20Up%20Map%20Square.jpg") center/cover no-repeat;
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .contact-map:hover {
      transform: translateY(-3px);
      box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26);
      border-color: rgba(255, 255, 255, 0.28);
    }

    .contact-map:focus-visible {
      outline: 3px solid rgba(247, 201, 72, 0.95);
      outline-offset: 4px;
    }

    .contact-map-copy {
      width: 100%;
      margin: auto 0 0;
      padding: 24px 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.96);
      color: var(--bg);
      font-size: 1.12rem;
      font-weight: 800;
      letter-spacing: 0;
    }

    .contact-map-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .contact-map-label::after {
      content: "↗";
      font-size: 1rem;
      transform: translateY(-1px);
    }

    /* Footer */
    .site-footer {
      background: #080b10;
      color: rgba(255, 255, 255, 0.72);
      padding: 42px 22px;
    }

    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      align-items: center;
    }

    .footer-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-nav-stack {
      display: grid;
      justify-items: center;
      gap: 12px;
    }

    .footer-link-button {
      appearance: none;
      background: transparent;
      border: 0;
      color: inherit;
      cursor: pointer;
      font: inherit;
      padding: 0;
    }

    .footer-contact-group {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-contact-options {
      display: flex;
      gap: 10px;
      max-width: 0;
      opacity: 0;
      overflow: hidden;
      padding: 2px 0;
      transform: translateX(-8px);
      transition: max-width 260ms ease, opacity 180ms ease, transform 260ms ease;
      white-space: nowrap;
    }

    .footer-contact-options .button {
      padding: 10px 16px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    }

    .footer-contact-options.is-open {
      max-width: 220px;
      opacity: 1;
      transform: translateX(0);
    }

    /* Dark Mode Overrides */
    :root[data-theme="dark"] {
      color-scheme: dark;
      --text: #e7edf5;
      --muted: #a8b3c2;
      --light: #0b1119;
      --panel: #111926;
      --silver: #b9c3d3;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    }

    :root[data-theme="dark"] .hero::after {
      background: var(--light);
    }

    :root[data-theme="dark"] .hero-card {
      background: rgba(17, 25, 38, 0.94);
      border-color: rgba(255, 255, 255, 0.08);
    }

    :root[data-theme="dark"] .visual-badge {
      background: rgba(9, 14, 24, 0.88);
    }

    :root[data-theme="dark"] .visual-badge strong {
      color: #f8fafc;
    }

    :root[data-theme="dark"] .visual-badge span,
    :root[data-theme="dark"] .section-heading p,
    :root[data-theme="dark"] .service-card p,
    :root[data-theme="dark"] .step p {
      color: var(--muted);
    }

    :root[data-theme="dark"] .service-card,
    :root[data-theme="dark"] .step {
      background: var(--panel);
      border-color: #243043;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    }

    :root[data-theme="dark"] .process.is-pending .step {
      box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    :root[data-theme="dark"] .process.is-visible .step {
      box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
    }

    :root[data-theme="dark"] .feature-band {
      border: 1px solid #243043;
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
    }

    :root[data-theme="dark"] .service-card:hover {
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
    }

    :root[data-theme="dark"] .icon {
      background: rgba(30, 111, 217, 0.18);
      color: #8fc2ff;
    }

    :root[data-theme="dark"] .service-card-back {
      background:
        linear-gradient(145deg, rgba(30, 111, 217, 0.18), rgba(7, 11, 18, 0.12)),
        var(--panel);
    }

    :root[data-theme="dark"] .specials-panel {
      border-color: #243043;
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
      background:
        linear-gradient(145deg, rgba(30, 111, 217, 0.16), rgba(7, 11, 18, 0.12)),
        var(--panel);
    }

    :root[data-theme="dark"] .special-offer {
      border-color: #2d3a4f;
      background: rgba(14, 20, 31, 0.96);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
      color: white;
    }

    :root[data-theme="dark"] .special-offer-copy {
      color: rgba(255, 255, 255, 0.72);
    }

    :root[data-theme="dark"] .special-offer-expiry {
      color: #8fc2ff;
    }

    :root[data-theme="dark"] .specials-panel-terms {
      color: rgba(255, 255, 255, 0.72);
    }

    /* Responsive Layout */
    @media (max-width: 920px) {
      .hero-inner,
      .feature-band {
        grid-template-columns: 1fr;
      }

      .services-grid,
      .process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .specials-panel {
        width: calc(200% + 18px);
      }

      .specials-offers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .section-heading,
      .cta-inner {
        align-items: flex-start;
      }

      .cta-inner {
        grid-template-columns: 1fr;
      }

      .contact-map {
        max-width: none;
        justify-self: stretch;
      }

      .nav-links { display: none; }
    }

    @media (max-width: 620px) {
      .hero-inner { padding-top: 56px; }
      .services-grid,
      .process,
      .trust-row,
      .check-list {
        grid-template-columns: 1fr;
      }

      .specials-panel {
        width: calc(100% + 2px);
      }

      .specials-offers {
        grid-template-columns: 1fr;
      }

      .special-offer {
        grid-template-columns: 104px 1fr;
      }

      .special-offer-badge strong {
        font-size: 1.52rem;
      }

      .feature-band,
      .cta-inner { padding: 28px; }
      .shop-visual { min-height: 330px; }
    }
