:root {
      --navy: #14213d;
      --navy-light: #22345d;
      --orange: #f59e0b;
      --orange-dark: #d97706;
      --cream: #fffaf0;
      --surface: #ffffff;
      --text: #243047;
      --muted: #68758b;
      --line: #e5e9f0;
      --success: #167a52;
      --shadow: 0 18px 50px rgba(20, 33, 61, .12);
      --radius: 18px;
      --max: 1160px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
      color: var(--text);
      background: #fff;
      line-height: 1.65;
    }

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

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

    button,
    input,
    textarea {
      font: inherit;
    }

    .container {
      width: min(calc(100% - 36px), var(--max));
      margin-inline: auto;
    }

    .topbar {
      background: #0c1529;
      color: #eef4ff;
      font-size: .93rem;
    }

    .topbar-inner {
      min-height: 43px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 26px;
    }

    .topbar a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      opacity: .95;
    }

    .topbar a:hover {
      color: #ffd991;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, .96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(229, 233, 240, .8);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -.02em;
    }

    .brand-mark {
      width: 45px;
      height: 45px;
      border-radius: 13px;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, var(--orange), #ffbf4b);
      color: var(--navy);
      box-shadow: 0 8px 22px rgba(245, 158, 11, .28);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
    }

    .brand-text strong {
      font-size: 1.17rem;
    }

    .brand-text span {
      margin-top: 5px;
      color: var(--muted);
      font-size: .73rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 27px;
      font-weight: 650;
      color: #3d4960;
    }

    .nav-links a {
      position: relative;
      padding: 10px 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 3px;
      height: 2px;
      background: var(--orange);
      transition: right .2s ease;
    }

    .nav-links a:hover::after {
      right: 0;
    }

    .nav-cta,
    .btn {
      border: 0;
      border-radius: 11px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 48px;
      padding: 0 22px;
      cursor: pointer;
      font-weight: 750;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .nav-cta,
    .btn-primary {
      background: var(--orange);
      color: #172138;
      box-shadow: 0 10px 24px rgba(245, 158, 11, .25);
    }

    .nav-cta:hover,
    .btn-primary:hover {
      background: #ffb21c;
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(245, 158, 11, .33);
    }

    .btn-secondary {
      color: #fff;
      border: 1px solid rgba(255, 255, 255, .34);
      background: rgba(255, 255, 255, .07);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, .13);
      transform: translateY(-2px);
    }

    .menu-button {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 10px;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--navy);
      cursor: pointer;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 85% 10%, rgba(245, 158, 11, .20), transparent 28%),
        linear-gradient(135deg, #0f1a34 0%, #17294d 57%, #20365d 100%);
      color: #fff;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: 620px;
      height: 620px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.06);
      right: -170px;
      bottom: -320px;
    }

    .hero-grid {
      position: relative;
      min-height: 610px;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      align-items: center;
      gap: 70px;
      padding: 86px 0 90px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 19px;
      padding: 8px 13px;
      border: 1px solid rgba(255,255,255,.17);
      border-radius: 999px;
      color: #ffdf9f;
      background: rgba(255,255,255,.06);
      font-size: .88rem;
      font-weight: 750;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 0 5px rgba(245,158,11,.13);
    }

    h1,
    h2,
    h3 {
      line-height: 1.16;
      letter-spacing: -.035em;
      margin-top: 0;
    }

    h1 {
      margin-bottom: 23px;
      font-size: clamp(2.55rem, 5vw, 4.75rem);
      max-width: 800px;
    }

    .hero-copy > p {
      max-width: 660px;
      margin: 0 0 31px;
      color: #d9e2f1;
      font-size: clamp(1.04rem, 1.5vw, 1.22rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 22px;
      margin-top: 31px;
      color: #d8e1f0;
      font-size: .95rem;
    }

    .hero-badges span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .check {
      color: #ffbd3d;
      font-weight: 900;
    }

    .microwave-visual {
      position: relative;
      min-height: 390px;
      display: grid;
      place-items: center;
    }

    .visual-halo {
      position: absolute;
      width: 390px;
      height: 390px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245,158,11,.24), rgba(245,158,11,.02) 62%, transparent 70%);
    }

    .microwave {
      position: relative;
      width: min(100%, 430px);
      aspect-ratio: 1.42;
      padding: 26px;
      border-radius: 27px;
      background: linear-gradient(145deg, #f5f7fa, #bac4d1);
      box-shadow:
        0 30px 60px rgba(0,0,0,.28),
        inset 0 2px 2px rgba(255,255,255,.9);
      transform: perspective(900px) rotateY(-6deg) rotateX(2deg);
    }

    .microwave::after {
      content: "";
      position: absolute;
      left: 40px;
      right: 40px;
      bottom: -13px;
      height: 17px;
      border-radius: 50%;
      background: rgba(0,0,0,.35);
      filter: blur(11px);
      z-index: -1;
    }

    .microwave-front {
      width: 100%;
      height: 100%;
      border-radius: 17px;
      background: #222c3b;
      display: grid;
      grid-template-columns: 1fr 92px;
      gap: 16px;
      padding: 18px;
    }

    .microwave-door {
      position: relative;
      border-radius: 11px;
      overflow: hidden;
      border: 5px solid #121a27;
      background:
        radial-gradient(circle at 52% 58%, rgba(245,158,11,.28), transparent 16%),
        repeating-radial-gradient(circle at center, rgba(255,255,255,.09) 0 1px, transparent 1px 4px),
        linear-gradient(145deg, #25334a, #111927);
    }

    .microwave-door::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(255,255,255,.15), transparent 40%);
    }

    .plate {
      position: absolute;
      width: 122px;
      height: 38px;
      border: 3px solid rgba(255,255,255,.42);
      border-radius: 50%;
      left: 50%;
      bottom: 35px;
      transform: translateX(-50%);
      box-shadow: inset 0 0 18px rgba(245,158,11,.23);
    }

    .control {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding-top: 5px;
    }

    .display {
      width: 64px;
      padding: 8px 5px;
      border-radius: 5px;
      background: #0b1512;
      color: #62f4ae;
      text-align: center;
      font-family: Consolas, monospace;
      font-size: .82rem;
      box-shadow: inset 0 0 8px rgba(98,244,174,.25);
    }

    .dial {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 5px solid #d4dae1;
      background: linear-gradient(145deg, #eef1f4, #9aa5b3);
      box-shadow: 0 4px 8px rgba(0,0,0,.35);
    }

    .buttons {
      display: grid;
      grid-template-columns: repeat(2, 17px);
      gap: 8px;
    }

    .buttons i {
      width: 17px;
      height: 11px;
      border-radius: 2px;
      background: #b9c2cd;
      box-shadow: inset 0 1px 1px #fff;
    }

    .floating-note {
      position: absolute;
      right: -10px;
      bottom: 22px;
      max-width: 190px;
      padding: 14px 17px;
      border-radius: 14px;
      background: #fff;
      color: var(--navy);
      box-shadow: var(--shadow);
      font-size: .9rem;
      font-weight: 700;
    }

    .floating-note strong {
      display: block;
      margin-bottom: 2px;
      color: var(--success);
      font-size: 1.05rem;
    }

    .trust-strip {
      position: relative;
      z-index: 2;
      margin-top: -33px;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 17px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .trust-item {
      padding: 23px 25px;
      border-right: 1px solid var(--line);
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .trust-item:last-child {
      border-right: 0;
    }

    .trust-icon,
    .card-icon {
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      background: #fff4dc;
      color: var(--orange-dark);
    }

    .trust-icon {
      width: 42px;
      height: 42px;
      border-radius: 11px;
    }

    .trust-item strong {
      display: block;
      color: var(--navy);
      font-size: .98rem;
    }

    .trust-item span {
      color: var(--muted);
      font-size: .84rem;
    }

    section {
      padding: 94px 0;
    }

    .section-kicker {
      margin-bottom: 11px;
      color: var(--orange-dark);
      font-size: .82rem;
      font-weight: 850;
      letter-spacing: .11em;
      text-transform: uppercase;
    }

    .section-title {
      margin-bottom: 17px;
      color: var(--navy);
      font-size: clamp(2rem, 3vw, 3rem);
    }

    .section-lead {
      max-width: 680px;
      margin: 0;
      color: var(--muted);
      font-size: 1.06rem;
    }

    .section-head {
      margin-bottom: 46px;
    }

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

    .service-card {
      position: relative;
      padding: 29px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      overflow: hidden;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .service-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--orange), #ffd071);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .22s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      border-color: #f4cc82;
      box-shadow: var(--shadow);
    }

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

    .card-icon {
      width: 51px;
      height: 51px;
      margin-bottom: 20px;
      border-radius: 14px;
    }

    .service-card h3 {
      margin-bottom: 11px;
      color: var(--navy);
      font-size: 1.23rem;
    }

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

    .faults {
      background: var(--cream);
    }

    .faults-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 70px;
      align-items: center;
    }

    .fault-panel {
      padding: 31px;
      border: 1px solid #efe1c6;
      border-radius: 22px;
      background: #fff;
      box-shadow: var(--shadow);
    }

    .fault-list {
      display: grid;
      gap: 3px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .fault-list li {
      display: flex;
      align-items: flex-start;
      gap: 13px;
      padding: 15px 4px;
      border-bottom: 1px solid var(--line);
    }

    .fault-list li:last-child {
      border-bottom: 0;
    }

    .fault-list svg {
      flex: 0 0 auto;
      margin-top: 4px;
      color: var(--orange-dark);
    }

    .fault-list strong {
      color: var(--navy);
    }

    .warning {
      margin-top: 25px;
      padding: 18px 19px;
      border-left: 4px solid var(--orange);
      border-radius: 0 12px 12px 0;
      background: #fff3da;
      color: #644815;
      font-size: .94rem;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      counter-reset: step;
    }

    .step {
      position: relative;
      padding: 29px 23px 25px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      counter-increment: step;
    }

    .step::before {
      content: counter(step);
      width: 43px;
      height: 43px;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
      border-radius: 50%;
      background: var(--navy);
      color: #fff;
      font-weight: 850;
      box-shadow: 0 0 0 7px #eef2f8;
    }

    .step h3 {
      margin-bottom: 8px;
      color: var(--navy);
      font-size: 1.13rem;
    }

    .step p {
      margin: 0;
      color: var(--muted);
      font-size: .93rem;
    }

    .brands {
      padding-top: 5px;
    }

    .brand-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 29px;
    }

    .brand-cloud span {
      padding: 9px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #f8fafc;
      color: #536078;
      font-size: .9rem;
      font-weight: 650;
    }

    .faq {
      background: #f7f9fc;
    }

    .faq-wrap {
      max-width: 850px;
    }

    details {
      margin-bottom: 12px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      overflow: hidden;
    }

    summary {
      position: relative;
      padding: 20px 55px 20px 22px;
      cursor: pointer;
      color: var(--navy);
      font-weight: 750;
      list-style: none;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "+";
      position: absolute;
      top: 50%;
      right: 22px;
      transform: translateY(-50%);
      color: var(--orange-dark);
      font-size: 1.5rem;
      font-weight: 400;
    }

    details[open] summary::after {
      content: "–";
    }

    details p {
      margin: 0;
      padding: 0 22px 21px;
      color: var(--muted);
    }

    .contact {
      padding-bottom: 0;
    }

    .contact-box {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      border-radius: 24px;
      overflow: hidden;
      background: var(--navy);
      box-shadow: 0 24px 70px rgba(20,33,61,.21);
    }

    .contact-info {
      padding: 48px;
      color: #fff;
      background:
        radial-gradient(circle at 0 100%, rgba(245,158,11,.18), transparent 36%),
        var(--navy);
    }

    .contact-info .section-kicker {
      color: #ffc65c;
    }

    .contact-info h2 {
      color: #fff;
      font-size: clamp(2rem, 3vw, 2.8rem);
    }

    .contact-info > p {
      color: #ced8e9;
    }

    .contact-lines {
      display: grid;
      gap: 17px;
      margin-top: 29px;
    }

    .contact-line {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .contact-line svg {
      flex: 0 0 auto;
      margin-top: 2px;
      color: #ffc557;
    }

    .contact-line span {
      display: block;
      color: #aebbd0;
      font-size: .84rem;
    }

    .contact-line strong,
    .contact-line a {
      color: #fff;
      font-weight: 700;
    }

    .hours {
      padding: 48px;
      background: #fff;
    }

    .hours h3 {
      margin-bottom: 23px;
      color: var(--navy);
      font-size: 1.55rem;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      padding: 13px 0;
      border-bottom: 1px solid var(--line);
    }

    .hours-row:last-of-type {
      border-bottom: 0;
    }

    .hours-row span:last-child {
      color: var(--navy);
      font-weight: 750;
    }

    .map-link {
      width: 100%;
      margin-top: 25px;
      background: var(--navy);
      color: #fff;
      box-shadow: none;
    }

    .map-link:hover {
      background: var(--navy-light);
      transform: translateY(-2px);
    }

    footer {
      margin-top: 92px;
      padding: 34px 0;
      background: #0c1529;
      color: #aeb9cc;
      font-size: .9rem;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 30px;
    }

    .footer-inner a {
      color: #fff;
    }

    .mobile-call {
      display: none;
    }

    @media (max-width: 980px) {
      .nav-links {
        position: absolute;
        top: 78px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: #fff;
        box-shadow: var(--shadow);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links a {
        padding: 12px;
      }

      .nav-links a::after {
        display: none;
      }

      .nav-cta {
        display: none;
      }

      .menu-button {
        display: grid;
        place-items: center;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 70px;
      }

      .hero-copy {
        text-align: center;
      }

      .hero-copy > p,
      .hero-copy h1 {
        margin-left: auto;
        margin-right: auto;
      }

      .hero-actions,
      .hero-badges {
        justify-content: center;
      }

      .microwave-visual {
        min-height: 330px;
      }

      .microwave {
        width: min(80%, 430px);
      }

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

      .trust-item:nth-child(2) {
        border-right: 0;
      }

      .trust-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
      }

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

      .faults-grid,
      .contact-box {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 680px) {
      .container {
        width: min(calc(100% - 26px), var(--max));
      }

      .topbar-inner {
        justify-content: center;
        gap: 13px;
        font-size: .82rem;
      }

      .topbar .email-top {
        display: none;
      }

      .nav {
        min-height: 70px;
      }

      .nav-links {
        top: 70px;
      }

      .brand-mark {
        width: 40px;
        height: 40px;
      }

      .brand-text strong {
        font-size: 1.02rem;
      }

      .brand-text span {
        font-size: .65rem;
      }

      .hero-grid {
        min-height: auto;
        padding: 58px 0 65px;
      }

      h1 {
        font-size: clamp(2.18rem, 11vw, 3.25rem);
      }

      .hero-copy > p {
        font-size: 1rem;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .hero-badges {
        align-items: center;
        flex-direction: column;
        gap: 8px;
      }

      .microwave-visual {
        min-height: 270px;
      }

      .microwave {
        width: 94%;
        padding: 18px;
      }

      .microwave-front {
        grid-template-columns: 1fr 68px;
        gap: 11px;
        padding: 13px;
      }

      .floating-note {
        right: 0;
        bottom: -3px;
        font-size: .8rem;
      }

      .trust-strip {
        margin-top: 0;
      }

      .trust-grid {
        grid-template-columns: 1fr;
        border-radius: 0;
        box-shadow: none;
      }

      .trust-item,
      .trust-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .trust-item:last-child {
        border-bottom: 0;
      }

      section {
        padding: 70px 0;
      }

      .services-grid,
      .process-grid {
        grid-template-columns: 1fr;
      }

      .faults-grid {
        gap: 35px;
      }

      .fault-panel,
      .service-card {
        padding: 24px;
      }

      .contact-info,
      .hours {
        padding: 34px 25px;
      }

      .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
      }

      footer {
        margin-top: 70px;
        padding-bottom: 92px;
      }

      .mobile-call {
        position: fixed;
        z-index: 70;
        left: 13px;
        right: 13px;
        bottom: 13px;
        display: flex;
        min-height: 57px;
        border-radius: 14px;
        background: var(--orange);
        color: #172138;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-weight: 850;
        box-shadow: 0 15px 35px rgba(20,33,61,.28);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        transition: none !important;
      }
    }
