:root {
        --ink: #081421;
        --navy: #0c2237;
        --navy-2: #123452;
        --teal: #2ea6a0;
        --teal-dark: #1c7774;
        --amber: #ffbf3c;
        --cream: #f7f3ea;
        --paper: #fffaf0;
        --muted: #64748b;
        --line: rgba(8, 20, 33, 0.12);
        --shadow: 0 22px 60px rgba(8, 20, 33, 0.16);
        --radius: 26px;
        --max: 1180px;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        color: var(--ink);
        background: var(--cream);
        font-family:
          Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
          "Segoe UI", sans-serif;
        line-height: 1.66;
      }

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

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

      button,
      input,
      textarea {
        font: inherit;
      }

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

      .topbar {
        background: var(--ink);
        color: white;
        font-size: 14px;
      }

      .topbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 10px 0;
      }

      .topbar strong {
        color: var(--amber);
      }

      .topbar a {
        font-weight: 800;
      }

      .site-header {
        position: sticky;
        top: 0;
        z-index: 20;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(8, 20, 33, 0.08);
        backdrop-filter: blur(18px);
      }

      .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 34px;
        min-height: 132px;
        padding: 22px 0;
      }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-weight: 900;
        letter-spacing: -0.03em;
        font-size: 22px;
      }

      .brand-logo,
      .footer-logo {
        height: auto;
        object-fit: contain;
      }

      .brand-logo {
        width: clamp(190px, 18vw, 260px);
        max-height: 96px;
      }

      .footer-logo {
        width: 180px;
        max-height: none;
      }

      .nav {
        display: flex;
        align-items: center;
        gap: 30px;
        color: #050505;
        font-size: clamp(16px, 1.3vw, 22px);
        font-weight: 950;
        letter-spacing: -0.035em;
        line-height: 1;
        text-transform: uppercase;
      }

      .nav a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        white-space: nowrap;
      }

      .nav-trigger {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 0;
        color: inherit;
        background: transparent;
        border: 0;
        cursor: default;
        font: inherit;
        font-weight: inherit;
        letter-spacing: inherit;
        line-height: inherit;
        text-transform: inherit;
        white-space: nowrap;
      }

      .nav-item {
        position: relative;
      }

      .nav a::after,
      .nav-trigger::after {
        content: "";
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg) translateY(-2px);
      }

      .dropdown-menu {
        position: absolute;
        left: -18px;
        top: calc(100% + 22px);
        z-index: 30;
        display: grid;
        min-width: 340px;
        padding: 18px 0;
        color: #050505;
        background: white;
        border: 1px solid rgba(8, 20, 33, 0.1);
        border-radius: 0 0 18px 18px;
        box-shadow: 0 22px 50px rgba(8, 20, 33, 0.14);
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
        transition:
          opacity 160ms ease,
          transform 160ms ease;
      }

      .nav-item-dropdown:hover .dropdown-menu,
      .nav-item-dropdown:focus-within .dropdown-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .dropdown-menu a {
        display: block;
        padding: 18px 22px;
        font-size: 22px;
        font-weight: 950;
        letter-spacing: -0.05em;
        line-height: 1.1;
        text-transform: uppercase;
      }

      .dropdown-menu a::after {
        display: none;
      }

      .dropdown-menu a:hover {
        color: var(--teal-dark);
        background: var(--cream);
      }

      .nav a:hover {
        color: var(--teal-dark);
      }

      .nav-trigger:hover {
        color: var(--teal-dark);
      }

      .header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .header-actions .header-cta {
        min-height: 68px;
        padding: 0 38px;
        color: white;
        background: #df4d2a;
        border-radius: 999px;
        box-shadow: none;
        font-size: clamp(16px, 1.25vw, 21px);
        letter-spacing: -0.03em;
        text-transform: uppercase;
      }

      .header-actions .header-cta:hover {
        box-shadow: 0 14px 28px rgba(223, 77, 42, 0.24);
      }

      .phone-link {
        color: var(--navy);
        font-weight: 900;
        white-space: nowrap;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 0 20px;
        border: 2px solid transparent;
        border-radius: 999px;
        font-weight: 900;
        line-height: 1;
        transition:
          transform 180ms ease,
          box-shadow 180ms ease,
          background 180ms ease;
      }

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

      .btn-primary {
        color: var(--ink);
        background: var(--amber);
        box-shadow: 0 10px 22px rgba(255, 191, 60, 0.28);
      }

      .btn-primary:hover {
        box-shadow: 0 14px 28px rgba(255, 191, 60, 0.38);
      }

      .btn-dark {
        color: white;
        background: var(--ink);
      }

      .btn-outline {
        color: white;
        border-color: rgba(255, 255, 255, 0.42);
      }

      .menu-toggle {
        display: none;
        border: 0;
        border-radius: 999px;
        background: var(--ink);
        color: white;
        padding: 12px 16px;
        font-weight: 900;
      }

      .hero {
        position: relative;
        overflow: hidden;
        color: var(--ink);
        background:
          radial-gradient(circle at 12% 18%, rgba(255, 191, 60, 0.22), transparent 28%),
          radial-gradient(circle at 86% 10%, rgba(46, 166, 160, 0.22), transparent 30%),
          linear-gradient(180deg, #fffdf7 0%, #f7f3ea 100%);
      }

      .hero::after {
        content: "";
        position: absolute;
        inset: 12% -16% auto auto;
        width: 520px;
        height: 520px;
        background: rgba(46, 166, 160, 0.12);
        border: 1px solid rgba(46, 166, 160, 0.18);
        border-radius: 50%;
      }

      .hero-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
        gap: 54px;
        align-items: center;
        padding: 76px 0 68px;
      }

      .hero h1 {
        text-transform: uppercase;
      }

      .hero .eyebrow {
        color: var(--teal-dark);
        background: rgba(46, 166, 160, 0.1);
        border-color: rgba(46, 166, 160, 0.2);
      }

      .hero .hero-lede {
        color: #445166;
      }

      .hero .hero-checks li {
        color: var(--ink);
        background: white;
        border-color: rgba(8, 20, 33, 0.12);
        box-shadow: 0 10px 24px rgba(8, 20, 33, 0.06);
      }

      .hero .btn-outline {
        color: var(--ink);
        border-color: rgba(8, 20, 33, 0.24);
      }

      .hero .hero-note {
        color: #667085;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        padding: 8px 12px;
        color: #dff9f7;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 999px;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .dot {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: var(--amber);
        box-shadow: 0 0 0 6px rgba(255, 191, 60, 0.18);
      }

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

      h1 {
        max-width: 780px;
        margin-bottom: 22px;
        font-size: clamp(46px, 8vw, 84px);
        line-height: 1.04;
        letter-spacing: -0.045em;
      }

      .hero-lede {
        max-width: 650px;
        margin-bottom: 28px;
        color: rgba(255, 255, 255, 0.82);
        font-size: clamp(18px, 2.2vw, 21px);
      }

      .hero-checks {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin: 0 0 30px;
        padding: 0;
        list-style: none;
      }

      .hero-checks li {
        padding: 14px 14px;
        color: #f4fffe;
        background: rgba(255, 255, 255, 0.11);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 18px;
        font-size: 14px;
        font-weight: 800;
      }

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

      .hero-note {
        color: rgba(255, 255, 255, 0.72);
        font-size: 14px;
        font-weight: 700;
      }

      .hero-visual {
        position: relative;
        min-height: 560px;
      }

      .job-card {
        position: absolute;
        inset: 0 0 auto auto;
        width: min(100%, 500px);
        min-height: 500px;
        padding: 22px;
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.92)),
          #ffffff;
        border: 1px solid rgba(8, 20, 33, 0.12);
        border-radius: 36px;
        box-shadow: var(--shadow);
      }

      .photo-panel {
        position: relative;
        overflow: hidden;
        min-height: 330px;
        border-radius: 26px;
        background:
          linear-gradient(180deg, rgba(8, 20, 33, 0.08), rgba(8, 20, 33, 0.18)),
          url("../images/official-images/hero-solar-battery.png") center / cover no-repeat;
      }

      .photo-panel::before {
        content: "";
        position: absolute;
        right: 34px;
        bottom: -18px;
        width: 190px;
        height: 270px;
        background:
          linear-gradient(#f0b57f 0 14%, transparent 15%),
          linear-gradient(90deg, transparent 0 32%, #153d63 33% 66%, transparent 67%),
          linear-gradient(135deg, #1e547e, #0e2d4d);
        border-radius: 44px 44px 20px 20px;
        box-shadow: -26px 18px 0 rgba(255, 191, 60, 0.75);
      }

      .photo-panel::after {
        content: "";
        position: absolute;
        left: 30px;
        bottom: 44px;
        width: 190px;
        height: 118px;
        background:
          linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px) 0 0 / 24px 100%,
          linear-gradient(#26384b, #172638);
        border: 7px solid #f4f7f6;
        border-radius: 18px;
        box-shadow: 0 24px 36px rgba(0, 0, 0, 0.2);
      }

      .photo-panel::before,
      .photo-panel::after {
        display: none;
      }

      .rating-card,
      .emergency-card {
        position: absolute;
        z-index: 2;
        color: var(--ink);
        background: white;
        border-radius: 24px;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
      }

      .rating-card {
        left: -16px;
        bottom: 108px;
        width: 224px;
        padding: 18px;
      }

      .rating-card strong {
        display: block;
        margin-bottom: 2px;
        font-size: 34px;
        line-height: 1;
        letter-spacing: -0.05em;
      }

      .stars {
        color: #f7a900;
        letter-spacing: 2px;
        font-weight: 900;
      }

      .emergency-card {
        right: -18px;
        bottom: 36px;
        width: 250px;
        padding: 18px;
      }

      .emergency-card span {
        display: block;
        color: var(--teal-dark);
        font-size: 13px;
        font-weight: 950;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .emergency-card strong {
        display: block;
        margin-top: 6px;
        font-size: 24px;
        letter-spacing: -0.04em;
      }

      .mini-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 16px;
      }

      .mini-list div {
        padding: 12px;
        color: var(--ink);
        background: var(--cream);
        border-radius: 16px;
        font-size: 13px;
        font-weight: 800;
      }

      .trust-strip {
        position: relative;
        z-index: 2;
        margin-top: -1px;
        padding: 18px 0;
        color: white;
        background: var(--ink);
      }

      .trust-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 12px;
      }

      .trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: 64px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 18px;
        font-size: 13px;
        font-weight: 850;
      }

      .trust-icon {
        display: grid;
        flex: 0 0 auto;
        place-items: center;
        width: 34px;
        height: 34px;
        color: var(--ink);
        background: var(--amber);
        border-radius: 12px;
        font-weight: 950;
      }

      .brand-promo {
        padding: 72px 0 0;
        background: var(--paper);
      }

      .homepage-promo {
        padding: 32px 0 78px;
        background: linear-gradient(180deg, #fffdf7 0%, var(--paper) 100%);
      }

      .homepage-promo + .hero .hero-grid {
        padding-top: 64px;
      }

      .promo-carousel-head {
        display: flex;
        justify-content: space-between;
        gap: 24px;
        align-items: end;
        margin-bottom: 24px;
      }

      .promo-carousel-head h2 {
        max-width: 760px;
        color: var(--ink);
      }

      .promo-controls {
        display: flex;
        gap: 10px;
        flex: 0 0 auto;
      }

      .promo-arrow {
        display: grid;
        place-items: center;
        width: 50px;
        height: 50px;
        color: white;
        background: var(--ink);
        border: 0;
        border-radius: 50%;
        cursor: pointer;
        font-size: 34px;
        line-height: 1;
      }

      .promo-track {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
      }

      .promo-track::-webkit-scrollbar {
        display: none;
      }

      .promo-slide {
        flex: 0 0 100%;
        scroll-snap-align: start;
      }

      .promo-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 18px;
      }

      .promo-dot {
        width: 11px;
        height: 11px;
        padding: 0;
        background: rgba(8, 20, 33, 0.25);
        border: 0;
        border-radius: 50%;
        cursor: pointer;
      }

      .promo-dot.is-active {
        width: 34px;
        background: var(--ink);
        border-radius: 999px;
      }

      .promo-panel {
        position: relative;
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 28px;
        overflow: hidden;
        min-height: 520px;
        color: white;
        background:
          radial-gradient(circle at 82% 20%, rgba(30, 105, 150, 0.34), transparent 30%),
          radial-gradient(circle at 90% 88%, rgba(255, 105, 0, 0.24), transparent 24%),
          linear-gradient(110deg, #030303 0%, #080b0f 44%, #132033 100%);
        border-radius: 34px;
        box-shadow: 0 28px 70px rgba(3, 7, 12, 0.32);
      }

      .promo-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.54), transparent 58%);
        pointer-events: none;
      }

      .promo-copy,
      .promo-visual {
        position: relative;
        z-index: 1;
      }

      .promo-copy {
        padding: clamp(34px, 5vw, 64px);
      }

      .promo-kicker {
        margin-bottom: 18px;
        color: #ff6a00;
        font-size: 13px;
        font-weight: 950;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .promo-capacity {
        display: block;
        margin-bottom: 14px;
        color: #ff6a00;
        font-size: clamp(76px, 11vw, 150px);
        line-height: 0.86;
        letter-spacing: -0.08em;
      }

      .promo-copy h2,
      .promo-copy h3 {
        max-width: 680px;
        color: white;
        font-size: clamp(34px, 4.2vw, 64px);
        line-height: 0.98;
        letter-spacing: -0.06em;
        text-transform: uppercase;
      }

      .promo-subtitle {
        margin-top: 12px;
        margin-bottom: 26px;
        color: rgba(255, 255, 255, 0.9);
        font-size: clamp(24px, 3vw, 42px);
        line-height: 1.08;
        letter-spacing: -0.035em;
        text-transform: uppercase;
      }

      .promo-price {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: baseline;
        margin-bottom: 8px;
        text-transform: uppercase;
      }

      .promo-price span {
        color: white;
        font-size: clamp(18px, 2vw, 28px);
        font-weight: 950;
        letter-spacing: -0.02em;
      }

      .promo-price strong {
        color: #ff6a00;
        font-size: clamp(54px, 7vw, 92px);
        line-height: 0.9;
        letter-spacing: -0.07em;
      }

      .promo-qualifier {
        margin-bottom: 22px;
        color: rgba(255, 255, 255, 0.86);
        font-size: 17px;
        font-weight: 800;
        letter-spacing: 0.03em;
        text-transform: uppercase;
      }

      .promo-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
      }

      .promo-note {
        margin-top: 22px;
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.72);
        font-size: 14px;
      }

      .promo-visual {
        overflow: hidden;
        min-height: 420px;
        padding: 0;
      }

      .promo-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 1;
      }

      section {
        padding: 86px 0;
      }

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

      .section-kicker {
        margin-bottom: 10px;
        color: var(--teal-dark);
        font-size: 13px;
        font-weight: 950;
        letter-spacing: 0.13em;
        text-transform: uppercase;
      }

      h2 {
        max-width: 780px;
        margin-bottom: 0;
        font-size: clamp(34px, 5vw, 58px);
        line-height: 1.08;
        letter-spacing: -0.035em;
      }

      .section-text {
        max-width: 510px;
        margin-bottom: 0;
        color: var(--muted);
        font-size: 17px;
      }

      .intro-grid {
        display: grid;
        grid-template-columns: 0.82fr 1.18fr;
        gap: 42px;
        align-items: stretch;
      }

      .founder-card {
        position: relative;
        overflow: hidden;
        min-height: 520px;
        padding: 28px;
        color: white;
        background:
          radial-gradient(circle at 18% 14%, rgba(255, 191, 60, 0.28), transparent 26%),
          linear-gradient(145deg, #0a1725, #133959 56%, #1d7874);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
      }

      .founder-card::after {
        content: "";
        position: absolute;
        right: -34px;
        bottom: -58px;
        width: 320px;
        height: 410px;
        background:
          linear-gradient(#eab07b 0 16%, transparent 17%),
          linear-gradient(125deg, #ffc64c 0 28%, #153d63 29% 100%);
        border-radius: 90px 90px 36px 36px;
        box-shadow: -38px 18px 0 rgba(255, 255, 255, 0.11);
      }

      .founder-card .badge {
        position: relative;
        z-index: 1;
        display: inline-flex;
        margin-bottom: 250px;
        padding: 10px 14px;
        color: var(--ink);
        background: var(--amber);
        border-radius: 999px;
        font-weight: 950;
      }

      .founder-card h3,
      .founder-card p {
        position: relative;
        z-index: 1;
      }

      .founder-card h3 {
        margin-bottom: 10px;
        font-size: 34px;
        line-height: 1.08;
        letter-spacing: -0.035em;
      }

      .founder-card p {
        max-width: 320px;
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.76);
      }

      .copy-panel {
        padding: 38px;
        background: white;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: 0 14px 40px rgba(8, 20, 33, 0.08);
      }

      .copy-panel h2 {
        margin-bottom: 22px;
      }

      .copy-panel p {
        color: #445166;
        font-size: 17px;
      }

      .signature {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 18px;
        margin-top: 28px;
        padding-top: 24px;
        border-top: 1px solid var(--line);
      }

      .signature strong {
        display: block;
        font-size: 18px;
      }

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

      .services {
        background: var(--paper);
      }

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

      .service-card {
        overflow: hidden;
        background: white;
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: 0 14px 35px rgba(8, 20, 33, 0.08);
      }

      .service-art {
        min-height: 170px;
        background:
          linear-gradient(180deg, rgba(8, 20, 33, 0.08), rgba(8, 20, 33, 0.2)),
          url("../images/official-images/solar-panel.jpg") center / cover no-repeat;
      }

      .service-card:nth-child(2) .service-art {
        background:
          linear-gradient(180deg, rgba(8, 20, 33, 0.04), rgba(8, 20, 33, 0.22)),
          url("../images/official-images/battery.webp") center / cover no-repeat;
      }

      .service-card:nth-child(3) .service-art {
        background:
          linear-gradient(180deg, rgba(8, 20, 33, 0.04), rgba(8, 20, 33, 0.22)),
          url("../images/official-images/home-system.webp") center / cover no-repeat;
      }

      .service-card:nth-child(4) .service-art {
        background:
          linear-gradient(180deg, rgba(8, 20, 33, 0.04), rgba(8, 20, 33, 0.24)),
          url("../images/official-images/ev.jpg") center / cover no-repeat;
      }

      .service-card:nth-child(5) .service-art {
        background:
          linear-gradient(180deg, rgba(8, 20, 33, 0.04), rgba(8, 20, 33, 0.22)),
          url("../images/official-images/consultation.webp") center / cover no-repeat;
      }

      .service-body {
        padding: 24px;
      }

      .service-body h3 {
        margin-bottom: 10px;
        font-size: 24px;
        line-height: 1.18;
        letter-spacing: -0.025em;
      }

      .service-body p {
        margin-bottom: 20px;
        color: var(--muted);
      }

      .text-link {
        color: var(--teal-dark);
        font-weight: 950;
      }

      .brand-showcase {
        padding: 0 0 86px;
        background: var(--paper);
      }

      .brand-showcase-panel {
        overflow: hidden;
        padding: 34px 0;
        background: white;
        border: 1px solid var(--line);
        border-radius: 28px;
        box-shadow: 0 14px 35px rgba(8, 20, 33, 0.08);
      }

      .brand-showcase-head {
        display: flex;
        justify-content: space-between;
        gap: 24px;
        align-items: end;
        margin-bottom: 26px;
        padding: 0 30px;
      }

      .brand-showcase-head h2 {
        font-size: clamp(30px, 4vw, 46px);
      }

      .brand-showcase-head p {
        max-width: 440px;
        margin-bottom: 0;
        color: var(--muted);
      }

      .brand-source {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-top: 16px;
        padding: 10px 14px;
        color: var(--muted);
        background: var(--cream);
        border: 1px solid var(--line);
        border-radius: 999px;
        font-size: 13px;
        font-weight: 850;
      }

      .brand-source img {
        width: 88px;
        height: auto;
      }

      .brand-row {
        display: grid;
        gap: 10px;
        margin-top: 18px;
      }

      .brand-row-label {
        padding: 0 30px;
        color: var(--teal-dark);
        font-size: 13px;
        font-weight: 950;
        letter-spacing: 0.13em;
        text-transform: uppercase;
      }

      .brand-marquee {
        position: relative;
        overflow: hidden;
      }

      .brand-marquee::before,
      .brand-marquee::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        z-index: 2;
        width: 90px;
        pointer-events: none;
      }

      .brand-marquee::before {
        left: 0;
        background: linear-gradient(90deg, white, rgba(255, 255, 255, 0));
      }

      .brand-marquee::after {
        right: 0;
        background: linear-gradient(270deg, white, rgba(255, 255, 255, 0));
      }

      .brand-track {
        display: flex;
        width: max-content;
        gap: 14px;
        padding: 4px 0;
        animation: brand-scroll 42s linear infinite;
      }

      .brand-marquee:hover .brand-track {
        animation-play-state: paused;
      }

      .brand-pill {
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        width: 190px;
        height: 96px;
        padding: 18px 24px;
        color: var(--ink);
        background: white;
        border: 1px solid var(--line);
        border-radius: 22px;
        text-align: center;
        box-shadow: 0 10px 24px rgba(8, 20, 33, 0.06);
      }

      .brand-pill img {
        width: 100%;
        max-height: 54px;
        object-fit: contain;
      }

      @keyframes brand-scroll {
        from {
          transform: translateX(0);
        }

        to {
          transform: translateX(calc(-50% - 7px));
        }
      }

      @media (prefers-reduced-motion: reduce) {
        .brand-track {
          animation: none;
          flex-wrap: wrap;
          justify-content: center;
          padding: 0 20px;
        }
      }

      .difference {
        color: white;
        background:
          radial-gradient(circle at 14% 20%, rgba(255, 191, 60, 0.18), transparent 28%),
          linear-gradient(145deg, #081421, #123452 62%, #103f42);
      }

      .difference .section-kicker,
      .difference .section-text {
        color: rgba(255, 255, 255, 0.72);
      }

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

      .difference-card {
        padding: 28px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 24px;
      }

      .difference-card span {
        display: grid;
        place-items: center;
        width: 46px;
        height: 46px;
        margin-bottom: 24px;
        color: var(--ink);
        background: var(--amber);
        border-radius: 16px;
        font-weight: 950;
      }

      .difference-card h3 {
        margin-bottom: 10px;
        font-size: 24px;
        letter-spacing: -0.025em;
      }

      .difference-card p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.72);
      }

      .process-grid {
        display: grid;
        grid-template-columns: 0.86fr 1.14fr;
        gap: 30px;
        align-items: start;
      }

      .process-callout {
        position: sticky;
        top: 110px;
        padding: 34px;
        color: white;
        background: var(--teal-dark);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
      }

      .process-callout strong {
        display: block;
        margin-bottom: 14px;
        font-size: 42px;
        line-height: 1.04;
        letter-spacing: -0.035em;
      }

      .steps {
        display: grid;
        gap: 14px;
      }

      .step {
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 18px;
        padding: 24px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 22px;
      }

      .step-number {
        display: grid;
        place-items: center;
        width: 54px;
        height: 54px;
        color: white;
        background: var(--ink);
        border-radius: 18px;
        font-weight: 950;
      }

      .step h3 {
        margin-bottom: 6px;
        font-size: 22px;
        letter-spacing: -0.025em;
      }

      .step p {
        margin-bottom: 0;
        color: var(--muted);
      }

      .standards {
        background: var(--paper);
      }

      .standards-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
      }

      .standard-box {
        padding: 26px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 24px;
      }

      .standard-box h3 {
        margin-bottom: 8px;
        font-size: 22px;
        letter-spacing: -0.025em;
      }

      .standard-box p {
        margin-bottom: 0;
        color: var(--muted);
      }

      .about-gallery {
        background: var(--paper);
      }

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

      .gallery-card {
        overflow: hidden;
        background: white;
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: 0 12px 30px rgba(8, 20, 33, 0.07);
      }

      .gallery-card img {
        width: 100%;
        height: 210px;
        object-fit: cover;
      }

      .gallery-card div {
        padding: 22px;
      }

      .gallery-card h3 {
        margin-bottom: 8px;
        font-size: 22px;
        line-height: 1.14;
        letter-spacing: -0.025em;
      }

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

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

      .quote {
        padding: 26px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: 0 10px 28px rgba(8, 20, 33, 0.07);
      }

      .quote .stars {
        margin-bottom: 18px;
      }

      .quote p {
        color: #3d4a5c;
      }

      .quote footer {
        color: var(--ink);
        font-weight: 950;
      }

      .areas {
        color: white;
        background: var(--ink);
      }

      .areas .section-kicker,
      .areas .section-text {
        color: rgba(255, 255, 255, 0.72);
      }

      .area-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 12px;
        margin-top: 28px;
      }

      .area-grid a {
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 16px;
        font-weight: 850;
      }

      .area-grid a:hover {
        background: rgba(46, 166, 160, 0.28);
      }

      .faq-grid {
        display: grid;
        grid-template-columns: 0.78fr 1.22fr;
        gap: 34px;
      }

      .faq-card {
        padding: 30px;
        color: white;
        background: linear-gradient(145deg, var(--navy), var(--teal-dark));
        border-radius: var(--radius);
      }

      .faq-card h2 {
        margin-bottom: 18px;
      }

      .faq-card p {
        color: rgba(255, 255, 255, 0.76);
      }

      .faq-list {
        display: grid;
        gap: 12px;
      }

      details {
        background: white;
        border: 1px solid var(--line);
        border-radius: 18px;
      }

      summary {
        cursor: pointer;
        padding: 20px 22px;
        font-weight: 950;
        list-style: none;
      }

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

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

      .final-cta {
        padding: 0;
      }

      .cta-panel {
        transform: translateY(58px);
        display: grid;
        grid-template-columns: 1.2fr auto;
        gap: 24px;
        align-items: center;
        padding: 36px;
        color: var(--ink);
        background: var(--amber);
        border: 3px solid var(--ink);
        border-radius: 30px;
        box-shadow: 10px 10px 0 var(--teal-dark);
      }

      .cta-panel h2 {
        max-width: 680px;
        margin-bottom: 12px;
        font-size: clamp(32px, 5vw, 54px);
      }

      .cta-panel p {
        margin-bottom: 0;
        color: rgba(8, 20, 33, 0.72);
        font-weight: 750;
      }

      .site-footer {
        padding: 118px 0 34px;
        color: rgba(255, 255, 255, 0.78);
        background: var(--ink);
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 1.1fr repeat(3, 1fr);
        gap: 28px;
        padding-bottom: 36px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      }

      .site-footer h3 {
        margin-bottom: 14px;
        color: white;
        font-size: 16px;
      }

      .site-footer ul {
        display: grid;
        gap: 8px;
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .footer-brand {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        color: white;
        font-size: 22px;
        font-weight: 950;
        letter-spacing: -0.03em;
      }

      .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .social-links a {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        color: white;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 50%;
      }

      .social-links a:hover {
        background: rgba(46, 166, 160, 0.28);
      }

      .social-links svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
      }

      .copyright {
        display: flex;
        justify-content: space-between;
        gap: 18px;
        padding-top: 22px;
        font-size: 14px;
      }

      .phone-modal-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1000;
        display: none;
        place-items: center;
        padding: 24px;
        background: rgba(8, 20, 33, 0.66);
        backdrop-filter: blur(8px);
      }

      .phone-modal-backdrop.is-open {
        display: grid;
      }

      .phone-modal {
        position: relative;
        width: min(100%, 430px);
        padding: 30px;
        color: var(--ink);
        background: white;
        border: 2px solid var(--ink);
        border-radius: 28px;
        box-shadow: 10px 10px 0 var(--teal-dark);
      }

      .phone-modal-close {
        position: absolute;
        top: 14px;
        right: 14px;
        display: grid;
        place-items: center;
        width: 36px;
        height: 36px;
        color: white;
        background: var(--ink);
        border: 0;
        border-radius: 50%;
        cursor: pointer;
        font-weight: 950;
      }

      .phone-modal h2 {
        margin-bottom: 10px;
        font-size: clamp(32px, 6vw, 44px);
      }

      .phone-modal p {
        margin-bottom: 22px;
        color: var(--muted);
      }

      .phone-modal .btn {
        width: 100%;
      }

      body.phone-modal-open {
        overflow: hidden;
      }

      .mobile-call {
        display: none;
      }

      @media (max-width: 1040px) {
        .nav,
        .header-actions .phone-link {
          display: none;
        }

        .menu-toggle {
          display: inline-flex;
        }

        body.menu-open .nav {
          position: absolute;
          left: 20px;
          right: 20px;
          top: 120px;
          display: grid;
          gap: 0;
          padding: 14px;
          background: white;
          border: 1px solid var(--line);
          border-radius: 20px;
          box-shadow: var(--shadow);
        }

        body.menu-open .nav a {
          padding: 13px 10px;
        }

        body.menu-open .nav-trigger {
          padding: 13px 10px;
        }

        body.menu-open .nav-item {
          display: grid;
        }

        body.menu-open .dropdown-menu {
          position: static;
          min-width: 0;
          padding: 0 0 8px 16px;
          background: var(--cream);
          border: 0;
          border-radius: 14px;
          box-shadow: none;
          opacity: 1;
          pointer-events: auto;
          transform: none;
        }

        body.menu-open .dropdown-menu a {
          padding: 10px 12px;
          font-size: 17px;
        }

        .hero-grid,
        .intro-grid,
        .process-grid,
        .faq-grid {
          grid-template-columns: 1fr;
        }

        .hero-visual {
          min-height: 520px;
        }

        .promo-panel {
          grid-template-columns: 1fr;
        }

        .promo-carousel-head {
          display: block;
        }

        .promo-controls {
          margin-top: 16px;
        }

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

        .job-card {
          left: 0;
          right: 0;
          margin-inline: auto;
        }

        .trust-grid,
        .service-grid,
        .gallery-grid,
        .difference-grid,
        .testimonials-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .process-callout {
          position: static;
        }

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

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

      @media (max-width: 720px) {
        .container {
          width: min(100% - 28px, var(--max));
        }

        .topbar .container {
          align-items: flex-start;
          flex-direction: column;
          gap: 4px;
        }

        .brand span:last-child {
          display: none;
        }

        .header-actions .btn {
          display: none;
        }

        .header-inner {
          min-height: 92px;
          padding: 14px 0;
        }

        .brand-logo {
          width: 170px;
          max-height: 72px;
        }

        .hero-grid {
          padding: 62px 0 46px;
        }

        .brand-promo {
          padding-top: 42px;
        }

        .homepage-promo {
          padding: 24px 0 48px;
        }

        .promo-panel {
          min-height: 0;
          border-radius: 24px;
        }

        .promo-copy {
          padding: 30px;
        }

        .promo-capacity {
          font-size: 68px;
        }

        .promo-copy h2,
        .promo-copy h3 {
          font-size: 32px;
        }

        .promo-subtitle {
          font-size: 22px;
        }

        .promo-price strong {
          font-size: 52px;
        }

        .promo-qualifier {
          font-size: 14px;
        }

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

        .promo-visual {
          display: none;
        }

        .hero-checks,
        .trust-grid,
        .service-grid,
        .gallery-grid,
        .difference-grid,
        .standards-grid,
        .testimonials-grid,
        .area-grid,
        .footer-grid {
          grid-template-columns: 1fr;
        }

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

        .hero-visual {
          min-height: 470px;
        }

        .job-card {
          min-height: 450px;
          padding: 16px;
          border-radius: 26px;
        }

        .photo-panel {
          min-height: 280px;
        }

        .rating-card,
        .emergency-card {
          position: relative;
          left: auto;
          right: auto;
          bottom: auto;
          width: auto;
          margin-top: 12px;
        }

        .mini-list {
          display: none;
        }

        section {
          padding: 64px 0;
        }

        .section-head {
          display: block;
        }

        .section-text {
          margin-top: 16px;
        }

        .brand-showcase {
          padding: 0 0 64px;
        }

        .brand-showcase-head {
          display: block;
          padding: 0 22px;
        }

        .brand-showcase-head p {
          margin-top: 14px;
        }

        .brand-row-label {
          padding: 0 22px;
        }

        .brand-marquee::before,
        .brand-marquee::after {
          width: 42px;
        }

        .brand-pill {
          width: 150px;
          height: 78px;
          padding: 14px 18px;
        }

        .brand-pill img {
          max-height: 44px;
        }

        .copy-panel,
        .process-callout,
        .faq-card,
        .cta-panel {
          padding: 26px;
        }

        .founder-card {
          min-height: 470px;
        }

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

        .cta-panel {
          grid-template-columns: 1fr;
          transform: translateY(42px);
          box-shadow: 6px 6px 0 var(--teal-dark);
        }

        .copyright {
          flex-direction: column;
        }

        .mobile-call {
          position: fixed;
          right: 14px;
          bottom: 14px;
          z-index: 30;
          display: inline-flex;
          color: var(--ink);
          background: var(--amber);
          border: 2px solid var(--ink);
          box-shadow: 4px 4px 0 var(--teal-dark);
        }
      }
