    @font-face {
      font-family: 'Selawik';
      src: url('Selawik-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Selawik';
      src: url('Selawik-Semibold.ttf') format('truetype');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: 'Selawik';
      src: url('Selawik-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: #0e1117;
      color: #e8e8e8;
      font-family: 'Selawik', "Segoe UI", system-ui, sans-serif;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      position: relative;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('in-honor-of-windows-xp-i-made-a-4k-version-of-bliss-v0-r6g38aXSaQWtd1KxwJbQ-Fs5jtSVDxX3wtLHJEdqixw.webp') no-repeat center center;
      background-size: cover;
      filter: blur(8px) brightness(0.6) saturate(0.6);
      z-index: -1;
    }

    /* ---- Hero ---- */
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 3rem 1.5rem 2rem;
      text-align: center;
      position: relative;
      background: linear-gradient(to bottom, rgba(26, 111, 255, 0.3) 0%, rgba(10, 14, 20, 0.7) 100%);
    }

    .logo-container {
      position: relative;
      display: inline-block;
      margin-bottom: 2rem;
    }

    .logo {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 320px;
      height: auto;
      display: block;
      -webkit-box-reflect: below 4px linear-gradient(to bottom, transparent 60%, rgba(255,255,255,0.06) 100%);
    }

    .business-name {
      font-weight: 400;
      font-size: clamp(1.75rem, 5vw, 2.75rem);
      color: #f0f0f0;
      letter-spacing: -0.01em;
      margin-bottom: 0.4rem;
    }

    .subtitle {
      font-size: clamp(0.9rem, 2.5vw, 1.1rem);
      color: #8899aa;
      letter-spacing: 0.08em;
      margin-bottom: 0.4rem;
    }

    .services-line {
      font-size: clamp(0.75rem, 2vw, 0.9rem);
      color: #778899;
      letter-spacing: 0.08em;
      margin-bottom: 1rem;
    }

    /* ---- Tab Bar ---- */
    .tab-bar {
      display: flex;
      justify-content: center;
      gap: 0;
      max-width: 860px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    [hidden] { display: none !important; }

    .tab-btn {
      flex: 1;
      max-width: 200px;
      padding: 0.85rem 1.1rem;
      font-family: 'Selawik', "Segoe UI", system-ui, sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      color: #99aabb;
      background: linear-gradient(to bottom, #1a2233 0%, #141c28 100%);
      border: 1px solid #1e2d40;
      border-top-color: #2a3d55;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: border-color 0.2s ease, color 0.2s ease;
    }

    .tab-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 50%;
      background: linear-gradient(to bottom, rgba(255,255,255,0.03) 0%, transparent 100%);
      pointer-events: none;
    }

    .tab-btn:first-child {
      border-radius: 6px 0 0 6px;
    }

    .tab-btn:not(:last-child) {
      border-right: none;
    }

    .tab-btn:last-child {
      border-radius: 0 6px 6px 0;
    }

    .tab-btn:hover {
      color: #d0daea;
      border-color: #3a5a80;
    }

    .tab-btn.active {
      color: #e8e8e8;
      border-color: #3a5070;
      border-top-color: #4a6a90;
      background: linear-gradient(to bottom, #1e2a3d 0%, #182435 100%);
    }

    /* ---- Info Section ---- */
    .info-section {
      max-width: 860px;
      margin: 0 auto;
      padding: 3rem 1.5rem 2rem;
      display: none;
    }

    .info-card {
      background: linear-gradient(to bottom, #1a2233 0%, #141c28 40%, #111822 100%);
      border: 1px solid #2a3a50;
      border-top-color: #3a5070;
      border-radius: 8px;
      padding: 2.5rem 2.25rem;
      margin-bottom: 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .info-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(to bottom, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 100%);
      border-radius: 7px 7px 0 0;
      pointer-events: none;
    }

    .info-card h2 {
      font-family: 'Selawik', "Segoe UI", system-ui, sans-serif;
      font-weight: 400;
      font-size: clamp(1.35rem, 3.5vw, 1.75rem);
      color: #e8e8e8;
      margin-bottom: 1rem;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .info-card h2 .card-note {
      font-size: 0.78rem;
      font-weight: 400;
      color: #667788;
      white-space: nowrap;
    }

    .info-card p {
      font-size: 0.95rem;
      line-height: 1.75;
      color: #99aabb;
      margin-bottom: 0.75rem;
    }

    .info-card p:last-child {
      margin-bottom: 0;
    }

    /* ---- DIY Guides Tab ---- */
    .video-embed {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      margin-top: 1.25rem;
      border: 1px solid #2a3a50;
      border-radius: 6px;
      overflow: hidden;
      background: #0d131c;
    }

    .video-embed iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .guides-soon {
      text-align: center;
      padding: 3rem 2.25rem;
    }

    .guides-soon h2 {
      justify-content: center;
    }

    .info-card .guides-soon-line {
      font-family: 'Selawik', "Segoe UI", system-ui, sans-serif;
      font-size: clamp(1.6rem, 5vw, 2.2rem);
      line-height: 1.3;
      color: #5ab4e8;
      margin: 0.75rem 0 1.25rem;
    }

    .price-table {
      width: 100%;
      border-collapse: collapse;
    }

    .price-table th {
      text-align: left;
      font-size: 0.8rem;
      font-weight: 600;
      color: #667788;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 0 0 0.6rem;
      border-bottom: 1px solid #1e2d40;
    }

    .price-table th:last-child {
      text-align: right;
    }

    .price-table td {
      font-size: 0.95rem;
      color: #99aabb;
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(30,45,64,0.5);
    }

    .price-table tr:last-child td {
      border-bottom: none;
    }

    .price-table td:last-child {
      text-align: right;
      color: #5ab4e8;
      font-weight: 600;
    }

    .price-section-header {
      font-family: 'Selawik', "Segoe UI", system-ui, sans-serif;
      font-weight: 600;
      font-size: clamp(1.1rem, 3vw, 1.4rem);
      color: #99aabb;
      letter-spacing: 0.04em;
      margin-bottom: 1rem;
      margin-top: 2rem;
    }

    .price-section-header:first-child {
      margin-top: 0;
    }

    .price-note {
      font-size: 0.85rem;
      color: #8899aa;
      margin-top: 1.5rem;
    }

    .iphone-oled-note {
      max-width: 860px;
      margin: 1rem auto 0;
      padding: 2.5rem 2.25rem;
      background: linear-gradient(to bottom, #1a2833 0%, #142028 40%, #111f22 100%);
      border: 1px solid #2a5040;
      border-top-color: #3a7050;
      border-radius: 8px;
      font-size: 0.95rem;
      line-height: 1.75;
      color: #99aabb;
      position: relative;
      overflow: hidden;
    }

    .iphone-oled-note strong {
      color: #00CC88;
      font-weight: 600;
    }

    .iphone-oled-note .note-heading {
      display: block;
      font-size: 1.05rem;
      margin-bottom: 1rem;
    }

    .iphone-oled-note p {
      margin-bottom: 1rem;
    }

    .iphone-oled-note p:last-child {
      margin-bottom: 0;
    }

    /* Bold for emphasis inside the notice, not the green heading treatment */
    .iphone-oled-note strong.note-policy {
      color: #d0daea;
      font-weight: 700;
    }

    .iphone-oled-note .note-underline {
      text-decoration: underline;
    }

    /* ---- Flow Area ---- */
    .flow-area {
      max-width: 860px;
      margin: 0 auto;
      padding: 3rem 1.5rem 2rem;
    }

    .flow-prompt {
      font-weight: 400;
      font-size: clamp(1.35rem, 3.5vw, 1.75rem);
      color: #e8e8e8;
      margin-bottom: 1.5rem;
    }

    /* Breadcrumb */
    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.4rem;
      margin-bottom: 1.5rem;
      font-size: 0.85rem;
      min-height: 1.5rem;
    }

    .breadcrumb-item {
      color: #5ab4e8;
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
      font-size: inherit;
      padding: 0.15rem 0.3rem;
      border-radius: 3px;
      transition: background 0.15s ease;
    }

    .breadcrumb-item:hover {
      background: rgba(90, 180, 232, 0.12);
    }

    .breadcrumb-sep {
      color: #445566;
      user-select: none;
    }

    .breadcrumb-current {
      color: #8899aa;
    }

    /* Flow layout: list on left, SVG on right */
    .flow-layout {
      display: flex;
      gap: 2.5rem;
      align-items: flex-start;
    }

    .flow-list-col {
      flex: 1;
      min-width: 0;
    }

    .flow-illustration {
      width: 220px;
      flex-shrink: 0;
      position: sticky;
      top: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }

    .flow-illustration svg {
      width: 100%;
      height: auto;
      max-height: 200px;
    }

    /* Tile list (single column) */
    .tile-list {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .tile {
      background: linear-gradient(to bottom,
        #1a2233 0%,
        #141c28 100%
      );
      border: 1px solid #1e2d40;
      border-top-color: #2a3d55;
      padding: 0.85rem 1.1rem;
      font-family: inherit;
      font-size: 0.95rem;
      color: #99aabb;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
      text-align: left;
      width: 100%;
    }

    .tile::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 50%;
      background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.03) 0%,
        transparent 100%
      );
      pointer-events: none;
    }

    .tile:hover {
      border-color: #3a5a80;
      color: #d0daea;
    }

    .tile:active {
      box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
    }

    .tile-list .tile:first-child {
      border-radius: 6px 6px 0 0;
    }

    .tile-list .tile:last-child {
      border-radius: 0 0 6px 6px;
    }

    .tile-list .tile:only-child {
      border-radius: 6px;
    }

    /* Step transition */
    .flow-step {
      animation: fadeSlideIn 0.2s ease-out;
    }

    @keyframes fadeSlideIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Not Listed tile */
    .not-listed-tile {
      text-align: center;
      color: #667788;
      font-size: 0.85rem;
      padding: 0.75rem 1rem;
      border-color: #182030;
      border-top-color: #1e2d40;
    }

    .not-listed-tile:hover {
      color: #99aabb;
    }

    /* ---- Result Cards ---- */
    .result-card {
      background: linear-gradient(to bottom,
        #1a2233 0%,
        #141c28 40%,
        #111822 100%
      );
      border: 1px solid #2a3a50;
      border-top-color: #3a5070;
      border-radius: 8px;
      padding: 2.5rem 2.25rem;
      position: relative;
      overflow: hidden;
      animation: fadeSlideIn 0.25s ease-out;
    }

    .result-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0) 100%
      );
      border-radius: 7px 7px 0 0;
      pointer-events: none;
    }

    .result-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .result-heading {
      font-weight: 600;
      font-size: 1.25rem;
      color: #e8e8e8;
      margin-bottom: 0.75rem;
    }

    .result-text {
      font-size: 0.95rem;
      line-height: 1.75;
      color: #99aabb;
      margin-bottom: 0.75rem;
    }

    .result-cta {
      display: inline-block;
      font-family: 'Selawik', "Segoe UI", system-ui, sans-serif;
      font-weight: 600;
      font-size: 1rem;
      color: #fff;
      background: linear-gradient(to bottom,
        #4a9cff 0%,
        #1a75ff 48%,
        #005CFF 52%,
        #003fba 100%
      );
      border: 1px solid #003090;
      border-radius: 6px;
      padding: 0.75rem 2rem;
      cursor: pointer;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: transform 0.15s ease;
      margin-top: 0.75rem;
    }

    .result-cta::before {
      content: '';
      position: absolute;
      top: 1px;
      left: 4px;
      right: 4px;
      height: 45%;
      background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.08) 100%
      );
      border-radius: 4px 4px 50% 50%;
      pointer-events: none;
    }

    .result-cta:hover { transform: scale(1.03); }
    .result-cta:active { transform: scale(0.98); }

    .result-price {
      font-size: 1.15rem;
      color: #d0daea;
      margin-bottom: 0.25rem;
    }

    .result-price strong {
      color: #5ab4e8;
      font-size: 1.3rem;
    }

    .result-disclaimer {
      font-size: 0.78rem;
      color: #556677;
      margin-bottom: 1rem;
      font-style: italic;
    }

    .result-detail {
      font-size: 0.85rem;
      color: #667788;
      margin-top: 1rem;
    }

    .result-card.in-stock {
      border-color: #1a4a30;
      border-top-color: #2a6a45;
    }

    .result-card.out-of-stock {
      border-color: #2a3a50;
    }

    .start-over {
      display: inline-block;
      margin-top: 1.5rem;
      font-family: inherit;
      font-size: 0.85rem;
      color: #5ab4e8;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.3rem 0;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .start-over:hover {
      border-bottom-color: #5ab4e8;
    }

    /* ---- Reviews Section ---- */
    .reviews-section {
      max-width: 860px;
      margin: -3rem auto -3rem;
      padding: 0 1.5rem;
    }



    /* ---- Contact Section ---- */
    .contact-section {
      max-width: 720px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .contact-panel {
      background: linear-gradient(to bottom,
        #1a2233 0%,
        #141c28 40%,
        #111822 100%
      );
      border: 1px solid #2a3a50;
      border-top-color: #3a5070;
      border-radius: 8px;
      padding: 2.5rem 2.25rem;
      position: relative;
      overflow: hidden;
    }

    .contact-panel::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 40%;
      background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(255, 255, 255, 0) 100%
      );
      border-radius: 7px 7px 0 0;
      pointer-events: none;
    }

    .contact-heading {
      font-weight: 400;
      font-size: clamp(1.35rem, 3.5vw, 1.75rem);
      color: #e8e8e8;
      margin-bottom: 1.5rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem 2.5rem;
    }

    .contact-item {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }

    .contact-label {
      font-size: 0.8rem;
      font-weight: 600;
      color: #667788;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .contact-value {
      font-size: 0.95rem;
      color: #99aabb;
      line-height: 1.5;
    }

    .contact-value a {
      color: #5ab4e8;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .contact-value a:hover {
      border-bottom-color: #5ab4e8;
    }

    .contact-socials {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .contact-socials a {
      color: #5ab4e8;
      text-decoration: none;
      font-size: 0.9rem;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .contact-socials a:hover {
      border-bottom-color: #5ab4e8;
    }

    .contact-divider {
      grid-column: 1 / -1;
      height: 1px;
      background: #1e2d40;
      margin: 0.25rem 0;
    }

    @media (max-width: 700px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .contact-section {
        padding: 0 1rem;
      }

      .contact-panel {
        padding: 1.75rem 1.25rem;
      }
    }

    /* ---- Footer ---- */
    .footer {
      margin-top: 4rem;
      padding: 1rem 1.5rem;
      background: linear-gradient(to bottom,
        #1a2233 0%,
        #0e1520 100%
      );
      border-top: 1px solid #2a3a50;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
    }

    .footer-icon {
      width: 40px;
      height: auto;
      opacity: 0.5;
    }

    .footer-copy {
      font-size: 0.8rem;
      color: #556677;
    }

    /* ---- Loading / Error ---- */
    .flow-loading {
      color: #667788;
      font-size: 0.9rem;
      padding: 2rem 0;
    }

    .flow-error {
      color: #99aabb;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .flow-error a {
      color: #5ab4e8;
      text-decoration: none;
    }

    /* ---- Mobile ---- */
    @media (max-width: 700px) {
      .hero {
        padding: 2rem 1.25rem 1.5rem;
      }

      .logo {
        max-width: 220px;
      }

      .flow-area {
        padding: 2rem 1rem 2rem;
      }

      .flow-layout {
        flex-direction: column;
        gap: 1.5rem;
      }

      .flow-list-col {
        width: 100%;
      }

      .flow-illustration {
        width: 100%;
        position: static;
        padding: 0.5rem 2rem;
        max-height: 140px;
        order: 1;
      }

      .flow-list-col {
        order: 0;
      }

      .flow-illustration svg {
        max-height: 120px;
        width: auto;
      }

      .result-card {
        padding: 1.75rem 1.25rem;
      }

      .footer {
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 0.5rem;
      }
    }

    @media (min-width: 701px) and (max-width: 900px) {
      .logo {
        max-width: 280px;
      }

      .flow-illustration {
        width: 180px;
      }
    }

    /* ---- Mail-In Tab ---- */
    .mailin-steps {
      list-style: none;
      counter-reset: mailin-step;
      margin: 0 0 0.5rem;
      padding: 0;
    }

    .mailin-steps li {
      counter-increment: mailin-step;
      position: relative;
      padding: 0.5rem 0 0.5rem 2.5rem;
      font-size: 0.95rem;
      color: #99aabb;
      line-height: 1.5;
    }

    .mailin-steps li::before {
      content: counter(mailin-step);
      position: absolute;
      left: 0;
      top: 0.45rem;
      width: 1.7rem;
      height: 1.7rem;
      border-radius: 50%;
      background: linear-gradient(to bottom, #1e2a3d, #182435);
      border: 1px solid #2a3d55;
      color: #5ab4e8;
      font-size: 0.8rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1;
    }

    .mailin-category-heading {
      font-family: 'Selawik', "Segoe UI", system-ui, sans-serif;
      font-weight: 600;
      font-size: clamp(1.1rem, 3vw, 1.4rem);
      color: #99aabb;
      letter-spacing: 0.04em;
      margin: 2rem 0 1rem;
    }

    .mailin-category-note {
      font-size: 0.82rem;
      color: #667788;
      margin-top: -0.5rem;
      margin-bottom: 1rem;
      font-style: italic;
    }

    .mailin-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 2px;
    }

    .mailin-card {
      background: linear-gradient(to bottom, #1a2233 0%, #141c28 100%);
      border: 1px solid #1e2d40;
      border-top-color: #2a3d55;
      border-radius: 6px;
      padding: 1.1rem 1.2rem;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: border-color 0.2s ease, color 0.2s ease;
    }

    .mailin-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 50%;
      background: linear-gradient(to bottom, rgba(255,255,255,0.03) 0%, transparent 100%);
      pointer-events: none;
    }

    .mailin-card:hover {
      border-color: #3a5a80;
    }

    .mailin-card-name {
      font-size: 1rem;
      font-weight: 600;
      color: #d0daea;
      margin-bottom: 0.3rem;
    }

    .mailin-card-price {
      font-size: 0.82rem;
      color: #5ab4e8;
    }

    /* Mail-In Checkout Form */
    .mailin-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .mailin-form-grid .mailin-field-full {
      grid-column: 1 / -1;
    }

    .mailin-label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: #e8e8e8;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 0.35rem;
    }

    .mailin-input,
    .mailin-textarea,
    .mailin-select {
      width: 100%;
      background: linear-gradient(to bottom, #111822, #141c28);
      border: 1px solid #1e2d40;
      border-radius: 5px;
      padding: 0.7rem 0.85rem;
      font-family: 'Selawik', "Segoe UI", system-ui, sans-serif;
      font-size: 0.95rem;
      color: #e8e8e8;
      transition: border-color 0.2s ease;
    }

    .mailin-input:focus,
    .mailin-textarea:focus,
    .mailin-select:focus {
      outline: none;
      border-color: #3a5a80;
    }

    .mailin-textarea {
      min-height: 90px;
      resize: vertical;
    }

    .mailin-select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23667788' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.85rem center;
      padding-right: 2.2rem;
      cursor: pointer;
    }

    .mailin-model-picker {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
    }

    .mailin-model-picker label {
      display: block;
      cursor: pointer;
    }

    .mailin-model-picker input[type="radio"] {
      display: none;
    }

    .mailin-model-picker .model-chip {
      display: inline-block;
      padding: 0.45rem 0.85rem;
      font-size: 0.85rem;
      color: #99aabb;
      background: linear-gradient(to bottom, #1a2233, #141c28);
      border: 1px solid #1e2d40;
      border-radius: 5px;
      transition: border-color 0.2s ease, color 0.2s ease;
    }

    .mailin-model-picker input[type="radio"]:checked + .model-chip {
      border-color: #3a5a80;
      color: #e8e8e8;
      background: linear-gradient(to bottom, #1e2a3d, #182435);
    }

    .mailin-model-picker .model-chip:hover {
      border-color: #3a5a80;
      color: #d0daea;
    }

    .mailin-checkbox-row {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
    }

    .mailin-checkbox-row input[type="checkbox"] {
      margin-top: 0.2rem;
      accent-color: #005CFF;
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .mailin-checkbox-row span {
      font-size: 0.85rem;
      color: #99aabb;
      line-height: 1.5;
    }

    .mailin-submit {
      display: inline-block;
      font-family: 'Selawik', "Segoe UI", system-ui, sans-serif;
      font-weight: 600;
      font-size: 1rem;
      color: #fff;
      background: linear-gradient(to bottom, #4a9cff 0%, #1a75ff 48%, #005CFF 52%, #003fba 100%);
      border: 1px solid #003090;
      border-radius: 6px;
      padding: 0.75rem 2rem;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: transform 0.15s ease;
      margin-top: 0.5rem;
    }

    .mailin-submit::before {
      content: '';
      position: absolute;
      top: 1px;
      left: 4px;
      right: 4px;
      height: 45%;
      background: linear-gradient(to bottom, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.08) 100%);
      border-radius: 4px 4px 50% 50%;
      pointer-events: none;
    }

    .mailin-submit:hover { transform: scale(1.03); }
    .mailin-submit:active { transform: scale(0.98); }
    .mailin-submit:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }

    .mailin-error {
      color: #e85a5a;
      font-size: 0.82rem;
      margin-top: 0.5rem;
    }

    .mailin-section-divider {
      height: 1px;
      background: #1e2d40;
      margin: 1.5rem 0;
      grid-column: 1 / -1;
    }

    @media (max-width: 600px) {
      .tab-btn {
        font-size: 0.8rem;
        padding: 0.75rem 0.5rem;
      }

      .mailin-grid {
        grid-template-columns: 1fr;
      }

      .mailin-form-grid {
        grid-template-columns: 1fr;
      }

      .mailin-form-grid .mailin-field-full {
        grid-column: 1;
      }
    }

    /* ------------------------------------------------------------------
       Service landing pages (/ps5-repair-reno/, /xbox-repair-reno/, etc.)

       These pages reuse every component above. They only need three things
       the homepage does not:
         1. .info-section is display:none by default because the homepage
            tab script reveals it. Service pages have no JS, so unhide it.
         2. a centered wrapper for the phone CTA under the hero.
         3. a plain "back to the full site" link above the footer.
       Nothing here touches the homepage, which never gets .page-service.
       ------------------------------------------------------------------ */
    .page-service .info-section {
      display: block;
    }

    .service-cta {
      text-align: center;
      padding: 0 1.5rem;
    }

    .service-cta .result-cta {
      font-size: 1.1rem;
      padding: 0.9rem 2.4rem;
    }

    .service-cta-note {
      color: #778899;
      font-size: 0.85rem;
      margin-top: 0.75rem;
    }

    .service-back {
      max-width: 860px;
      margin: 0 auto;
      padding: 1rem 1.5rem 0;
      text-align: center;
    }

    .service-back a {
      color: #5ab4e8;
      text-decoration: none;
      font-size: 0.95rem;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .service-back a:hover {
      border-bottom-color: #5ab4e8;
    }

    /* Links inside service-page cards. Scoped to .page-service so the
       homepage's cards keep their existing plain-text look. */
    .page-service .info-card h2 a {
      color: inherit;
      text-decoration: none;
      border-bottom: 1px solid rgba(90, 180, 232, 0.45);
      transition: border-color 0.2s ease;
    }

    .page-service .info-card h2 a:hover {
      border-bottom-color: #5ab4e8;
    }

    .page-service .info-card p a {
      color: #5ab4e8;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .page-service .info-card p a:hover {
      border-bottom-color: #5ab4e8;
    }

    /* The tab bar is anchors, not buttons, so every page can carry the same one
       and link into a homepage tab. These lines make an anchor sit in the bar
       identically to the buttons it replaced. The [hidden] rule matters: the
       display:flex above would otherwise beat the hidden attribute and show the
       Mail-In tab while that feature is switched off. */
    a.tab-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      text-align: center;
    }

    a.tab-btn[hidden] {
      display: none;
    }

    .page-service .price-note a {
      color: #5ab4e8;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .page-service .price-note a:hover {
      border-bottom-color: #5ab4e8;
    }
