:root {
        --black: #111;
        --dark: #1a1a1f;
        --white: #fff;
        --off-white: #f7f7f5;
        --cream: #efeee8;
        --accent: #b8e600;
        --accent-dark: #8fb800;
        --accent-bright: #d4ff2a;
        --charcoal: #2d2d33;
        --text-dark: #1a1a1f;
        --text-mid: #555;
        --text-light: #888;
        --border: rgba(0, 0, 0, 0.08);
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "Outfit", sans-serif;
        background: var(--white);
        color: var(--text-dark);
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
      }
      ::-webkit-scrollbar {
        width: 5px;
      }
      ::-webkit-scrollbar-track {
        background: var(--off-white);
      }
      ::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 3px;
      }
      .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 clamp(24px, 5vw, 80px);
      }
      .tag {
        display: inline-block;
        font-family: "Space Mono", monospace;
        font-size: 0.68rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--accent-dark);
        border: 1.5px solid var(--accent);
        padding: 6px 18px;
        border-radius: 100px;
        background: rgba(184, 230, 0, 0.08);
      }
      .tag-light {
        display: inline-block;
        font-family: "Space Mono", monospace;
        font-size: 0.68rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--accent-bright);
        border: 1.5px solid rgba(212, 255, 42, 0.3);
        padding: 6px 18px;
        border-radius: 100px;
      }
      .accent {
        color: var(--accent-dark);
      }
      .section-dark .accent,
      .section-charcoal .accent {
        color: var(--accent);
      }
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(40px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes marquee {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }
      @keyframes float {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px);
        }
      }
      @keyframes pulse-glow {
        0%, 100% {
          box-shadow: 0 0 20px rgba(184, 230, 0, 0.15);
        }
        50% {
          box-shadow: 0 0 40px rgba(184, 230, 0, 0.3);
        }
      }
      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .reveal-delay-1 {
        transition-delay: 0.1s;
      }
      .reveal-delay-2 {
        transition-delay: 0.2s;
      }
      .reveal-delay-3 {
        transition-delay: 0.3s;
      }
      .reveal-delay-4 {
        transition-delay: 0.4s;
      }

      /* NAV */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 18px 0;
        transition: all 0.4s;
      }
      nav.scrolled {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 12px 0;
        box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
      }
      nav .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .nav-logo img {
        height: 34px;
        transition: filter 0.3s;
      }
      nav:not(.scrolled) .nav-logo img {
        filter: brightness(0) invert(1);
      }
      .nav-links {
        display: flex;
        align-items: center;
        gap: 28px;
        list-style: none;
      }
      .nav-links a {
        color: var(--white);
        text-decoration: none;
        font-size: 0.82rem;
        font-weight: 500;
        transition: all 0.3s;
        position: relative;
      }
      nav.scrolled .nav-links a {
        color: var(--text-dark);
      }
      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1.5px;
        background: var(--accent);
        transition: width 0.3s;
      }
      .nav-links a:hover::after {
        width: 100%;
      }
      .nav-links a:hover {
        color: var(--accent-dark);
      }
      .nav-cta {
        background: var(--accent) !important;
        color: var(--black) !important;
        padding: 10px 26px !important;
        border-radius: 100px;
        font-weight: 700 !important;
        font-size: 0.82rem !important;
        transition: all 0.3s !important;
      }
      .nav-cta::after {
        display: none !important;
      }
      .nav-cta:hover {
        background: var(--accent-dark) !important;
        transform: scale(1.05);
      }
      .mobile-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        z-index: 1001;
      }
      .mobile-toggle span {
        width: 24px;
        height: 2px;
        background: var(--white);
        transition: all 0.3s;
      }
      nav.scrolled .mobile-toggle span {
        background: var(--text-dark);
      }
      .mobile-toggle.active span {
        background: var(--white) !important;
      }
      .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }
      .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
      }
      .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
      }
      .mobile-menu {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--dark);
        z-index: 999;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
      }
      .mobile-menu.active {
        display: flex;
      }
      .mobile-menu a {
        color: var(--white);
        text-decoration: none;
        font-size: 1.4rem;
        font-weight: 600;
        transition: color 0.3s;
      }
      .mobile-menu a:hover {
        color: var(--accent);
      }
      @media (max-width: 900px) {
        .nav-links {
          display: none;
        }
        .mobile-toggle {
          display: flex;
        }
      }

      /* HERO */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding-top: 80px;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        overflow: hidden;
      }
      .hero-bg video,
      .hero-bg img {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
        filter: brightness(0.4) saturate(0.8);
      }
      .hero-bg img {
        z-index: 0;
      }
      .hero-bg video {
        z-index: 1;
      }
      .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          180deg,
          rgba(10, 10, 10, 0.4) 0%,
          rgba(10, 10, 10, 0.2) 40%,
          rgba(10, 10, 10, 0.9) 100%
        );
      }
      .hero-content {
        position: relative;
        z-index: 2;
        padding: 60px 0 100px;
      }
      .hero-eyebrow {
        animation: fadeUp 0.8s ease both;
        animation-delay: 0.2s;
        margin-bottom: 24px;
      }
      .hero h1 {
        font-size: clamp(2.8rem, 7.5vw, 7rem);
        font-weight: 900;
        line-height: 0.95;
        letter-spacing: -0.03em;
        color: var(--white);
        animation: fadeUp 0.8s ease both;
        animation-delay: 0.4s;
        margin-bottom: 24px;
      }
      .hero h1 .line-accent {
        display: block;
        color: var(--accent);
        font-style: italic;
      }
      .hero p {
        font-size: clamp(0.95rem, 1.6vw, 1.2rem);
        color: rgba(255, 255, 255, 0.7);
        max-width: 500px;
        line-height: 1.6;
        animation: fadeUp 0.8s ease both;
        animation-delay: 0.6s;
      }
      .hero-ctas {
        display: flex;
        gap: 14px;
        margin-top: 36px;
        animation: fadeUp 0.8s ease both;
        animation-delay: 0.8s;
        flex-wrap: wrap;
      }
      .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--accent);
        color: var(--black);
        padding: 15px 34px;
        border-radius: 100px;
        font-weight: 700;
        font-size: 0.92rem;
        text-decoration: none;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        font-family: "Outfit", sans-serif;
      }
      .btn-primary:hover {
        background: var(--accent-bright);
        transform: translateY(-2px);
        box-shadow: 0 10px 40px rgba(184, 230, 0, 0.25);
      }
      .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: var(--white);
        padding: 15px 34px;
        border-radius: 100px;
        font-weight: 600;
        font-size: 0.92rem;
        text-decoration: none;
        border: 1.5px solid rgba(255, 255, 255, 0.25);
        transition: all 0.3s;
      }
      .btn-secondary:hover {
        border-color: var(--accent);
        color: var(--accent);
      }
      .btn-outline-dark {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        color: var(--text-dark);
        padding: 15px 34px;
        border-radius: 100px;
        font-weight: 600;
        font-size: 0.92rem;
        text-decoration: none;
        border: 1.5px solid var(--border);
        transition: all 0.3s;
      }
      .btn-outline-dark:hover {
        border-color: var(--accent);
        color: var(--accent-dark);
        background: rgba(184, 230, 0, 0.06);
      }
      .hero-stats {
        display: flex;
        gap: 0;
        margin-top: 70px;
        animation: fadeUp 0.8s ease both;
        animation-delay: 1s;
        flex-wrap: wrap;
      }
      .hero-stat {
        padding: 20px 30px;
        border-left: 2px solid rgba(184, 230, 0, 0.3);
        position: relative;
      }
      .hero-stat:first-child {
        border-left: none;
        padding-left: 0;
      }
      .hero-stat h3 {
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 800;
        color: var(--accent);
        line-height: 1;
      }
      .hero-stat p {
        font-size: 0.72rem;
        font-family: "Space Mono", monospace;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: rgba(255, 255, 255, 0.6);
        margin-top: 6px;
        max-width: 140px;
      }
      .hero-badge-text {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(184, 230, 0, 0.12);
        border: 1.5px solid rgba(184, 230, 0, 0.3);
        backdrop-filter: blur(12px);
        padding: 12px 20px;
        border-radius: 100px;
        margin-top: 28px;
        animation: fadeUp 0.8s ease both;
        animation-delay: 1.2s;
      }
      .hero-badge-text svg {
        color: var(--accent);
        flex-shrink: 0;
      }
      .hero-badge-text span {
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--white);
        white-space: nowrap;
        letter-spacing: 0.01em;
      }
      @media (max-width: 768px) {
        .hero-content {
          padding: 60px 16px 80px;
          text-align: center;
        }
        .hero h1 {
          margin-left: auto;
          margin-right: auto;
        }
        .hero p {
          margin-left: auto;
          margin-right: auto;
        }
        .hero-ctas {
          justify-content: center;
        }
        .hero-badge-text {
          margin-top: 20px;
        }
        .hero-stats {
          justify-content: center;
          gap: 0;
          margin-top: 40px;
          padding-top: 30px;
          border-top: 1px solid rgba(255,255,255,0.08);
        }
        .hero-stat {
          padding: 12px 18px;
          text-align: center;
        }
        .hero-stat p {
          max-width: 100px;
          margin-left: auto;
          margin-right: auto;
        }
      }
      @media (max-width: 420px) {
        .hero-stat {
          flex: 1;
          padding: 10px 8px;
        }
        .hero-stat h3 {
          font-size: 1.6rem;
        }
        .hero-stat p {
          font-size: 0.62rem;
        }
      }

      /* MARQUEE */
      .marquee-bar {
        background: var(--accent);
        padding: 13px 0;
        overflow: hidden;
        white-space: nowrap;
      }
      .marquee-track {
        display: flex;
        animation: marquee 30s linear infinite;
      }
      .marquee-track span {
        font-family: "Space Mono", monospace;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--black);
        padding: 0 36px;
        flex-shrink: 0;
      }
      .marquee-track span::before {
        content: "◆";
        margin-right: 36px;
        opacity: 0.35;
      }

      /* GALLERY */
      .gallery-strip {
        overflow: hidden;
        background: var(--off-white);
        padding: 4px 0;
      }
      .gallery-scroll {
        display: flex;
        gap: 4px;
        animation: marquee 60s linear infinite;
      }
      .gallery-scroll img {
        height: 180px;
        width: auto;
        object-fit: cover;
        flex-shrink: 0;
        border-radius: 6px;
        transition: all 0.3s;
      }
      .gallery-scroll img:hover {
        filter: brightness(1.05);
        transform: scale(1.02);
      }

      /* SECTIONS */
      .section-white {
        background: var(--white);
        padding: clamp(80px, 12vw, 140px) 0;
      }
      .section-cream {
        background: var(--cream);
        padding: clamp(80px, 12vw, 140px) 0;
      }
      .section-light {
        background: var(--off-white);
        padding: clamp(80px, 12vw, 140px) 0;
      }
      .section-dark {
        background: var(--dark);
        color: var(--white);
        padding: clamp(80px, 12vw, 140px) 0;
      }
      .section-charcoal {
        background: var(--charcoal);
        color: var(--white);
        padding: clamp(80px, 12vw, 140px) 0;
      }
      .section-charcoal .section-header p {
        color: rgba(255, 255, 255, 0.55);
      }
      .section-charcoal .process-step {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.07);
      }
      .section-charcoal .process-step:hover {
        border-color: rgba(184, 230, 0, 0.25);
        background: rgba(184, 230, 0, 0.04);
      }
      .section-header {
        margin-bottom: clamp(40px, 6vw, 72px);
      }
      .section-header .tag,
      .section-header .tag-light {
        margin-bottom: 18px;
      }
      .section-header h2 {
        font-size: clamp(2.2rem, 5vw, 3.8rem);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -0.02em;
        max-width: 650px;
      }
      .section-header p {
        color: var(--text-mid);
        font-size: 1.05rem;
        line-height: 1.6;
        max-width: 480px;
        margin-top: 14px;
      }
      .section-dark .section-header p {
        color: rgba(255, 255, 255, 0.55);
      }

      /* BUILD OPTIONS (was Build Stages) */
      .build-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 24px;
      }
      .build-card {
        border: 1px solid var(--border);
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.4s;
        background: var(--white);
      }
      .build-card:hover {
        border-color: var(--accent);
        transform: translateY(-6px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
      }
      .build-card-img {
        width: 100%;
        height: 260px;
        object-fit: cover;
      }
      .build-card-body {
        padding: clamp(24px, 3vw, 36px);
      }
      .build-card-body .tag {
        margin-bottom: 14px;
      }
      .build-card-body h3 {
        font-size: 1.45rem;
        font-weight: 700;
        margin-bottom: 10px;
      }
      .build-card-body p {
        font-size: 0.88rem;
        color: var(--text-mid);
        line-height: 1.6;
        margin-bottom: 20px;
      }
      .price {
        font-size: 1.7rem;
        font-weight: 800;
        color: var(--accent-dark);
      }
      .price small {
        font-size: 0.72rem;
        font-weight: 400;
        color: var(--text-light);
      }
      .move-in-ready-note {
        margin-top: 36px;
        padding: 28px 32px;
        background: linear-gradient(135deg, rgba(184,230,0,0.08) 0%, rgba(184,230,0,0.02) 100%);
        border: 2px solid var(--accent);
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
      }
      .move-in-ready-note .note-icon {
        width: 48px;
        height: 48px;
        background: var(--accent);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        flex-shrink: 0;
      }
      .move-in-ready-note .note-text h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 2px;
      }
      .move-in-ready-note .note-text p {
        font-size: 0.9rem;
        color: var(--text-mid);
        margin: 0;
      }
      .move-in-ready-note .btn-primary {
        margin-left: auto;
        white-space: nowrap;
      }
      @media (max-width: 600px) {
        .move-in-ready-note {
          flex-direction: column;
          align-items: flex-start;
          text-align: left;
        }
        .move-in-ready-note .btn-primary {
          margin-left: 0;
          margin-top: 10px;
        }
      }
      @media (max-width: 500px) {
        .build-cards {
          grid-template-columns: 1fr;
        }
      }

      /* COMPARISON — STANDOUT VERSION */
      .comparison-section {
        background: var(--dark);
        color: var(--white);
        padding: clamp(80px, 12vw, 140px) 0;
        position: relative;
        overflow: hidden;
      }
      .comparison-section::before {
        content: "";
        position: absolute;
        top: -40%;
        left: -20%;
        width: 60%;
        height: 180%;
        background: radial-gradient(ellipse, rgba(184, 230, 0, 0.06) 0%, transparent 60%);
        pointer-events: none;
      }
      .comparison-section::after {
        content: "";
        position: absolute;
        bottom: -40%;
        right: -20%;
        width: 60%;
        height: 180%;
        background: radial-gradient(ellipse, rgba(184, 230, 0, 0.04) 0%, transparent 60%);
        pointer-events: none;
      }
      .comparison-section .section-header p {
        color: rgba(255, 255, 255, 0.55);
      }
      .comparison-desktop {
        display: grid;
        grid-template-columns: 2fr 3fr 3fr;
        gap: 0;
        border-radius: 20px;
        overflow: hidden;
        border: 2px solid rgba(184, 230, 0, 0.2);
        animation: pulse-glow 4s ease-in-out infinite;
        position: relative;
        z-index: 1;
      }
      .comp-header {
        padding: 24px 28px;
        font-weight: 700;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
      .comp-header.superstrux {
        background: var(--accent);
        color: var(--black);
        font-size: 1rem;
      }
      .comp-header.trad {
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.6);
      }
      .comp-cell {
        padding: 20px 28px;
        font-size: 0.92rem;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(255, 255, 255, 0.02);
        color: rgba(255, 255, 255, 0.7);
      }
      .comp-cell.label {
        font-weight: 600;
        color: rgba(255, 255, 255, 0.45);
        font-size: 0.85rem;
        background: rgba(255, 255, 255, 0.04);
        font-family: "Space Mono", monospace;
        letter-spacing: 0.03em;
      }
      .comp-cell.win {
        color: var(--accent);
        font-weight: 700;
        font-size: 0.95rem;
      }
      .comp-cell.lose {
        color: rgba(255, 255, 255, 0.35);
      }
      .comparison-cta-row {
        margin-top: 40px;
        text-align: center;
        position: relative;
        z-index: 1;
      }
      .comparison-cta-row p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.9rem;
        margin-bottom: 18px;
      }

      /* COMPARISON MOBILE */
      .comparison-mobile {
        display: none;
        position: relative;
        z-index: 1;
      }
      .comp-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .comp-card {
        border-radius: 16px;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.04);
      }
      .comp-card.super {
        border-color: var(--accent);
        box-shadow: 0 0 30px rgba(184, 230, 0, 0.15);
      }
      .comp-card-header {
        padding: 16px;
        font-weight: 700;
        font-size: 0.85rem;
        text-align: center;
      }
      .comp-card.super .comp-card-header {
        background: var(--accent);
        color: var(--black);
      }
      .comp-card.trad .comp-card-header {
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.6);
      }
      .comp-card-row {
        padding: 12px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .comp-card-row .comp-label {
        font-size: 0.62rem;
        font-family: "Space Mono", monospace;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: rgba(255, 255, 255, 0.35);
        margin-bottom: 3px;
      }
      .comp-card-row .comp-val {
        font-size: 0.85rem;
        font-weight: 600;
      }
      .comp-card.super .comp-val {
        color: var(--accent);
      }
      .comp-card.trad .comp-val {
        color: rgba(255, 255, 255, 0.5);
      }
      @media (max-width: 700px) {
        .comparison-desktop {
          display: none;
        }
        .comparison-mobile {
          display: block;
        }
      }

      /* PRICES — IMAGE OVERLAY STYLE */
      /* Made-to-measure callout */
      .made-to-measure {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(184, 230, 0, 0.06);
        border: 1.5px solid rgba(184, 230, 0, 0.2);
        border-radius: 100px;
        padding: 14px 24px;
        margin-bottom: 28px;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
      }
      .made-to-measure svg { color: var(--accent-dark); flex-shrink: 0; }
      .made-to-measure span { font-size: 0.85rem; color: var(--text-mid); line-height: 1.4; }

      .price-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 18px;
      }
      .price-card {
        border-radius: 20px;
        overflow: hidden;
        background: var(--white);
        border: 2px solid var(--border);
        transition: all 0.4s;
      }
      .price-card:hover {
        border-color: var(--accent);
        transform: translateY(-6px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      }
      .price-card-img {
        position: relative;
        aspect-ratio: 16/10;
        overflow: hidden;
      }
      .price-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
      }
      .price-card:hover .price-card-img img {
        transform: scale(1.05);
      }
      .price-card-size {
        position: absolute;
        bottom: 12px;
        left: 14px;
        font-family: "Outfit", sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--white);
        text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        letter-spacing: -0.01em;
      }
      .price-card-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: var(--accent);
        color: var(--black);
        font-family: "Space Mono", monospace;
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 5px 12px;
        border-radius: 100px;
      }
      .price-card-body {
        padding: 16px;
      }
      .price-option {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 14px;
        border-radius: 12px;
        background: var(--off-white);
        margin-bottom: 6px;
      }
      .price-option.installed {
        background: var(--dark);
      }
      .price-option-label {
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--text-mid);
      }
      .price-option.installed .price-option-label {
        color: rgba(255,255,255,0.7);
      }
      .price-option-val {
        font-size: 1.15rem;
        font-weight: 800;
        font-family: "Space Mono", monospace;
        color: var(--dark);
      }
      .price-option.installed .price-option-val {
        color: var(--accent);
      }
      .price-option-vat {
        text-align: center;
        font-size: 0.68rem;
        color: var(--text-light);
        margin-top: 6px;
      }
      @media (max-width: 600px) {
        .price-grid {
          grid-template-columns: 1fr;
        }
      }

      /* USP */
      .usp-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2px;
      }
      .usp-card {
        background: var(--off-white);
        padding: clamp(24px, 3vw, 36px);
        position: relative;
        overflow: hidden;
        transition: all 0.4s;
        border-radius: 2px;
      }
      .usp-card:hover {
        background: var(--cream);
      }
      .usp-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 0;
        background: var(--accent);
        transition: height 0.4s;
      }
      .usp-card:hover::before {
        height: 100%;
      }
      .usp-num {
        font-family: "Space Mono", monospace;
        font-size: 0.68rem;
        color: var(--accent-dark);
        margin-bottom: 10px;
        letter-spacing: 0.1em;
      }
      .usp-card h3 {
        font-size: 1.08rem;
        font-weight: 700;
        margin-bottom: 6px;
      }
      .usp-card p {
        font-size: 0.88rem;
        color: var(--text-mid);
        line-height: 1.5;
      }

      /* PROCESS */
      .process-timeline {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px 72px;
      }
      .process-timeline::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(
          to bottom,
          transparent,
          rgba(184, 230, 0, 0.5),
          transparent
        );
        transform: translateX(-50%);
      }
      .process-step {
        padding: 28px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 14px;
        transition: all 0.3s;
      }
      .process-step:hover {
        border-color: rgba(184, 230, 0, 0.25);
        background: rgba(184, 230, 0, 0.04);
      }
      .process-step:nth-child(even) {
        margin-top: 50px;
      }
      .step-num {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--accent);
        color: var(--black);
        font-family: "Space Mono", monospace;
        font-weight: 700;
        font-size: 0.8rem;
        border-radius: 50%;
        margin-bottom: 14px;
      }
      .process-step h3 {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 6px;
        color: var(--white);
      }
      .process-step p {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.5;
      }
      @media (max-width: 768px) {
        .process-timeline {
          grid-template-columns: 1fr;
          gap: 14px;
        }
        .process-timeline::before {
          display: none;
        }
        .process-step:nth-child(even) {
          margin-top: 0;
        }
      }

      /* TECH */
      .tech-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(40px, 6vw, 80px);
        align-items: center;
      }
      .tech-img {
        width: 100%;
        border-radius: 16px;
        animation: float 6s ease-in-out infinite;
      }
      .tech-content h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 18px;
      }
      .tech-content p {
        font-size: 0.95rem;
        color: var(--text-mid);
        line-height: 1.7;
        margin-bottom: 14px;
      }
      @media (max-width: 768px) {
        .tech-grid {
          grid-template-columns: 1fr;
        }
      }

      /* VIDEOS */
      .video-section {
        background: var(--dark);
        padding: clamp(60px, 8vw, 100px) 0;
      }
      .video-section .section-header p {
        color: rgba(255, 255, 255, 0.55);
      }
      .video-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      .video-wrapper {
        border-radius: 16px;
        overflow: hidden;
        position: relative;
        aspect-ratio: 16/9;
        border: 1px solid rgba(255, 255, 255, 0.08);
      }
      .video-wrapper iframe {
        width: 100%;
        height: 100%;
        border: 0;
      }
      @media (max-width: 768px) {
        .video-grid {
          grid-template-columns: 1fr;
        }
      }

      /* OPTIONS */
      .options-group {
        margin-bottom: 48px;
      }
      .options-group:last-child {
        margin-bottom: 0;
      }
      .options-group h3 {
        font-family: "Space Mono", monospace;
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        color: var(--accent-dark);
        margin-bottom: 24px;
        padding-bottom: 12px;
        border-bottom: 1.5px solid rgba(184, 230, 0, 0.2);
      }
      .options-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
        gap: 14px;
      }
      .option-card {
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s;
        background: var(--white);
      }
      .option-card:hover {
        border-color: var(--accent);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      }
      .option-card img {
        width: 100%;
        height: 130px;
        object-fit: cover;
      }
      .option-card .option-info {
        padding: 14px;
      }
      .option-card h4 {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 3px;
      }
      .option-card p {
        font-size: 0.76rem;
        color: var(--text-light);
      }
      .option-text-card {
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 24px;
        background: var(--white);
        transition: all 0.3s;
      }
      .option-text-card:hover {
        border-color: var(--accent);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
      }
      .option-text-card h4 {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 4px;
      }
      .option-text-card p {
        font-size: 0.82rem;
        color: var(--text-light);
      }

      /* ARCHITECT */
      .architect-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(40px, 6vw, 80px);
        align-items: center;
      }
      .architect-img {
        width: 100%;
        border-radius: 16px;
      }
      .architect-content h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 18px;
      }
      .architect-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 10px;
      }
      .section-dark .architect-content p {
        color: rgba(255, 255, 255, 0.6);
      }
      .check-list {
        list-style: none;
        margin-top: 18px;
      }
      .check-list li {
        padding: 7px 0;
        font-size: 0.92rem;
        display: flex;
        align-items: flex-start;
        gap: 12px;
      }
      .section-dark .check-list li {
        color: rgba(255, 255, 255, 0.7);
      }
      .check-list li::before {
        content: "✓";
        color: var(--accent);
        font-weight: 700;
        flex-shrink: 0;
      }
      @media (max-width: 768px) {
        .architect-grid {
          grid-template-columns: 1fr;
        }
      }

      /* INSPIRATION */
      .inspo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
      }
      .inspo-card {
        position: relative;
        overflow: hidden;
        border-radius: 14px;
        aspect-ratio: 4/3;
        cursor: pointer;
        display: block;
      }
      .inspo-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s;
      }
      .inspo-card:hover img {
        transform: scale(1.06);
        filter: brightness(0.6);
      }
      .inspo-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-end;
        padding: 20px;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 0.65) 0%,
          transparent 55%
        );
        opacity: 0;
        transition: opacity 0.4s;
      }
      .inspo-card:hover .inspo-overlay {
        opacity: 1;
      }
      .inspo-overlay span {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--accent);
      }
      @media (max-width: 768px) {
        .inspo-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 480px) {
        .inspo-grid {
          grid-template-columns: 1fr;
        }
      }

      /* INLINE CTA BANNER */
      .inline-cta {
        padding: clamp(40px, 6vw, 60px) 0;
        background: var(--cream);
        text-align: center;
      }
      .inline-cta h3 {
        font-size: clamp(1.3rem, 2.5vw, 1.8rem);
        font-weight: 700;
        margin-bottom: 6px;
      }
      .inline-cta p {
        color: var(--text-mid);
        font-size: 0.95rem;
        margin-bottom: 22px;
      }
      .inline-cta-dark {
        background: var(--charcoal);
        color: var(--white);
      }
      .inline-cta-dark p {
        color: rgba(255, 255, 255, 0.55);
      }

      /* CTA */
      .cta-section {
        padding: clamp(80px, 12vw, 140px) 0;
        background: linear-gradient(
          135deg,
          var(--accent) 0%,
          #c5f000 50%,
          #a8e600 100%
        );
        color: var(--black);
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .cta-section::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -20%;
        width: 70%;
        height: 200%;
        background: radial-gradient(
          ellipse,
          rgba(255, 255, 255, 0.18) 0%,
          transparent 60%
        );
        pointer-events: none;
      }
      .cta-section h2 {
        font-size: clamp(2.4rem, 5.5vw, 4.5rem);
        font-weight: 900;
        line-height: 0.95;
        letter-spacing: -0.03em;
        position: relative;
      }
      .cta-section p {
        font-size: 1.05rem;
        color: rgba(0, 0, 0, 0.55);
        max-width: 480px;
        margin: 18px auto 0;
        line-height: 1.5;
        position: relative;
      }
      .cta-badges {
        display: flex;
        gap: 28px;
        justify-content: center;
        margin: 36px 0;
        flex-wrap: wrap;
        position: relative;
      }
      .cta-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        font-size: 0.88rem;
      }
      .cta-badge svg {
        width: 18px;
        height: 18px;
      }
      .cta-form {
        max-width: 680px;
        margin: 0 auto;
        position: relative;
      }
      .cta-form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      .cta-form input,
      .cta-form textarea {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        font-family: "Outfit", sans-serif;
        font-size: 0.92rem;
        background: rgba(255, 255, 255, 0.92);
        color: var(--black);
        outline: none;
        transition: all 0.3s;
      }
      .cta-form input:focus,
      .cta-form textarea:focus {
        border-color: var(--black);
        background: #fff;
      }
      .cta-form input::placeholder,
      .cta-form textarea::placeholder {
        color: rgba(0, 0, 0, 0.3);
      }
      .cta-form textarea {
        grid-column: 1/-1;
        resize: vertical;
        min-height: 70px;
      }
      .cta-form .btn-dark {
        grid-column: 1/-1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--black);
        color: var(--accent);
        padding: 16px 38px;
        border-radius: 100px;
        font-weight: 700;
        font-size: 0.95rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        font-family: "Outfit", sans-serif;
      }
      .cta-form .btn-dark:hover {
        background: var(--charcoal);
        transform: scale(1.02);
      }
      @media (max-width: 600px) {
        .cta-form-grid {
          grid-template-columns: 1fr;
        }
      }

      /* FOOTER */
      footer {
        background: var(--dark);
        color: var(--white);
        padding: clamp(60px, 8vw, 100px) 0 36px;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 36px;
        margin-bottom: 50px;
      }
      .footer-brand p {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.6;
        margin-top: 14px;
        max-width: 280px;
      }
      .footer-contact {
        margin-top: 20px;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 2;
      }
      .footer-contact a {
        color: var(--accent);
        text-decoration: none;
      }
      .footer-col h4 {
        font-size: 0.72rem;
        font-family: "Space Mono", monospace;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--white);
        margin-bottom: 18px;
      }
      .footer-col a {
        display: block;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.45);
        text-decoration: none;
        padding: 4px 0;
        transition: color 0.3s;
      }
      .footer-col a:hover {
        color: var(--accent);
      }
      .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.35);
        flex-wrap: wrap;
        gap: 14px;
      }
      .footer-bottom a {
        color: rgba(255, 255, 255, 0.35);
        text-decoration: none;
      }
      .footer-bottom a:hover {
        color: var(--accent);
      }
      .footer-socials {
        display: flex;
        gap: 12px;
      }
      .footer-socials a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        color: rgba(255, 255, 255, 0.4);
        text-decoration: none;
        font-size: 0.78rem;
      }
      .footer-socials a:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(184, 230, 0, 0.06);
      }
      @media (max-width: 768px) {
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 480px) {
        .footer-grid {
          grid-template-columns: 1fr;
        }
      }
      @keyframes cqc-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
      @media (max-width: 480px) { .cta-form-grid { grid-template-columns: 1fr !important; } }

/* YouTube facade — loads iframe only on click */
.yt-facade{position:relative;cursor:pointer;width:100%;height:100%;border-radius:inherit;overflow:hidden;background:#000}
.yt-facade picture{display:block;width:100%;height:100%}
.yt-play-btn{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);opacity:.85;transition:opacity .2s}
.yt-facade:hover .yt-play-btn,.yt-facade:focus .yt-play-btn{opacity:1}

/* =============================================
   POPULAR FINISH — BRICK FINISH SECTION
   Add this to the end of your styles.css
   ============================================= */

/* Journey layout — alternating image/text rows */
.brick-journey {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brick-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 380px;
  border-bottom: 1px solid var(--border);
}

.brick-step:first-child {
  border-top: 1px solid var(--border);
}

/* Reverse layout for alternating rows */
.brick-step-reverse .brick-step-img-wrap {
  order: 2;
}
.brick-step-reverse .brick-step-content {
  order: 1;
}

/* Image wrapper */
.brick-step-img-wrap {
  position: relative;
  overflow: hidden;
}

.brick-step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brick-step:hover .brick-step-img-wrap img {
  transform: scale(1.04);
}

/* Step number badge */
.brick-step-num {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--black);
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.brick-step-reverse .brick-step-num {
  left: auto;
  right: 20px;
}

/* Content area */
.brick-step-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 60px);
  position: relative;
}

.brick-step-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transform: translateY(-50%);
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.brick-step:hover .brick-step-content::before {
  height: 60px;
}

.brick-step-reverse .brick-step-content::before {
  left: auto;
  right: 0;
}

.brick-step-content h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.brick-step-content p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 440px;
}

/* Benefits strip */
.brick-benefits {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.brick-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.brick-benefit svg {
  color: var(--accent-dark);
  flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .brick-step {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brick-step-img-wrap {
    aspect-ratio: 16 / 10;
  }

  /* Reset order on mobile — always image on top */
  .brick-step-reverse .brick-step-img-wrap {
    order: unset;
  }
  .brick-step-reverse .brick-step-content {
    order: unset;
  }

  .brick-step-reverse .brick-step-num {
    left: 20px;
    right: auto;
  }

  .brick-step-content::before {
    display: none;
  }

  .brick-step-content {
    padding: 28px 20px;
  }

  .brick-benefits {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
/* =============================================
   SLAB TO ROOF BANNER
   Add this to the end of your styles.css
   ============================================= */

.slab-banner {
  background: var(--dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Subtle radial glow behind the text */
.slab-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184, 230, 0, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.slab-banner-inner {
  position: relative;
  z-index: 1;
}

.slab-eyebrow {
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(184, 230, 0, 0.6);
  margin-bottom: 12px;
}

.slab-banner h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.slab-banner h2 span {
  color: var(--accent);
}

/* =============================================
   HOW IT WORKS — VIDEO SECTION
   Add to the end of styles.css
   ============================================= */

.how-it-works-section {
  background: var(--white);
  padding: clamp(80px, 12vw, 140px) 0;
}

.hiw-video-wrap {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}

.hiw-video-wrap:hover {
  border-color: var(--accent);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 0 0 4px rgba(184, 230, 0, 0.1);
  transform: translateY(-4px);
}

/* Iframe that replaces the facade on click */
.hiw-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* =============================================
   ALL MADE IN THE UK — FLAG SECTION
   Add to the end of styles.css
   ============================================= */

.uk-made-section {
  position: relative;
  padding: clamp(80px, 12vw, 130px) 0;
  overflow: hidden;
  text-align: center;
}

/* Full Union Jack background — replace with an actual image for best results.
   Save a high-res Union Jack as /assets/media/union-jack.webp
   The CSS below uses the image if available, with a fallback gradient. */
.uk-made-flag {
  position: absolute;
  inset: 0;
  background:
    url('/assets/media/union-jack.webp') center / cover no-repeat,
    /* Fallback if image not yet added */
    linear-gradient(135deg, #00247d 0%, #00247d 100%);
  z-index: 0;
}

/* Dark overlay so text is legible over the flag */
.uk-made-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 30, 0.72);
  z-index: 1;
}

.uk-made-inner {
  position: relative;
  z-index: 2;
}

.uk-made-content {
  max-width: 680px;
  margin: 0 auto;
}

.uk-made-content .tag-light {
  margin-bottom: 18px;
}

.uk-made-content h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.uk-made-content h2 span {
  color: var(--accent);
}

.uk-made-content > p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* Stats row */
.uk-made-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
}

.uk-made-stat {
  padding: 20px 36px;
  border-left: 2px solid rgba(184, 230, 0, 0.25);
}

.uk-made-stat:first-child {
  border-left: none;
}

.uk-made-stat h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.uk-made-stat p {
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

@media (max-width: 600px) {
  .uk-made-stats {
    justify-content: space-between;
    width: 100%;
  }
  .uk-made-stat {
    padding: 0;
    flex: 1;
    text-align: center;
  }
  .uk-made-stat h3 {
    font-size: 1.3rem;
  }
  .uk-made-stat p {
    font-size: 0.55rem;
    letter-spacing: 0.04em;
  }
}

/* =============================================
   FAQ SECTION
   Add to the end of your styles.css
   ============================================= */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  transition: color 0.3s;
}

/* Remove default marker in all browsers */
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary h3 {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color 0.3s;
  margin: 0;
}

.faq-item[open] summary h3,
.faq-item summary:hover h3 {
  color: var(--accent-dark);
}

/* Plus / minus icon */
.faq-item summary::after {
  content: "+";
  font-family: "Space Mono", monospace;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent-dark);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(143, 184, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(184, 230, 0, 0.06);
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
  transform: rotate(180deg);
}

/* Answer panel */
.faq-item p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  padding: 0 48px 26px 0;
  max-width: 680px;
  animation: faqOpen 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes faqOpen {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover state — subtle left accent line */
.faq-item {
  position: relative;
  padding-left: 0;
  transition: padding-left 0.3s;
}

.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 0 2px 2px 0;
}

.faq-item[open]::before {
  transform: scaleY(1);
}

.faq-item[open] {
  padding-left: 18px;
}

/* Mobile */
@media (max-width: 600px) {
  .faq-item summary {
    padding: 20px 0;
    gap: 16px;
  }

  .faq-item p {
    padding: 0 0 20px 0;
    font-size: 0.88rem;
  }

  .faq-item summary::after {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }

  .faq-item[open] {
    padding-left: 14px;
  }
}