    /* ========================================
       CSS RESET & VARIABLES
       ======================================== */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      /* Brand Colours — B&P blue */
      --navy: #0B1A2E;
      --navy-mid: #0F2340;
      --navy-light: #163050;
      --primary: #1B6EC2;
      --primary-hover: #155A9C;
      --primary-light: #E8F1FB;
      --primary-glow: rgba(27, 110, 194, 0.15);
      --primary-bright: #4DA8DA;
      --primary-dark: #0E3D66;
      --white: #FFFFFF;
      --gray-50: #F8FAFC;
      --gray-100: #F1F5F9;
      --gray-200: #E2E8F0;
      --gray-300: #CBD5E1;
      --gray-400: #94A3B8;
      --gray-500: #64748B;
      --gray-600: #475569;
      --gray-700: #334155;
      --gray-800: #1E293B;
      --gray-900: #0F172A;
      --text: #1E293B;
      --text-secondary: #64748B;
      --text-light: #94A3B8;
      --success: #10B981;
      --emergency: #DC2626;
      --emergency-light: #FEE2E2;
      --border: #E2E8F0;

      /* Spacing */
      --section-pad: 100px;
      --container-max: 1200px;
      --container-pad: 24px;

      /* Radius */
      --radius: 12px;
      --radius-sm: 8px;
      --radius-lg: 16px;
      --radius-xl: 24px;

      /* Shadows */
      --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
      --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
      --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 8px 10px rgba(0,0,0,0.04);
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    html {
      overflow-x: hidden;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
      width: 100%;
    }

    section, footer {
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      line-height: 1.2;
    }

    a { text-decoration: none; color: inherit; transition: color 0.2s; }
    img { max-width: 100%; display: block; }

    /* ========================================
       UTILITIES
       ======================================== */
    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-pad);
      overflow-wrap: break-word;
      word-wrap: break-word;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--primary);
      margin-bottom: 16px;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
    }

    .section-title {
      font-size: clamp(32px, 5vw, 48px);
      margin-bottom: 20px;
      color: var(--gray-900);
    }

    .section-subtitle {
      font-size: 18px;
      color: var(--text-secondary);
      max-width: 640px;
      line-height: 1.7;
    }

    .section-header { margin-bottom: 64px; }
    .section-header.center { text-align: center; }
    .section-header.center .section-subtitle { margin: 0 auto; }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 50px;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all 0.25s ease;
      white-space: nowrap;
      touch-action: manipulation;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary-bright), var(--primary));
      color: var(--white);
      box-shadow: 0 4px 14px rgba(27, 110, 194, 0.35);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(27, 110, 194, 0.4);
    }

    .btn-emergency {
      background: var(--emergency);
      color: var(--white);
      box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
    }

    .btn-emergency:hover {
      background: #B91C1C;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,0.3);
    }

    .btn-outline:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.08);
      transform: translateY(-2px);
    }

    .btn-outline-dark {
      background: transparent;
      color: var(--gray-800);
      border: 2px solid var(--gray-300);
    }

    .btn-outline-dark:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-2px);
    }

    .btn-white {
      background: var(--white);
      color: var(--gray-900);
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn-lg {
      padding: 16px 36px;
      font-size: 16px;
    }

    .btn-group {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* Scroll animation */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-up.delay-1 { transition-delay: 0.1s; }
    .fade-up.delay-2 { transition-delay: 0.2s; }
    .fade-up.delay-3 { transition-delay: 0.3s; }
    .fade-up.delay-4 { transition-delay: 0.4s; }

    /* ========================================
       HERO SECTION
       ======================================== */
    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      background: var(--navy);
      overflow: hidden;
      padding: 160px 0 100px;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(27, 110, 194, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(77, 168, 218, 0.07) 0%, transparent 50%);
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-content { position: relative; z-index: 1; min-width: 0; overflow: hidden; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: rgba(77, 168, 218, 0.12);
      border: 1px solid rgba(77, 168, 218, 0.25);
      border-radius: 50px;
      color: var(--primary-bright);
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 28px;
      letter-spacing: 0.3px;
    }

    .hero-badge svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .hero h1 {
      font-size: clamp(36px, 5.5vw, 58px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 24px;
      letter-spacing: -1px;
    }

    .hero h1 .highlight { color: var(--primary-bright); }

    .hero-subtitle {
      font-size: clamp(17px, 2.2vw, 19px);
      color: rgba(255,255,255,0.7);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 520px;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .hero-buttons .btn {
      width: 260px;
      box-sizing: border-box;
      display: flex;
      line-height: 1;
      font-size: 16px;
      padding: 16px 36px;
    }

    /* USP strip */
    .usp-strip {
      padding: 48px 0;
      background: var(--gray-50);
      border-top: 1px solid var(--gray-100);
      border-bottom: 1px solid var(--gray-100);
    }

    .usp-strip-inner {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 32px 48px;
    }

    .usp-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
    }

    .usp-item svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
      flex-shrink: 0;
    }

    .usp-item .usp-highlight {
      color: var(--primary);
    }

    .usp-item .usp-strike {
      text-decoration: line-through;
      color: var(--gray-400);
      font-weight: 400;
    }

    .brand-logos {
      background: var(--white);
      padding: 32px 0;
      overflow: hidden;
    }

    .brand-logos-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-light);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
      text-align: center;
    }

    .hero-logo-ticker-wrap {
      width: 100%;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    .hero-logo-ticker {
      display: flex;
      align-items: center;
      gap: 48px;
      width: max-content;
      animation: hero-logo-scroll 30s linear infinite;
    }

    .hero-logo-ticker img {
      height: 32px;
      object-fit: contain;
      opacity: 0.5;
      filter: grayscale(100%);
      transition: opacity 0.3s, filter 0.3s;
    }

    .hero-logo-ticker img:hover {
      opacity: 1;
      filter: grayscale(0%);
    }

    @keyframes hero-logo-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-33.33%); }
    }

    .hero-visual {
      position: relative;
      z-index: 1;
      min-width: 0;
    }

    .hero-services-preview {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .hero-service-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      padding: 24px 20px;
      backdrop-filter: blur(10px);
      transition: all 0.3s;
      cursor: pointer;
      touch-action: manipulation;
    }

    .hero-service-card:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(77, 168, 218, 0.3);
      transform: translateY(-4px);
    }

    .hero-service-card img {
      width: 56px;
      height: 56px;
      object-fit: contain;
      margin-bottom: 12px;
      flex-shrink: 0;
    }

    .hero-service-card.hero-card-with-img {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px;
    }
    .hero-card-with-img img {
      width: 40%;
      height: auto;
      aspect-ratio: 1;
      object-fit: cover;
      border-radius: var(--radius-sm);
      margin-bottom: 0;
      flex-shrink: 0;
    }
    .hero-card-with-img div {
      flex: 1;
      min-width: 0;
    }

    .hero-service-card.emergency-card:hover { border-color: rgba(248, 113, 113, 0.3); }

    .hero-service-card h3 {
      font-size: 15px;
      color: var(--white);
      margin-bottom: 4px;
    }

    .hero-service-card p {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      line-height: 1.5;
    }

    /* Hero floating image */
    .hero-float-image {
      position: absolute;
      top: 100px;
      right: 0;
      width: 45%;
      height: 70%;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
      border-bottom-left-radius: 40px;
    }

    .hero-float-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center top;
      opacity: 0.18;
    }

    .hero-float-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--navy) 0%, transparent 40%),
                  linear-gradient(to bottom, transparent 50%, var(--navy) 100%),
                  linear-gradient(to right, var(--navy) 0%, transparent 30%);
    }

    /* Floating shapes */
    .hero-shapes {
      position: absolute;
      top: 0; right: 0; bottom: 0;
      width: 45%;
      pointer-events: none;
      z-index: 0;
    }

    .hero-shape {
      position: absolute;
      border-radius: 20px;
      opacity: 0.06;
      background: var(--primary);
    }

    .hero-shape-1 { width: 300px; height: 300px; top: 15%; right: 10%; transform: rotate(15deg); animation: float-1 8s ease-in-out infinite; }
    .hero-shape-2 { width: 200px; height: 200px; top: 55%; right: 25%; transform: rotate(-10deg); animation: float-2 6s ease-in-out infinite; opacity: 0.04; }
    .hero-shape-3 { width: 150px; height: 150px; top: 30%; right: 40%; transform: rotate(30deg); animation: float-3 10s ease-in-out infinite; opacity: 0.035; }

    @keyframes float-1 { 0%, 100% { transform: rotate(15deg) translateY(0); } 50% { transform: rotate(15deg) translateY(-20px); } }
    @keyframes float-2 { 0%, 100% { transform: rotate(-10deg) translateY(0); } 50% { transform: rotate(-10deg) translateY(15px); } }
    @keyframes float-3 { 0%, 100% { transform: rotate(30deg) translateX(0); } 50% { transform: rotate(30deg) translateX(-15px); } }

    /* ========================================
       TRUST BAR
       ======================================== */
    .trust-bar {
      padding: 40px 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }

    .trust-bar-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      font-weight: 600;
      color: var(--gray-700);
    }

    .trust-badge-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .trust-badge-icon.gas-safe { background: #FEF3C7; color: #92400E; }
    .trust-badge-icon.guarantee { background: #D1FAE5; color: #065F46; }
    .trust-badge-icon.pricing { background: var(--primary-light); color: var(--primary); }
    .trust-badge-icon.emergency { background: var(--emergency-light); color: var(--emergency); }

    .trust-badge-icon svg { width: 22px; height: 22px; }

    /* ========================================
       LOCAL LANDMARK
       ======================================== */
    .landmark {
      padding: 60px 0 0;
      background: var(--white);
    }

    .landmark-wrap {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .landmark-wrap img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      display: block;
    }

    .landmark-caption {
      text-align: center;
      padding: 16px 20px;
      font-size: 15px;
      font-weight: 500;
      color: var(--text-secondary);
      background: var(--gray-50);
      border-top: 1px solid var(--border);
    }

    @media (max-width: 768px) {
      .landmark { padding: 40px 0 0; }
      .landmark-wrap img { height: 220px; }
      .landmark-caption { font-size: 14px; padding: 12px 16px; }
    }

    /* ========================================
       WEATHER TIP
       ======================================== */
    .weather-tip {
      padding: 32px 0;
      background: var(--white);
    }

    .weather-tip-inner {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px 28px;
      background: linear-gradient(135deg, var(--primary-light), var(--gray-50));
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
    }

    .weather-tip-temp {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
    }

    .weather-tip-degrees {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 36px;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
    }

    .weather-tip-location {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .weather-tip-divider {
      width: 1px;
      height: 48px;
      background: var(--border);
      flex-shrink: 0;
    }

    .weather-tip-text {
      flex: 1;
      font-size: 15px;
      color: var(--gray-700);
      line-height: 1.6;
    }

    .weather-tip-text strong {
      color: var(--gray-900);
    }

    .weather-tip-hidden {
      display: none;
    }

    @media (max-width: 768px) {
      .weather-tip { padding: 24px 0; }
      .weather-tip-inner { padding: 16px 20px; gap: 16px; }
      .weather-tip-degrees { font-size: 28px; }
      .weather-tip-text { font-size: 14px; }
    }

    /* ========================================
       SERVICES GRID
       ======================================== */
    .services {
      padding: var(--section-pad) 0;
      background: var(--gray-50);
    }

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

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      touch-action: manipulation;
    }

    .service-card:hover {
      border-color: rgba(27, 110, 194, 0.25);
      box-shadow: 0 8px 30px rgba(27, 110, 194, 0.08);
      transform: translateY(-4px);
    }

    .service-icon {
      width: 74px;
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--primary-light);
      border-radius: var(--radius);
      color: var(--primary);
      margin: 0 auto 20px;
    }

    .service-icon svg { width: 28px; height: 28px; }

    .service-icon.service-icon-img {
      overflow: hidden;
      padding: 0;
      background: none;
    }

    .service-icon.service-icon-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .service-icon.emergency-icon {
      background: var(--emergency-light);
      color: var(--emergency);
    }

    .service-card h3 {
      font-size: 17px;
      color: var(--gray-900);
      margin-bottom: 8px;
    }

    .service-card p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    .service-card .service-link {
      display: inline-block;
      margin-top: 16px;
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      background: var(--primary-light);
      padding: 6px 16px;
      border-radius: 50px;
      transition: all 0.2s;
    }

    .service-card .service-link:hover {
      background: var(--primary);
      color: var(--white);
    }

    /* ========================================
       WHY CHOOSE US
       ======================================== */
    .why-us {
      padding: var(--section-pad) 0;
      background: var(--white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .why-card {
      display: flex;
      gap: 20px;
      padding: 32px;
      background: var(--white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      transition: all 0.3s;
    }

    .why-card:hover {
      box-shadow: var(--shadow-md);
      border-color: rgba(27, 110, 194, 0.2);
    }

    .why-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--primary-light);
      border-radius: var(--radius);
      color: var(--primary);
    }

    .why-icon svg { width: 24px; height: 24px; }
    .why-card h4 { font-size: 17px; margin-bottom: 8px; color: var(--gray-900); }
    .why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

    /* ========================================
       BATHROOM DEEP SECTION
       ======================================== */
    .bathroom-deep {
      padding: var(--section-pad) 0;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }

    .bathroom-deep::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background:
        radial-gradient(ellipse 50% 80% at 80% 20%, rgba(27, 110, 194, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(77, 168, 218, 0.05) 0%, transparent 50%);
    }

    .bathroom-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
      position: relative;
    }

    .bathroom-text { position: relative; }

    .bathroom-text h2 {
      font-size: clamp(28px, 4vw, 42px);
      color: var(--white);
      margin-bottom: 24px;
      letter-spacing: -0.5px;
    }

    .bathroom-text h2 .highlight { color: var(--primary-bright); }

    .bathroom-text > p {
      font-size: 17px;
      color: rgba(255,255,255,0.65);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .bathroom-services-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 32px;
    }

    .bathroom-service-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .bathroom-service-item .check {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(16, 185, 129, 0.15);
      border-radius: 50%;
      color: var(--success);
      margin-top: 2px;
    }

    .bathroom-service-item .check svg { width: 14px; height: 14px; }

    .bathroom-service-item span {
      font-size: 15px;
      color: rgba(255,255,255,0.75);
    }

    .bathroom-features { position: relative; }

    .bathroom-pricing-box {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      padding: 28px;
      margin-top: 32px;
    }

    .bathroom-pricing-box h4 {
      font-size: 16px;
      color: var(--white);
      margin-bottom: 12px;
    }

    .bathroom-pricing-box p {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      line-height: 1.7;
    }

    .bathroom-pricing-box .price-indicator {
      display: inline-block;
      margin-top: 12px;
      font-size: 13px;
      font-weight: 600;
      color: var(--primary-bright);
      background: rgba(77, 168, 218, 0.12);
      padding: 4px 14px;
      border-radius: 50px;
    }

    .bathroom-cta-wrap {
      margin-top: 32px;
    }

    /* ========================================
       HOW IT WORKS
       ======================================== */
    .how-it-works {
      padding: var(--section-pad) 0;
      background: var(--gray-50);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
      position: relative;
    }

    .steps::before {
      content: '';
      position: absolute;
      top: 44px;
      left: calc(16.67% + 16px);
      right: calc(16.67% + 16px);
      height: 2px;
      background: linear-gradient(90deg, var(--primary), var(--gray-200), var(--primary));
      z-index: 0;
    }

    .step {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--primary);
      color: var(--primary);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 20px;
      margin-bottom: 24px;
      transition: all 0.3s;
    }

    .step:hover .step-number {
      background: var(--primary);
      color: var(--white);
      transform: scale(1.1);
    }

    .step h3 { font-size: 18px; margin-bottom: 12px; color: var(--gray-900); }
    .step p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; max-width: 320px; margin: 0 auto; }

    /* ========================================
       PLUMBING DEEP SECTION
       ======================================== */
    .plumbing-deep {
      padding: var(--section-pad) 0;
      background: var(--white);
    }

    .plumbing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    .plumbing-text h2 {
      font-size: clamp(28px, 4vw, 42px);
      margin-bottom: 24px;
      color: var(--gray-900);
    }

    .plumbing-text > p {
      font-size: 17px;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .plumbing-feature-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 24px;
    }

    .plumbing-feature-item {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .plumbing-feature-item .check-circle {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(16, 185, 129, 0.1);
      border-radius: 50%;
      color: var(--success);
    }

    .plumbing-feature-item .check-circle svg { width: 14px; height: 14px; }

    .plumbing-feature-item span {
      font-size: 15px;
      color: var(--gray-700);
    }

    .plumbing-sidebar {
      position: sticky;
      top: 120px;
    }

    .plumbing-common-box {
      background: var(--gray-50);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      margin-bottom: 24px;
    }

    .plumbing-common-box h4 {
      font-size: 16px;
      margin-bottom: 16px;
      color: var(--gray-900);
    }

    .plumbing-common-box p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 12px;
    }

    .plumbing-common-box p:last-child { margin-bottom: 0; }

    .plumbing-cta-card {
      background: var(--navy);
      border-radius: var(--radius-xl);
      padding: 40px 32px;
      text-align: center;
    }

    .plumbing-cta-card h3 {
      font-size: 24px;
      color: var(--white);
      margin-bottom: 12px;
    }

    .plumbing-cta-card p {
      font-size: 15px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 28px;
      line-height: 1.7;
    }

    .plumbing-cta-card .btn {
      width: 100%;
      justify-content: center;
      margin-bottom: 12px;
    }

    .plumbing-cta-card .guarantees {
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .plumbing-cta-card .guarantee-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 8px;
    }

    .plumbing-cta-card .guarantee-item svg {
      width: 16px;
      height: 16px;
      color: var(--success);
      flex-shrink: 0;
    }

    /* ========================================
       BOILER SECTION
       ======================================== */
    .boiler-section {
      padding: var(--section-pad) 0;
      background: var(--gray-50);
    }

    .boiler-intro {
      max-width: 800px;
      margin-bottom: 48px;
    }

    .boiler-intro h2 {
      font-size: clamp(28px, 4vw, 42px);
      margin-bottom: 24px;
      color: var(--gray-900);
    }

    .boiler-intro > p {
      font-size: 17px;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .boiler-types {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 48px;
    }

    .boiler-type {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      text-align: center;
      transition: all 0.3s;
    }

    .boiler-type:hover {
      border-color: rgba(27, 110, 194, 0.25);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }

    .boiler-type h4 { font-size: 17px; color: var(--gray-900); margin-bottom: 8px; }
    .boiler-type p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }

    .boiler-type .boiler-price {
      display: inline-block;
      font-size: 14px;
      font-weight: 700;
      color: var(--primary);
    }

    .boiler-services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-bottom: 32px;
    }

    .boiler-service-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 20px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      transition: all 0.3s;
    }

    .boiler-service-item:hover {
      border-color: rgba(27, 110, 194, 0.2);
      box-shadow: var(--shadow);
    }

    .boiler-service-item svg {
      width: 22px;
      height: 22px;
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .boiler-service-item h4 { font-size: 15px; color: var(--gray-900); margin-bottom: 4px; }
    .boiler-service-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

    /* ========================================
       PRICING SECTION
       ======================================== */
    .pricing-section {
      padding: var(--section-pad) 0;
      background: var(--white);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      max-width: 800px;
      margin: 0 auto;
    }

    .pricing-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 24px;
      background: var(--gray-50);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      transition: all 0.2s;
    }

    .pricing-item:hover {
      border-color: rgba(27, 110, 194, 0.2);
      background: var(--primary-light);
    }

    .pricing-item-name {
      font-size: 15px;
      font-weight: 500;
      color: var(--gray-800);
    }

    .pricing-item-price {
      font-size: 15px;
      font-weight: 700;
      color: var(--primary);
      white-space: nowrap;
    }

    .pricing-note {
      text-align: center;
      margin-top: 32px;
      font-size: 15px;
      color: var(--text-secondary);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    /* ========================================
       SERVICE AREAS
       ======================================== */
    .areas {
      padding: var(--section-pad) 0;
      background: var(--gray-50);
    }

    .areas-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .area-item {
      padding: 16px 20px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-700);
      text-align: center;
      transition: all 0.2s;
    }

    .area-item:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: var(--primary-light);
    }

    .areas-note {
      text-align: center;
      margin-top: 32px;
      font-size: 15px;
      color: var(--text-secondary);
    }

    .areas-map {
      margin-top: 48px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
    }

    .areas-map iframe {
      display: block;
      width: 100%;
      height: 380px;
      border: 0;
    }

    @media (max-width: 768px) {
      .areas-map iframe { height: 280px; }
    }

    /* ========================================
       FAQ SECTION
       ======================================== */
    .faq {
      padding: var(--section-pad) 0;
      background: var(--white);
    }

    .faq-grid {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-item:first-child {
      border-top: 1px solid var(--border);
    }

    .faq-question {
      width: 100%;
      padding: 24px 0;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--gray-900);
      text-align: left;
      touch-action: manipulation;
    }

    .faq-question:hover { color: var(--primary); }

    .faq-question .faq-toggle {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--primary-light);
      color: var(--primary);
      font-size: 18px;
      font-weight: 700;
      transition: all 0.3s;
    }

    .faq-item.open .faq-toggle {
      background: var(--primary);
      color: var(--white);
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }

    .faq-answer-inner {
      padding: 0 0 24px;
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.8;
    }

    /* ========================================
       CONTACT / CTA
       ======================================== */
    .cta-section {
      padding: var(--section-pad) 0;
      background: var(--navy);
    }

    .cta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    .cta-text h2 {
      font-size: clamp(28px, 4vw, 42px);
      margin-bottom: 16px;
      color: var(--gray-900);
    }

    .cta-text > p {
      font-size: 17px;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .cta-contact-info {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .cta-contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      color: var(--gray-700);
    }

    .cta-contact-item svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
      flex-shrink: 0;
    }

    .cta-contact-item a {
      color: var(--primary);
      font-weight: 600;
    }

    .cta-final {
      text-align: center;
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-final h2 {
      font-size: clamp(28px, 4vw, 42px);
      color: var(--white);
      margin-bottom: 16px;
    }

    .cta-final > p {
      font-size: 18px;
      color: rgba(255,255,255,0.7);
      line-height: 1.7;
      margin-bottom: 36px;
    }

    .cta-final-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .cta-final-buttons .btn {
      min-width: 220px;
    }

    .cta-final-sub {
      font-size: 14px;
      color: rgba(255,255,255,0.4);
    }

    .contact-form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 40px;
    }

    .contact-form-card h3 {
      font-size: 22px;
      margin-bottom: 8px;
      color: var(--gray-900);
    }

    .contact-form-card > p {
      font-size: 14px;
      color: var(--text-secondary);
      margin-bottom: 28px;
    }

    .form-group { margin-bottom: 16px; }

    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--gray-700);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 16px;
      font-family: inherit;
      outline: none;
      transition: border-color 0.2s;
      background: var(--white);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px var(--primary-glow);
    }

    .form-group textarea { resize: vertical; min-height: 100px; }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 32px;
    }

    .form-success-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #D1FAE5;
      color: var(--success);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }

    .form-success h4 { font-size: 20px; margin-bottom: 8px; }
    .form-success p { font-size: 14px; color: var(--text-secondary); }

    /* ========================================
       RESPONSIVE
       ======================================== */
    @media (max-width: 1024px) {
      :root {
        --section-pad: 80px;
      }

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

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

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

    @media (max-width: 768px) {
      :root {
        --section-pad: 64px;
      }

      .hero {
        min-height: auto;
        padding: 140px 0 80px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .hero-shapes { display: none; }

      .hero-float-image {
        width: 100%;
        height: 50%;
        top: 80px;
        right: 0;
        border-bottom-left-radius: 0;
      }

      .hero-float-image img {
        opacity: 0.12;
      }

      .hero-services-preview {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      .bathroom-grid,
      .plumbing-grid,
      .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

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

      .steps {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 400px;
        margin: 0 auto;
      }

      .steps::before { display: none; }

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

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

      .boiler-types {
        grid-template-columns: 1fr;
      }

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

      .contact-form-card {
        padding: 24px;
      }
    }

    @media (max-width: 480px) {
      :root {
        --section-pad: 48px;
        --container-pad: 16px;
      }

      .hero h1 {
        font-size: 32px;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .hero-buttons .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
      }

      .hero-services-preview {
        grid-template-columns: 1fr;
      }

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

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

      .btn-group {
        flex-direction: column;
      }

      .btn-group .btn {
        width: 100%;
      }

      .trust-bar-inner {
        gap: 24px;
      }

      .trust-badge {
        font-size: 13px;
      }
    }

    /* ========================================
       BREADCRUMB (service pages)
       ======================================== */
    .breadcrumb-bar {
      padding: 16px 0;
      background: var(--gray-50);
      border-bottom: 1px solid var(--border);
    }
    .breadcrumb {
      font-size: 14px;
      color: var(--text-secondary);
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .breadcrumb a {
      color: var(--primary);
      font-weight: 500;
    }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb .sep { color: var(--gray-300); }

    /* ========================================
       CONTENT SECTION (service pages)
       ======================================== */
    .content-section {
      padding: var(--section-pad) 0;
      background: var(--white);
    }
    .content-section.alt-bg {
      background: var(--gray-50);
    }
    .content-section.dark-bg {
      background: var(--navy);
    }
    .content-section.dark-bg h2,
    .content-section.dark-bg h3 {
      color: var(--white);
    }
    .content-section.dark-bg p {
      color: rgba(255,255,255,0.65);
    }
    .content-section.dark-bg .section-label {
      color: var(--primary-bright);
    }
    .content-body {
      max-width: 800px;
    }
    .content-body h2 {
      font-size: clamp(28px, 4vw, 42px);
      margin-bottom: 24px;
      color: var(--gray-900);
    }
    .content-body > p {
      font-size: 17px;
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 16px;
    }

    /* Info card grid (6 cards for common problems/services) */
    .info-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .info-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      transition: all 0.3s;
      text-align: center;
    }
    .info-card:hover {
      border-color: rgba(27, 110, 194, 0.25);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }
    .info-card-icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--primary-light);
      border-radius: var(--radius);
      color: var(--primary);
      margin: 0 auto 16px;
    }
    .info-card-icon.emergency-icon {
      background: var(--emergency-light);
      color: var(--emergency);
    }
    .info-card-icon svg { width: 24px; height: 24px; }
    .info-card-icon.service-icon-img {
      width: 100%;
      height: 140px;
      background: none;
      border-radius: var(--radius);
      overflow: hidden;
      padding: 0;
    }
    .info-card-icon.service-icon-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--radius);
    }

    /* Image overlay card variant */
    .info-card.card-overlay {
      position: relative;
      overflow: hidden;
      padding: 0;
      min-height: 240px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      text-align: left;
    }
    .info-card.card-overlay .card-overlay-img {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 0;
    }
    .info-card.card-overlay .card-overlay-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.35;
    }
    .info-card.card-overlay::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(to bottom, rgba(11,26,46,0.1) 0%, rgba(11,26,46,0.85) 65%);
      z-index: 1;
    }
    .info-card.card-overlay .card-overlay-text {
      position: relative;
      z-index: 2;
      padding: 24px;
    }
    .info-card.card-overlay .card-overlay-text h3 {
      color: var(--white);
      font-size: 18px;
      margin-bottom: 6px;
    }
    .info-card.card-overlay .card-overlay-text p {
      color: rgba(255,255,255,0.75);
      font-size: 13px;
      line-height: 1.6;
    }
    .info-card.card-overlay:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    }
    .info-card.card-overlay:hover .card-overlay-img img {
      opacity: 0.45;
    }

    /* Service cards with overlay */
    .services-grid .service-card.card-overlay {
      position: relative;
      overflow: hidden;
      padding: 0;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      text-align: left;
      background: var(--navy);
      border: none;
    }
    .services-grid .service-card.card-overlay .card-overlay-img {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      z-index: 0;
    }
    .services-grid .service-card.card-overlay .card-overlay-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.45;
      transition: opacity 0.3s;
    }
    .services-grid .service-card.card-overlay::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(to bottom, rgba(11,26,46,0) 0%, rgba(11,26,46,0.85) 60%);
      z-index: 1;
      pointer-events: none;
    }
    .services-grid .service-card.card-overlay .card-overlay-text {
      position: relative;
      z-index: 2;
      padding: 24px;
    }
    .services-grid .service-card.card-overlay .card-overlay-text h3 {
      color: var(--white);
      font-size: 17px;
      margin-bottom: 6px;
    }
    .services-grid .service-card.card-overlay .card-overlay-text p {
      color: rgba(255,255,255,0.7);
      font-size: 13px;
      line-height: 1.5;
    }
    .services-grid .service-card.card-overlay .card-overlay-text .service-link {
      color: var(--primary-bright);
      background: rgba(77, 168, 218, 0.15);
    }
    .services-grid .service-card.card-overlay:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.25);
      border: none;
    }
    .services-grid .service-card.card-overlay:hover .card-overlay-img img {
      opacity: 0.5;
    }
    .info-card h3 { font-size: 17px; color: var(--gray-900); margin-bottom: 8px; }
    .info-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

    /* Numbered steps (e.g. "What To Do") */
    .numbered-steps {
      max-width: 700px;
      margin: 0 auto;
    }
    .numbered-step {
      display: flex;
      gap: 20px;
      padding: 24px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .dark-bg .numbered-step {
      border-bottom-color: rgba(255,255,255,0.08);
    }
    .content-section:not(.dark-bg) .numbered-step {
      border-bottom-color: var(--border);
    }
    .numbered-step:last-child { border-bottom: none; }
    .step-num {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--primary);
      color: var(--white);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 16px;
    }
    .numbered-step h3 { font-size: 17px; margin-bottom: 6px; }
    .numbered-step p { font-size: 15px; line-height: 1.7; }
    .dark-bg .numbered-step h3 { color: var(--white); }
    .dark-bg .numbered-step p { color: rgba(255,255,255,0.6); }

    /* Process steps (horizontal, for bathroom/wet room) */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      counter-reset: process;
    }
    .process-step {
      text-align: center;
      position: relative;
      counter-increment: process;
    }
    .process-step::before {
      content: counter(process);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--primary);
      color: var(--white);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 18px;
      margin: 0 auto 16px;
    }
    .process-step h3 { font-size: 16px; margin-bottom: 8px; color: var(--gray-900); }
    .process-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

    /* Area links (service pages) */
    a.area-item {
      display: block;
      text-decoration: none;
      color: var(--gray-700);
    }
    a.area-item:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: var(--primary-light);
    }

    /* Service circuit cards (links) */
    a.service-card {
      display: block;
      text-decoration: none;
    }

    /* ========================================
       LOCAL SUPPLIER AD
       ======================================== */
    .local-supplier {
      padding: 40px 0;
    }

    .local-supplier-inner {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }

    .local-supplier-card {
      display: block;
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .local-supplier-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .local-supplier-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .local-supplier-label {
      display: inline-block;
      margin-top: 12px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-muted, #64748b);
    }

    /* ========================================
       FLOATING SUPPLIER AD
       ======================================== */
    .bp-floating-ad {
      position: fixed;
      bottom: 24px;
      left: 24px;
      z-index: 90;
      max-width: 200px;
      background: var(--white, #fff);
      border-radius: var(--radius-lg, 16px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
      overflow: hidden;
      opacity: 0;
      transform: translateY(20px);
      pointer-events: none;
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .bp-floating-ad.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .bp-floating-ad.dismissed {
      display: none;
    }

    .bp-floating-ad-close {
      position: absolute;
      top: 6px;
      right: 8px;
      background: rgba(0,0,0,0.5);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 22px;
      height: 22px;
      font-size: 14px;
      line-height: 22px;
      text-align: center;
      cursor: pointer;
      z-index: 2;
      transition: background 0.2s;
    }

    .bp-floating-ad-close:hover {
      background: rgba(0,0,0,0.7);
    }

    .bp-floating-ad-link {
      display: block;
      text-decoration: none;
    }

    .bp-floating-ad-link img {
      width: 100%;
      height: auto;
      display: block;
    }

    .bp-floating-ad-link span {
      display: block;
      padding: 8px 12px;
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--text-muted, #64748b);
      text-align: center;
    }

    @media (max-width: 768px) {
      .bp-floating-ad {
        max-width: 150px;
        bottom: 16px;
        left: 16px;
      }
    }

    @media (max-width: 768px) {
      .info-cards {
        grid-template-columns: 1fr;
      }
      .process-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
      }
    }

    @media (max-width: 1024px) {
      .info-cards {
        grid-template-columns: repeat(2, 1fr);
      }
    }
