/* ===========================
       CSS CUSTOM PROPERTIES
    =========================== */
    :root {
      --brand-purple: #7C4DFF;
      --brand-purple-dark: #5B2FBF;
      --brand-purple-deeper: #2D0E6E;
      --brand-teal: #00BCD4;
      --surface-base: #FFFFFF;
      --surface-elevated: #F4F2FF;
      --surface-floating: #EAE6FF;
      --text-primary: #1A1129;
      --text-muted: #6B5C8E;
      --border-subtle: rgba(124,77,255,0.15);
      --shadow-card: 0 4px 20px rgba(124,77,255,0.10), 0 1px 4px rgba(0,0,0,0.05);
      --shadow-button: 0 8px 32px rgba(124,77,255,0.35);
      --shadow-floating: 0 20px 60px rgba(124,77,255,0.12), 0 4px 16px rgba(0,0,0,0.06);
    }

    /* ===========================
       BASE RESETS
    =========================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { overflow-x: hidden; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--surface-base);
      color: var(--text-primary);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      -webkit-user-select: none;
      user-select: none;
    }
    img { display: block; max-width: 100%; -webkit-touch-callout: none; -webkit-user-drag: none; user-select: none; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    blockquote { margin: 0; }

    /* ===========================
       FOCUS STYLES
    =========================== */
    :focus-visible {
      outline: 2px solid var(--brand-purple);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* ===========================
       KEYFRAMES
    =========================== */
    @keyframes pulseGlow {
      0%, 100% { filter: drop-shadow(0 0 30px rgba(124,77,255,0.6)) drop-shadow(0 0 60px rgba(124,77,255,0.25)); }
      50%       { filter: drop-shadow(0 0 50px rgba(124,77,255,0.9)) drop-shadow(0 0 100px rgba(124,77,255,0.45)); }
    }
    @keyframes heroLogoFloat {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-12px); }
    }

    /* ===========================
       ORGANIC / INDUSTRIAL SHAPES
    =========================== */
    /* Alternating tilt on service cards — "scattered pile" feel */
    .service-tab-card:nth-child(odd)  { transform: rotate(-0.4deg); }
    .service-tab-card:nth-child(even) { transform: rotate( 0.4deg); }
    .service-tab-card:hover           { transform: translateY(-6px) rotate(0deg) !important; }

    /* Skewed section eyebrow label */
    .section-eyebrow { transform: skewX(-5deg); display: inline-block; }

    /* Parallelogram accent line (no border-radius) */
    .why-accent-line {
      clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
      border-radius: 0 !important;
    }

    /* Subtle card tilt on steps */
    .step-card:nth-child(2) { transform: rotate( 0.35deg); }
    .step-card:nth-child(3) { transform: rotate(-0.35deg); }
    .step-card:hover        { transform: translateY(-4px) rotate(0deg) !important; }


    /* ===========================
       BUTTONS
    =========================== */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      background: var(--brand-purple);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      box-shadow: var(--shadow-button);
      transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
    }
    .btn-primary:hover {
      background: var(--brand-purple-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(124,77,255,0.55);
    }
    .btn-primary:active { transform: scale(0.98) translateY(0); }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 32px;
      background: transparent;
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-radius: 4px;
      border: 2px solid rgba(255,255,255,0.3);
      cursor: pointer;
      transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .btn-secondary:hover {
      border-color: var(--brand-purple);
      background: rgba(124,77,255,0.12);
      transform: translateY(-2px);
    }
    .btn-secondary:active { transform: scale(0.98); }

    /* ===========================
       SECTION SHARED STYLES
    =========================== */
    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .section-eyebrow {
      display: inline-block;
      color: var(--brand-teal);
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 12px;
    }
    .section-heading {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.875rem, 4vw, 2.75rem);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: -0.03em;
      color: var(--text-primary);
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .section-subtext {
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 520px;
      margin: 0 auto;
    }

    /* ===========================
       NAVBAR
    =========================== */
    #navbar {
      position: sticky;
      top: 0;
      z-index: 100;
      will-change: transform;
      background: rgba(26, 23, 41, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(124,77,255,0.15);
      transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    }
    #navbar.navbar-hidden { transform: translateY(-100%); }
    #navbar.scrolled {
      border-bottom-color: rgba(124,77,255,0.35);
      box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .nav-logo img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
    }
    .nav-brand-name {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #fff;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .nav-links > li > a {
      position: relative;
      padding: 6px 12px;
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-muted);
      transition: color 0.2s ease;
    }
    .nav-links > li > a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 12px;
      right: 12px;
      height: 2px;
      background: var(--brand-purple);
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .nav-links > li > a:hover { color: #fff; }
    .nav-links > li > a:hover::after { transform: scaleX(1); }

    /* ===========================
       MEGA MENU — DESKTOP
    =========================== */
    .nav-item-services {
      position: relative;
    }
    .nav-services-trigger {
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
    }
    .nav-services-trigger .dropdown-chevron {
      width: 12px;
      height: 12px;
      color: var(--text-muted);
      transition: transform 0.2s ease;
      flex-shrink: 0;
    }
    .nav-item-services:hover .dropdown-chevron { transform: rotate(180deg); }
    .mega-menu {
      position: absolute;
      top: calc(100% + 12px);
      left: -16px;
      min-width: 220px;
      background: var(--surface-floating);
      border: 1px solid var(--border-subtle);
      border-radius: 4px;
      padding: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
      box-shadow: var(--shadow-floating);
      z-index: 300;
    }
    .nav-item-services:hover .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    /* bridge gap so mouse can travel from trigger to menu */
    .mega-menu::before {
      content: '';
      position: absolute;
      top: -12px;
      left: 0;
      right: 0;
      height: 12px;
    }
    .mega-cat {
      position: relative;
    }
    .mega-cat-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      width: 100%;
      padding: 10px 14px;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-muted);
      background: transparent;
      border: none;
      border-radius: 4px;
      cursor: default;
      text-align: left;
      white-space: nowrap;
      transition: background 0.15s ease, color 0.15s ease;
    }
    .mega-cat:hover .mega-cat-btn {
      background: rgba(124,77,255,0.12);
      color: #fff;
    }
    .mega-cat-btn .mega-arrow {
      font-size: 0.9rem;
      font-weight: 300;
      opacity: 0.5;
      transition: opacity 0.15s ease;
    }
    .mega-cat:hover .mega-cat-btn .mega-arrow { opacity: 1; }
    .mega-cat-panel {
      position: absolute;
      top: -8px;
      left: calc(100% + 8px);
      min-width: 230px;
      background: var(--surface-floating);
      border: 1px solid var(--border-subtle);
      border-radius: 4px;
      padding: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateX(-4px);
      transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
      box-shadow: var(--shadow-floating);
      z-index: 301;
    }
    .mega-cat:hover .mega-cat-panel {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
    }
    /* bridge gap between category btn and panel */
    .mega-cat-panel::before {
      content: '';
      position: absolute;
      top: 0;
      left: -8px;
      width: 8px;
      height: 100%;
    }
    .mega-cat-panel a {
      display: block;
      padding: 8px 14px;
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 400;
      color: var(--text-muted);
      border-radius: 3px;
      transition: background 0.13s ease, color 0.13s ease;
      white-space: nowrap;
    }
    .mega-cat-panel a:hover {
      background: rgba(124,77,255,0.12);
      color: #fff;
    }
    .mega-cat-divider {
      height: 1px;
      background: rgba(124,77,255,0.12);
      margin: 6px 8px;
    }

    /* ===========================
       MOBILE NAV ACCORDION
    =========================== */
    .mobile-services-item {
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .mobile-services-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 12px 0;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-muted);
      background: transparent;
      border: none;
      cursor: pointer;
      transition: color 0.2s ease;
    }
    .mobile-services-toggle:hover,
    .mobile-services-toggle.open { color: #fff; }
    .mobile-toggle-arrow {
      width: 16px;
      height: 16px;
      transition: transform 0.22s ease;
      flex-shrink: 0;
    }
    .mobile-services-toggle.open .mobile-toggle-arrow { transform: rotate(180deg); }
    .mobile-services-accordion {
      display: none;
      flex-direction: column;
      gap: 4px;
      padding: 0 0 12px 0;
    }
    .mobile-services-accordion.open { display: flex; }
    .mobile-cat {
      display: flex;
      flex-direction: column;
    }
    .mobile-cat-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 9px 14px;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-muted);
      background: rgba(124,77,255,0.07);
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.15s ease, color 0.15s ease;
    }
    .mobile-cat-toggle:hover { background: rgba(124,77,255,0.14); color: #fff; }
    .mobile-cat-toggle.open { background: rgba(124,77,255,0.18); color: #fff; }
    .mobile-cat-toggle.open .mobile-toggle-arrow { transform: rotate(180deg); }
    .mobile-cat-links {
      display: none;
      flex-direction: column;
      padding: 4px 0 4px 14px;
    }
    .mobile-cat-links.open { display: flex; }
    .mobile-cat-links a {
      display: block;
      padding: 7px 12px;
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 400;
      color: var(--text-muted);
      border-radius: 3px;
      transition: background 0.13s ease, color 0.13s ease;
    }
    .mobile-cat-links a:hover { color: #fff; background: rgba(124,77,255,0.1); }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }
    .nav-phone {
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-muted);
      transition: color 0.2s ease;
    }
    .nav-phone:hover { color: #fff; }
    #menu-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 4px;
      position: relative;
      border-radius: 8px;
      transition: background 0.2s ease;
    }
    #menu-toggle:hover { background: rgba(124,77,255,0.15); }
    #menu-toggle svg { position: absolute; transition: opacity 0.2s ease; }
    #menu-toggle .icon-x { opacity: 0; }
    #menu-toggle.open .icon-bars { opacity: 0; }
    #menu-toggle.open .icon-x { opacity: 1; }
    #mobile-menu {
      display: none;
      flex-direction: column;
      padding: 16px 32px 24px;
      border-top: 1px solid rgba(124,77,255,0.1);
      gap: 4px;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-base, #fff);
      z-index: 200;
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
      max-height: 80vh;
      overflow-y: auto;
    }
    #mobile-menu.open { display: flex; }
    #mobile-menu a {
      padding: 12px 0;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-muted);
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: color 0.2s ease;
    }
    #mobile-menu a:hover { color: #fff; }
    #mobile-menu a:last-of-type { border-bottom: none; }
    .mobile-book-btn { margin-top: 8px; display: flex !important; justify-content: center; width: 100%; font-weight: 800 !important; }
    #mobile-menu .btn-primary { color: #fff !important; font-weight: 800 !important; }
    .mobile-phone-btn {
      display: flex !important;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      background: #fff !important;
      color: var(--brand-purple) !important;
      border: 2px solid var(--brand-purple) !important;
      border-radius: 8px;
      padding: 13px 20px !important;
      font-weight: 700 !important;
      margin-top: 8px;
    }
    .mobile-phone-btn .lc { width: 16px; height: 16px; display: inline-flex; }
    .mobile-phone-btn .lc svg { width: 16px; height: 16px; stroke-width: 2; }

    .nav-call-mobile { display: none; }
    @media (max-width: 767px) {
      .nav-links, .nav-actions { display: none; }
      .nav-inner { justify-content: space-between; gap: 12px; }
      #menu-toggle { display: flex; order: -1; color: var(--text-primary); }
      .nav-logo { order: 0; gap: 8px; }
      .nav-logo img { width: 38px; height: 38px; }
      .nav-brand-name { font-size: 0.82rem; }
      .nav-call-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: var(--brand-purple);
        color: #fff;
        flex-shrink: 0;
        transition: background 0.2s ease, opacity 0.2s ease;
      }
      .nav-call-mobile:hover { background: var(--brand-purple-dark, #6030e0); }
      .nav-call-mobile:active { opacity: 0.8; transform: scale(0.95); }
    }

    /* ===========================
       HERO SECTION
    =========================== */
    #hero {
      position: relative;
      min-height: 100vh;
      overflow: hidden;
      background: #0a0519 url('../brand_assets/website-header-image.webp') center 55% / cover no-repeat;
      display: flex;
      align-items: center;
    }
    .hero-gradient-1 {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 90% 70% at 68% 50%, rgba(61,27,142,0.85) 0%, rgba(26,10,64,0.65) 45%, transparent 100%);
      pointer-events: none;
    }
    .hero-gradient-2 {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 45% 55% at 68% 52%, rgba(124,77,255,0.3) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-gradient-3 {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 30% 30% at 15% 80%, rgba(0,188,212,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-noise {
      position: absolute;
      inset: 0;
      opacity: 0.035;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 256px 256px;
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 80px 32px 70px;
      display: grid;
      grid-template-columns: 1.1fr 260px 1fr;
      gap: 40px;
      align-items: center;
    }
    .hero-left { display: flex; flex-direction: column; gap: 0; }
    .hero-badges-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }
    .reviews-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(124,77,255,0.18);
      border: 1px solid rgba(124,77,255,0.4);
      border-radius: 5px;
      padding: 7px 12px 7px 10px;
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-primary);
      width: fit-content;
      white-space: nowrap;
    }
    .reviews-badge .badge-stars { color: #E8920A; font-size: 0.85rem; letter-spacing: 1px; text-shadow: 0 0 6px rgba(255,255,255,0.8), 0 0 14px rgba(255,255,255,0.35); }
    .reviews-badge .badge-count { color: var(--brand-teal); border-bottom: none !important; }
    .hero-h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2.5rem, 5.5vw, 4.75rem);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.03em;
      line-height: 1.0;
      color: #fff;
      margin-bottom: 20px;
    }
    .hero-h1 span { color: var(--brand-purple); }
    .hero-slogan {
      font-family: 'Inter', sans-serif;
      font-style: italic;
      font-size: 1.1rem;
      color: var(--text-muted);
      margin-bottom: 36px;
      line-height: 1.6;
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
    }
    .btn-hero-primary {
      padding: 17px 40px;
      font-size: 1rem;
    }
    .btn-hero-secondary {
      padding: 15px 36px;
      font-size: 1rem;
    }
    .hero-right {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-logo-container {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    #logo-wave-canvas {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 0;
    }
    .hero-logo-wrapper {
      animation: pulseGlow 3s ease-in-out infinite, heroLogoFloat 6s ease-in-out infinite;
      border-radius: 50%;
      padding: 5px;
      background: linear-gradient(135deg, var(--brand-purple), var(--brand-teal));
      width: 220px;
      height: 220px;
      flex-shrink: 0;
    }
    .hero-logo-img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      display: block;
    }
    /* Hero form column */
    .hero-form-col {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-form-box {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 6px;
      padding: 28px 24px;
      backdrop-filter: blur(12px);
    }
    .hero-form-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #fff;
      margin-bottom: 16px;
    }
    .hero-form-title span { color: var(--brand-teal); }
    .hero-quote-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .hero-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .hero-quote-form input,
    .hero-quote-form textarea {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 4px;
      padding: 11px 14px;
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      width: 100%;
      box-sizing: border-box;
      transition: border-color 0.2s ease, background 0.2s ease;
    }
    .hero-quote-form input:focus,
    .hero-quote-form textarea:focus {
      border-color: rgba(124,77,255,0.7);
      outline: none;
      background: rgba(255,255,255,0.12);
    }
    .hero-quote-form input::placeholder,
    .hero-quote-form textarea::placeholder { color: rgba(255,255,255,0.38); }
    .hero-quote-form textarea { resize: none; }
    .btn-hero-submit {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 13px 20px;
      background: var(--brand-purple);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      box-shadow: var(--shadow-button);
      transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
      margin-top: 2px;
    }
    .btn-hero-submit:hover  { background: var(--brand-purple-dark); transform: translateY(-2px); }
    .btn-hero-submit:active { transform: scale(0.98); }
    .form-guarantee {
      text-align: center;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.5);
      margin-top: 10px;
      letter-spacing: 0.01em;
    }

    @media (max-width: 1024px) {
      .hero-content {
        grid-template-columns: 1fr 220px;
        grid-template-rows: auto auto;
      }
      .hero-left     { grid-column: 1; grid-row: 1; }
      .hero-right    { grid-column: 2; grid-row: 1; }
      .hero-form-col { grid-column: 1 / -1; grid-row: 2; }
      .hero-form-box { max-width: 600px; }
      .hero-form-row { grid-template-columns: 1fr 1fr 1fr; }
    }
    @media (max-width: 767px) {
      #hero {
        background-image: url('../brand_assets/filipe-and-henrique-the-junk-heroes-truck.webp');
        background-position: 58% 20%;
      }
      .hero-gradient-1 { background: rgba(10,5,25,0.28); }
      .hero-gradient-2, .hero-gradient-3 { display: none; }
      .hero-content {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto auto;
        padding: 70px 20px 50px;
        gap: 16px 14px;
      }
      /* Dissolve hero-left box so its children join the grid directly */
      .hero-left { display: contents; }
      .hero-h1 { grid-column: 1 / -1; grid-row: 1; font-size: clamp(1.9rem, 9.5vw, 3rem); text-align: center; }
      .hero-slogan { grid-column: 1 / -1; grid-row: 2; text-align: center; }
      .hero-ctas { display: none; }
      /* Logo on left, pills on right — same row */
      .hero-right { grid-column: 1; grid-row: 3; display: flex; justify-content: flex-start; align-items: center; }
      .hero-badges-row { grid-column: 2; grid-row: 3; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; margin-bottom: 0; }
      .hero-form-col { grid-column: 1 / -1; grid-row: 4; }
      /* Fix form row back to 2 cols (1024px breakpoint sets it to 3) */
      .hero-form-row { grid-template-columns: 1fr 1fr; }
      /* Override the !important blob — use a tight circle on mobile */
      .hero-logo-wrapper { width: 110px !important; height: 110px !important; border-radius: 50% !important; animation: pulseGlow 3s ease-in-out infinite, heroLogoFloat 6s ease-in-out infinite !important; }
      .hero-logo-img { width: 110px !important; height: 110px !important; border-radius: 50% !important; }
    }

    /* ===========================
       TRUST BAR
    =========================== */
    .trust-bar {
      background: var(--surface-base);
      border-top: 2px solid rgba(124,77,255,0.5);
      overflow: hidden;
    }
    .trust-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: center;
      overflow-x: auto;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 14px 18px;
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--text-muted);
      white-space: nowrap;
      white-space: nowrap;
    }
    .trust-item.highlight { color: #fff; }
    .trust-icon-star { color: #E8920A; font-size: 0.9rem; text-shadow: 0 0 6px rgba(255,255,255,0.8), 0 0 14px rgba(255,255,255,0.35); }
    .trust-icon-pin { color: var(--brand-purple); }
    .trust-icon-bolt { color: var(--brand-purple); }
    .trust-divider {
      width: 1px;
      height: 20px;
      background: rgba(124,77,255,0.25);
      flex-shrink: 0;
    }
    @media (max-width: 640px) {
      .trust-divider { display: none; }
      .trust-bar { padding-top: 28px; padding-bottom: 4px; }
      .trust-bar-inner { flex-wrap: wrap; overflow-x: visible; padding: 0 12px; justify-content: center; }
      .trust-item { padding: 6px 10px; white-space: nowrap; font-size: 0.68rem; justify-content: center; }
      .trust-item.highlight { display: none; }
      .trust-item-location { width: 100%; justify-content: center; }
      .trust-item-sameday, .trust-item-brothers { flex: 1; justify-content: center; }
    }

    /* ===========================
       SERVICES SECTION (TABS)
    =========================== */
    #services {
      background: #fff;
      padding: 100px 0;
      box-shadow: inset 0 -8px 16px -4px rgba(124,77,255,0.07);
    }
    .tab-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: 36px;
    }
    .tab-btn {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      background: var(--surface-floating);
      border: 2px solid rgba(124,77,255,0.15);
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      padding: 0;
      text-align: left;
      transition: border-color 0.2s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease;
    }
    .tab-btn:hover:not(.active) {
      border-color: rgba(124,77,255,0.4);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(124,77,255,0.15);
    }
    .tab-btn.active {
      border-color: var(--brand-purple);
      box-shadow: 0 0 0 1px var(--brand-purple), 0 8px 28px rgba(124,77,255,0.25);
      transform: translateY(-3px);
    }
    .tab-btn-img {
      width: 100%;
      aspect-ratio: 5/3;
      height: auto;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .tab-btn-label {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
      padding: 11px 14px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--text-muted);
      transition: color 0.2s ease;
    }
    .tab-btn.active .tab-btn-label { color: var(--brand-purple); }
    .tab-btn-label-arrow {
      font-size: 0.7rem;
      opacity: 0;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .tab-btn.active .tab-btn-label-arrow,
    .tab-btn:hover .tab-btn-label-arrow { opacity: 1; transform: translateX(2px); }
    .tab-btn:focus-visible { outline: 2px solid var(--brand-teal); outline-offset: 2px; }
    @media (max-width: 700px) {
      .tab-bar { grid-template-columns: repeat(2, 1fr); }
      .tab-btn-img { height: auto; }
      .tab-btn-label { justify-content: center; padding: 10px 8px; font-size: 0.72rem; }
      .tab-btn-label-arrow { display: none; }
    }
    .tab-content { display: none; }
    .tab-content.active { display: block; }
    .service-tab-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .service-tab-card {
      background: var(--surface-floating);
      border-radius: 5px;
      border: 1px solid rgba(124,77,255,0.12);
      box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.5);
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
    }
    .service-tab-card:hover {
      transform: translateY(-6px);
      border-color: rgba(124,77,255,0.5);
      box-shadow: 0 12px 40px rgba(124,77,255,0.25), 0 2px 8px rgba(0,0,0,0.5);
    }
    .service-tab-card a {
      display: grid;
      grid-template-columns: 36px 1fr 32px;
      grid-template-rows: auto auto;
      grid-template-areas: "icon title arrow" "icon desc arrow";
      column-gap: 14px;
      row-gap: 1px;
      align-items: center;
      padding: 20px 18px;
      text-decoration: none;
      color: inherit;
    }
    .card-icon {
      grid-area: icon;
      display: flex;
      align-items: center;
      justify-content: center;
      align-self: center;
      margin-bottom: 0;
      font-size: 0;
    }
    .service-tab-card h3 {
      grid-area: title;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.82rem;
      color: #fff;
      margin-bottom: 0;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      line-height: 1.2;
    }
    .service-tab-card p {
      grid-area: desc;
      color: var(--text-muted);
      font-size: 0.78rem;
      line-height: 1.4;
      margin: 0;
    }
    .card-link-arrow {
      grid-area: arrow;
      display: flex;
      align-items: center;
      justify-content: center;
      align-self: center;
      width: 26px; height: 26px;
      border-radius: 50%;
      background: rgba(124,77,255,0.1);
      color: var(--brand-purple);
      font-size: 0.8rem;
      font-weight: 700;
      flex-shrink: 0;
      transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
    .service-tab-card:hover .card-link-arrow {
      background: var(--brand-purple);
      color: #fff;
      transform: translateX(2px);
    }
    @media (max-width: 900px) {
      .service-tab-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px) {
      .service-tab-grid { grid-template-columns: repeat(2, 1fr); }
      .service-tab-card a {
        grid-template-columns: 28px 1fr;
        grid-template-areas: "icon title" "icon title";
        padding: 14px 12px;
        column-gap: 10px;
        align-items: center;
      }
      .service-tab-card p { display: none; }
      .card-link-arrow { display: none; }
      .service-tab-card h3 { font-size: 0.75rem; }
      .tab-btn { font-size: 0.72rem; padding: 9px 13px; }
    }
    @media (max-width: 1100px) and (min-width: 901px) {
      .service-tab-grid { grid-template-columns: repeat(3, 1fr); }
    }

    /* ── Mobile section spacing ── */
    @media (max-width: 767px) {
      #services, #why-us, #meet-crew, #reviews, #video-instagram,
      #service-areas, #book { padding: 36px 0; }
      #book { padding: 36px 20px; }
      .section-container { padding: 0 18px; }
      .section-header { margin-bottom: 24px; }
      .section-subtext { font-size: 0.9rem; }
    }

    /* ===========================
       WHY CHOOSE US
    =========================== */
    #why-us {
      background: var(--surface-base);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    #why-us::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80%;
      height: 50%;
      background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(124,77,255,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .why-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .why-pillar {
      padding: 40px 32px;
      background: var(--surface-elevated);
      border-radius: 5px;
      border: 1px solid rgba(124,77,255,0.1);
      transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .why-pillar:hover {
      border-color: rgba(124,77,255,0.3);
      transform: translateY(-4px);
    }
    .why-accent-line {
      height: 3px;
      width: 48px;
      background: linear-gradient(90deg, var(--brand-purple), var(--brand-teal));
      border-radius: 2px;
      margin-bottom: 24px;
    }
    .why-icon {
      font-size: 2.25rem;
      margin-bottom: 16px;
    }
    .why-pillar h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: #fff;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: -0.01em;
    }
    .why-pillar p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.75;
    }
    .why-pricing-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 18px 0 20px;
    }
    .why-pricing-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 5px 11px;
      border-radius: 100px;
      border: 1px solid rgba(124,77,255,0.35);
      background: rgba(124,77,255,0.07);
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--brand-purple);
      white-space: nowrap;
    }
    .why-pricing-pill svg { flex-shrink: 0; }
    .why-pricing-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--brand-purple);
      transition: color 0.2s ease, transform 0.2s ease;
    }
    .why-pricing-link:hover { color: #fff; transform: translateX(3px); }
    @media (max-width: 900px) {
      .why-grid { grid-template-columns: 1fr; gap: 20px; }
    }
    @media (max-width: 767px) {
      .why-pillar p { display: none; }
      .why-pillar {
        padding: 18px 20px;
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 4px 16px;
      }
      .why-accent-line { display: none; }
      .why-icon {
        grid-column: 1;
        grid-row: 1 / -1;
        align-self: center;
        justify-self: center;
        margin-bottom: 0;
        font-size: 1.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
      }
      .why-pillar h3 { grid-column: 2; align-self: center; margin: 0; }
      .why-pricing-pills,
      .why-pricing-link { grid-column: 2; }
    }


    /* ===========================
       HOW IT WORKS
    =========================== */
    #how-it-works {
      background: var(--surface-elevated);
      padding: 100px 0;
      box-shadow: inset 0 -8px 16px -4px rgba(124,77,255,0.07);
    }
    .steps-wrapper {
      position: relative;
    }
    .steps-connector {
      position: absolute;
      top: 56px;
      left: calc(50% / 3 + 32px);
      right: calc(50% / 3 + 32px);
      height: 2px;
      background: linear-gradient(90deg, var(--brand-purple), var(--brand-teal));
      z-index: 0;
    }
    .steps-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .step-card {
      text-align: center;
      padding: 40px 24px;
      background: var(--surface-floating);
      border-radius: 5px;
      border: 1px solid rgba(124,77,255,0.12);
    }
    .step-number {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-dark));
      color: #fff;
      margin-bottom: 24px;
      box-shadow: var(--shadow-button);
    }
    .step-number .lc svg { width: 28px; height: 28px; stroke: #fff; stroke-width: 1.8; }
    .step-num-badge {
      position: absolute;
      top: -5px;
      right: -5px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--brand-teal);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 0.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      letter-spacing: 0.02em;
      box-shadow: 0 2px 6px rgba(0,188,212,0.4);
    }
    .step-card h3 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      color: #fff;
      margin-bottom: 12px;
    }
    .step-card p {
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.7;
    }
    .step-cta-btn {
      display: inline-block;
      margin-top: 24px;
      padding: 11px 28px;
      background: var(--brand-purple);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 0.8rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 6px;
      box-shadow: 0 4px 14px rgba(124,77,255,0.35), 0 1px 3px rgba(124,77,255,0.2);
      transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), opacity 0.15s ease;
    }
    .step-cta-btn:hover { transform: translateY(-2px); opacity: 0.92; }
    .step-cta-btn:active { transform: scale(0.97); }
    .step2-mobile { display: none; }
    @media (max-width: 767px) {
      .step2-desktop { display: none; }
      .step2-mobile { display: inline; }
    }
    @media (max-width: 767px) {
      .steps-connector { display: none; }
      .steps-grid { grid-template-columns: 1fr; gap: 16px; }
      .step-card { text-align: left; display: grid; grid-template-columns: 52px 1fr; grid-template-rows: auto auto; align-items: start; column-gap: 20px; padding: 24px; }
      .step-number { grid-column: 1; grid-row: 1 / 3; width: 52px; height: 52px; margin-bottom: 0; align-self: start; }
      .step-number .lc svg { width: 22px; height: 22px; }
      .step-card-text { grid-column: 2; grid-row: 1; }
      .step-cta-btn { grid-column: 2; grid-row: 2; margin-top: 16px; width: fit-content; text-align: center; justify-self: start; }
    }

    /* ===========================
       VIDEO + INSTAGRAM SECTION
    =========================== */
    #video-instagram { background: #fff; padding: 100px 0; box-shadow: inset 0 -8px 16px -4px rgba(124,77,255,0.07); }
    #video-player-wrap { position: relative; border-radius: 14px; overflow: hidden; background: #0d0a14; margin-bottom: 48px; }
    #video-play-btn:hover { transform: scale(1.1); background: var(--brand-purple) !important; }
    .video-facade {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 8px 40px rgba(124,77,255,0.18), 0 2px 8px rgba(0,0,0,0.1);
      margin-bottom: 64px;
    }
    .video-facade img {
      width: 100%;
      display: block;
      aspect-ratio: 16/9;
      object-fit: cover;
    }
    .video-play-btn {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(26,17,41,0.35);
      border: none;
      cursor: pointer;
      transition: background 0.2s ease;
    }
    .video-play-btn:hover { background: rgba(26,17,41,0.5); }
    .video-play-icon {
      width: 72px; height: 72px;
      background: var(--brand-purple);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 32px rgba(124,77,255,0.5);
      transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
    }
    .video-play-btn:hover .video-play-icon { transform: scale(1.1); }
    .video-play-icon svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }
    .video-facade iframe {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      border: none;
    }
    /* Instagram grid */
    .insta-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }
    .insta-title {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .insta-title svg { color: var(--brand-purple); flex-shrink: 0; }
    .insta-title-text {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: var(--text-primary);
    }
    .insta-title-handle {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--text-muted);
      margin-left: 2px;
    }
    .insta-follow-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 18px;
      border: 1.5px solid rgba(124,77,255,0.35);
      border-radius: 6px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--brand-purple);
      text-decoration: none;
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }
    .insta-follow-btn:hover { background: var(--brand-purple); color: #fff; border-color: var(--brand-purple); }
    .insta-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
    }
    .insta-post {
      position: relative;
      aspect-ratio: 1;
      border-radius: 8px;
      overflow: hidden;
      background: var(--surface-floating);
    }
    .insta-post img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }
    .insta-post:hover img { transform: scale(1.06); }
    .insta-post-overlay {
      position: absolute; inset: 0;
      background: rgba(124,77,255,0.7);
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      transition: opacity 0.2s ease;
    }
    .insta-post:hover .insta-post-overlay { opacity: 1; }
    .insta-post-overlay svg { color: #fff; }
    @media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 560px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }

    /* ===========================
       REVIEWS SECTION
    =========================== */
    #reviews {
      background: var(--surface-elevated);
      padding: 100px 0 48px;
    }
    .google-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 5px;
      padding: 8px 20px;
      margin-top: 20px;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-muted);
    }
    .google-rating-num {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
    }
    .google-stars { color: #E8920A; letter-spacing: 1px; text-shadow: 0 0 6px rgba(255,255,255,0.8), 0 0 14px rgba(255,255,255,0.35); }
    /* Carousel wrapper */
    .reviews-carousel {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
    }
    .reviews-track-wrap {
      overflow: hidden;
      border-radius: 6px;
    }
    .reviews-track {
      display: flex;
      gap: 24px;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .review-card {
      min-width: calc(33.333% - 16px);
      background: #fff;
      border-radius: 6px;
      padding: 40px 48px;
      border: 1px solid rgba(124,77,255,0.12);
      box-shadow: 0 6px 24px rgba(124,77,255,0.08), 0 1px 4px rgba(0,0,0,0.04);
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }
    .review-stars {
      color: #E8920A;
      font-size: 1.1rem;
      letter-spacing: 3px;
      text-shadow: 0 0 8px rgba(232,146,10,0.4);
      margin-bottom: 20px;
    }
    .review-card blockquote { flex: 1; }
    .review-card blockquote p {
      color: var(--text-muted);
      font-style: italic;
      font-size: 0.95rem;
      line-height: 1.8;
    }
    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid rgba(124,77,255,0.1);
    }
    .reviewer-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand-purple), var(--brand-teal));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      color: #fff;
      flex-shrink: 0;
    }
    .reviewer-name {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--text-primary);
    }
    .reviewer-location {
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    /* Arrow buttons */
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: none;
      background: var(--brand-purple);
      color: #fff;
      font-size: 1.3rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 18px rgba(124,77,255,0.4), 0 1px 4px rgba(0,0,0,0.12);
      transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.15s ease, opacity 0.15s ease;
      z-index: 2;
    }
    .carousel-btn:hover { transform: translateY(-50%) scale(1.1); box-shadow: 0 6px 24px rgba(124,77,255,0.55), 0 2px 6px rgba(0,0,0,0.15); }
    .carousel-btn:active { transform: translateY(-50%) scale(0.95); opacity: 0.9; }
    .carousel-btn.prev { left: -68px; }
    .carousel-btn.next { right: -68px; }
    /* Dots */
    .carousel-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 28px;
    }
    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(124,77,255,0.2);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .carousel-dot.active {
      background: var(--brand-purple);
      transform: scale(1.3);
    }
    @media (max-width: 900px) {
      .carousel-btn.prev { left: -12px; }
      .carousel-btn.next { right: -12px; }
      .review-card { padding: 28px 24px; }
    }
    @media (max-width: 767px) {
      .reviews-carousel {
        overflow-x: clip;
        overflow-y: visible;
        max-width: 100%;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
      }
      .reviews-track-wrap {
        order: 1;
        width: 100%;
        overflow: visible;
        border-radius: 0;
      }
      .reviews-track { gap: 16px; }
      .review-card {
        min-width: calc(85vw);
        max-width: calc(85vw);
        flex-shrink: 0;
        padding: 24px 20px;
        box-sizing: border-box;
        overflow: hidden;
      }
      .review-card blockquote p {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
      }
      .carousel-btn {
        display: flex;
        position: static;
        transform: none;
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
        flex-shrink: 0;
        margin-top: 20px;
      }
      .carousel-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(124,77,255,0.55); }
      .carousel-btn:active { transform: scale(0.95); }
      .carousel-btn.prev { order: 2; }
      .carousel-dots { order: 3; margin-top: 20px; display: flex; align-items: center; gap: 6px; }
      .carousel-btn.next { order: 4; }
      .reviews-carousel { justify-content: center; align-items: center; gap: 0 12px; }
    }

    /* ===========================
       SERVICE AREAS
    =========================== */
    #service-areas {
      background: var(--surface-elevated);
      padding: 100px 0;
    }
    .areas-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 7px;
      margin-bottom: 40px;
    }
    .area-badge {
      display: block;
      padding: 5px 10px;
      text-align: center;
      border-radius: 5px;
      background: var(--surface-floating);
      border: 1px solid rgba(124,77,255,0.2);
      color: var(--text-muted);
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      font-weight: 500;
      transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.2s ease, color 0.2s ease;
      cursor: pointer;
      text-decoration: none;
    }
    .area-badge:hover {
      transform: translateY(-2px);
      border-color: rgba(124,77,255,0.5);
      color: #fff;
    }
    .area-badge:focus-visible {
      outline: 2px solid #7C4DFF;
      outline-offset: 3px;
    }
    .area-badge:active { transform: translateY(0); }
    .area-badge.primary {
      background: var(--surface-floating);
      border: 1px solid rgba(124,77,255,0.2);
      color: var(--text-muted);
      font-weight: 500;
    }
    .area-pin { color: var(--brand-purple); }
    .areas-footnote {
      text-align: center;
      color: var(--text-muted);
      font-size: 0.9rem;
    }
    .areas-footnote a {
      color: var(--brand-purple);
      font-weight: 600;
      transition: color 0.2s ease;
    }
    .areas-footnote a:hover { color: #fff; }

    /* Areas split layout */
    .areas-split {
      display: flex;
      gap: 28px;
      align-items: stretch;
      justify-content: center;
      margin-bottom: 32px;
    }
    .areas-split .areas-grid {
      flex: 1 1 55%;
      min-width: 0;
      grid-template-columns: repeat(4, 1fr);
      margin-bottom: 0;
    }
    .areas-map-col {
      flex: 0 0 42%;
      min-width: 280px;
      display: flex;
      flex-direction: column;
    }
    .areas-map-wrap {
      width: 100%;
      height: 100%;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(124,77,255,0.25);
      box-shadow: 0 4px 24px rgba(124,77,255,0.15), 0 1px 4px rgba(0,0,0,0.3);
      position: relative;
    }
    .areas-map-wrap iframe {
      position: absolute;
      top: -60px;
      left: 0;
      width: 100%;
      height: calc(100% + 60px);
      border: none;
      display: block;
    }
    @media (max-width: 900px) {
      .areas-split { flex-direction: column; }
      .areas-map-col { flex: 1 1 auto; width: 100%; min-width: 0; }
      .areas-split .areas-grid { justify-content: center; }
      .areas-map-wrap { height: 320px; }
    }
    @media (max-width: 767px) {
      .areas-grid,
      .areas-split .areas-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
      .area-badge { font-size: 0.75rem; padding: 5px 6px; gap: 3px; }
      .area-pin .lc, .area-pin .lc svg { width: 10px; height: 10px; }
      .area-state { display: none; }
      .areas-split { flex-direction: column; }
      .areas-map-col { order: -1; }
      .areas-map-wrap { height: auto; aspect-ratio: 5 / 4; }
    }
    .area-badge a {
      color: inherit;
      text-decoration: none;
    }

    /* ===========================
       CTA BANNER
    =========================== */
    #book {
      scroll-margin-top: 9999px;
      position: relative;
      overflow: hidden;
      padding: 100px 32px;
      text-align: center;
      background: linear-gradient(135deg, var(--brand-purple-deeper) 0%, var(--brand-purple-dark) 40%, var(--brand-purple) 70%, var(--brand-teal) 100%);
    }
    .cta-radial-overlay {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(124,77,255,0.35) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-noise {
      position: absolute;
      inset: 0;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 256px 256px;
      pointer-events: none;
    }
    .cta-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }
    .cta-h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: -0.03em;
      color: #fff;
      line-height: 1.05;
      margin-bottom: 20px;
    }
    .cta-subp {
      color: rgba(255,255,255,0.8);
      font-size: 1.05rem;
      margin-bottom: 36px;
    }
    .cta-phone {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: clamp(2rem, 5vw, 3rem);
      color: #fff;
      letter-spacing: -0.02em;
      margin-bottom: 32px;
      transition: text-shadow 0.2s ease;
    }
    .cta-phone:hover {
      text-shadow: 0 0 30px rgba(255,255,255,0.6);
    }
    .btn-cta-white {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 52px;
      background: #fff;
      color: var(--brand-purple);
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.05rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
    }
    .btn-cta-white:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    }
    .btn-cta-white:active { transform: scale(0.98); }
    .cta-foot-note {
      margin-top: 20px;
      color: rgba(255,255,255,0.6);
      font-size: 0.85rem;
    }
    /* CTA split layout */
    #book { text-align: left; }
    .cta-inner {
      position: relative;
      z-index: 1;
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .cta-left { /* inherits cta-content styles where applicable */ }
    /* Quote form styles */
    .quote-form-wrap {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 6px;
      padding: 36px 32px;
      backdrop-filter: blur(10px);
      box-shadow: 0 0 40px rgba(255,255,255,0.08), 0 0 80px rgba(255,255,255,0.04), 0 8px 32px rgba(0,0,0,0.2);
    }
    .quote-form-heading {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.15rem;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      margin-bottom: 20px;
      display: block;
    }
    .quote-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .quote-form input,
    .quote-form textarea {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 4px;
      padding: 14px 16px;
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      width: 100%;
      box-sizing: border-box;
      transition: border-color 0.2s ease, background 0.2s ease;
    }
    .quote-form input:focus,
    .quote-form textarea:focus {
      border-color: rgba(124,77,255,0.7);
      outline: none;
      background: rgba(255,255,255,0.12);
    }
    .quote-form input::placeholder,
    .quote-form textarea::placeholder { color: rgba(255,255,255,0.4); }
    .quote-form textarea { resize: vertical; }
    .btn-quote-submit {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 16px 24px;
      background: #fff;
      color: var(--brand-purple);
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      margin-top: 4px;
      transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
    }
    .btn-quote-submit:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    }
    .btn-quote-submit:active { transform: scale(0.98); }
    @media (max-width: 900px) {
      .cta-inner { grid-template-columns: 1fr; gap: 40px; }
      #book { text-align: center; padding: 60px 24px; }
      .form-row { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .quote-form-wrap { padding: 24px 18px; }
    }

    /* ===========================
       FOOTER
    =========================== */
    #site-footer { background: #0A0812; border-top: 3px solid transparent; border-image: linear-gradient(90deg,#2D0E6E,#7C4DFF,#00BCD4) 1; }
    .footer-main { max-width: 1280px; margin: 0 auto; padding: 64px 32px 48px; }
    .footer-inner { display: grid; grid-template-columns: 220px 160px 2fr 1fr; gap: 36px; padding-bottom: 48px; border-bottom: 1px solid rgba(124,77,255,0.12); }
    .footer-areas-list { display: flex; gap: 12px; }
    .footer-areas-list ul { flex: 1; display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; margin: 0; }    .footer-brand { display: flex; flex-direction: column; gap: 14px; }
    .footer-logo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; display: block; }
    .footer-brand-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; color: #fff; }
    .footer-tagline { color: rgba(184,169,217,0.6); font-size: 0.82rem; line-height: 1.65; }
    .footer-nap { display: flex; flex-direction: column; gap: 6px; }
    .footer-nap a, .footer-nap span { color: rgba(184,169,217,0.55); font-size: 0.8rem; text-decoration: none; transition: color 0.2s ease; }
    .footer-nap a:hover { color: #fff; }
    .footer-social-btn { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 6px; text-decoration: none; flex-shrink: 0; transition: background 0.2s ease, color 0.2s ease; }
    .footer-social-btn.insta { background: rgba(124,77,255,0.15); color: rgba(184,169,217,0.8); border: 1px solid #7C4DFF; }
    .footer-social-btn.fb { background: rgba(124,77,255,0.15); color: rgba(184,169,217,0.8); border: 1px solid #7C4DFF; }
    .footer-social-btn:hover { background: rgba(124,77,255,0.35) !important; color: #fff !important; }
    .footer-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brand-teal); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(124,77,255,0.15); }
    .footer-col-areas h4 { display: flex; align-items: center; gap: 14px; white-space: nowrap; border-bottom: none; padding-bottom: 0; margin-bottom: 18px; }
    .footer-col-areas h4::before, .footer-col-areas h4::after { content: ''; flex: 1; height: 1px; background: var(--brand-teal); }
    .footer-col ul { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; }
    .footer-col ul a { color: rgba(184,169,217,0.6); font-size: 0.8rem; text-decoration: none; transition: color 0.2s ease; display: block; line-height: 1.4; }
    .footer-col ul a:hover { color: #fff; }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; color: rgba(184,169,217,0.35); font-size: 0.75rem; }
    .footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
    .footer-bottom-links a { color: rgba(184,169,217,0.35); text-decoration: none; font-size: 0.75rem; transition: color 0.2s ease; }
    .footer-bottom-links a:hover { color: rgba(184,169,217,0.7); }
    @media (max-width: 1100px) { .footer-inner { grid-template-columns: 180px 1fr 1fr 1.4fr 1fr; gap: 24px; } }
    @media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1 / -1; } }
    @media (max-width: 560px) {
      .footer-inner { grid-template-columns: 1fr; }
      .footer-brand { grid-column: auto; align-items: center; text-align: center; }
      .footer-logo { margin: 0 auto; }
      .footer-nap { align-items: center; text-align: center; }
      .footer-col { text-align: center; }
      .footer-col h4 { justify-content: center; }
      .footer-col ul { align-items: center; }
      .footer-col-areas h4 { justify-content: center; }
      .footer-areas-list { justify-content: center; }
      .footer-areas-list ul { align-items: center; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
      .footer-bottom-links { justify-content: center; }
    }

    /* ===========================
       LUCIDE ICON HELPERS
    =========================== */
    .lc {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      vertical-align: middle;
    }
    .lc svg { display: block; }
    /* Mega menu category icons */
    .mega-cat-btn .lc { width: 16px; height: 16px; margin-right: 8px; color: var(--brand-purple); }
    .mega-cat-btn .lc svg { width: 16px; height: 16px; stroke-width: 2; }
    /* Mega panel service link icons */
    .mega-cat-panel a .lc { width: 14px; height: 14px; margin-right: 8px; color: var(--brand-purple); opacity: 0.75; }
    .mega-cat-panel a .lc svg { width: 14px; height: 14px; stroke-width: 2; }
    .mega-cat-panel a:hover .lc { opacity: 1; }
    /* Areas dropdown link icons */
    .areas-dropdown a .lc { width: 14px; height: 14px; margin-right: 8px; color: var(--brand-purple); opacity: 0.75; }
    .areas-dropdown a .lc svg { width: 14px; height: 14px; stroke-width: 2; }
    .areas-dropdown a:hover .lc { opacity: 1; }
    /* Mobile accordion category icons */
    .mobile-cat-toggle .lc { width: 15px; height: 15px; margin-right: 8px; color: var(--brand-purple); }
    .mobile-cat-toggle .lc svg { width: 15px; height: 15px; stroke-width: 2; }
    /* Mobile cat link icons */
    .mobile-cat-links a .lc { width: 14px; height: 14px; margin-right: 8px; color: var(--brand-purple); opacity: 0.75; }
    .mobile-cat-links a .lc svg { width: 14px; height: 14px; stroke-width: 2; }
    .mobile-cat-links a:hover .lc { opacity: 1; }
    /* Service tab card icons */
    .card-icon .lc { width: 26px; height: 26px; color: var(--brand-purple); }
    .card-icon .lc svg { width: 26px; height: 26px; stroke-width: 1.75; }
    /* Trust bar icons */
    .trust-icon-pin .lc, .trust-icon-bolt .lc { width: 15px; height: 15px; color: var(--brand-purple); }
    .trust-icon-pin .lc svg, .trust-icon-bolt .lc svg { width: 15px; height: 15px; stroke-width: 2; }
    /* Why-us icons */
    .why-icon .lc { width: 36px; height: 36px; color: var(--brand-purple); }
    .why-icon .lc svg { width: 36px; height: 36px; stroke-width: 1.5; }
    /* Area badge pin */
    .area-pin .lc { width: 14px; height: 14px; }
    .area-pin .lc svg { width: 14px; height: 14px; stroke-width: 2; }

    /* ===========================
       ORGANIC SHAPES
    =========================== */
    @keyframes blobMorph {
      0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 45% 55%; }
      25%       { border-radius: 48% 52% 44% 56% / 60% 44% 56% 40%; }
      50%       { border-radius: 42% 58% 62% 38% / 46% 54% 46% 54%; }
      75%       { border-radius: 56% 44% 50% 50% / 52% 48% 58% 42%; }
    }
    .hero-logo-wrapper {
      position: relative;
      z-index: 1;
      width: 220px !important;
      height: 220px !important;
      border-radius: 60% 40% 55% 45% / 50% 60% 45% 55% !important;
      animation: pulseGlow 3s ease-in-out infinite, heroLogoFloat 6s ease-in-out infinite, blobMorph 12s ease-in-out infinite !important;
    }
    .hero-logo-img {
      border-radius: 58% 42% 53% 47% / 48% 58% 43% 52% !important;
    }
    /* Kill blob on mobile — this must come AFTER the blob block above */
    @media (max-width: 767px) {
      .hero-logo-wrapper {
        width: 110px !important;
        height: 110px !important;
        border-radius: 50% !important;
        animation: pulseGlow 3s ease-in-out infinite, heroLogoFloat 6s ease-in-out infinite !important;
      }
      .hero-logo-img {
        width: 110px !important;
        height: 110px !important;
        border-radius: 50% !important;
      }
    }

    /* ===========================
       SERVICE AREAS DROPDOWN (desktop)
    =========================== */
    .nav-item-areas {
      position: relative;
    }
    .nav-areas-trigger {
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
    }
    .nav-areas-trigger .dropdown-chevron {
      width: 12px;
      height: 12px;
      color: var(--text-muted);
      transition: transform 0.2s ease;
      flex-shrink: 0;
    }
    .nav-item-areas:hover .dropdown-chevron { transform: rotate(180deg); }
    .areas-dropdown {
      position: absolute;
      top: calc(100% + 12px);
      left: -16px;
      width: 540px;
      background: var(--surface-floating);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      padding: 12px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
      box-shadow: var(--shadow-floating);
      z-index: 300;
    }
    .areas-dropdown::before {
      content: '';
      position: absolute;
      top: -12px;
      left: 0;
      right: 0;
      height: 12px;
    }
    .nav-item-areas:hover .areas-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .areas-dropdown-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .areas-dropdown a {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 7px 10px;
      font-family: 'Inter', sans-serif;
      font-size: 0.775rem;
      font-weight: 400;
      color: var(--text-muted);
      border-radius: 4px;
      transition: background 0.13s ease, color 0.13s ease;
      white-space: nowrap;
    }
    .areas-dropdown a:hover {
      background: rgba(124,77,255,0.12);
      color: #fff;
    }

    /* ===========================
       TRUST BAR ANIMATIONS
    =========================== */
    @keyframes boltShine {
      0%, 100% { filter: drop-shadow(0 0 0px rgba(124,77,255,0)); }
      40%       { filter: drop-shadow(0 0 6px rgba(124,77,255,0.9)) drop-shadow(0 0 12px rgba(0,188,212,0.5)); }
      60%       { filter: drop-shadow(0 0 4px rgba(124,77,255,0.6)); }
    }
    .trust-icon-bolt .lc { animation: boltShine 2.4s ease-in-out infinite; }



    /* Brother-owned icon */
    .trust-icon-brothers { color: var(--brand-purple); }
    .trust-icon-brothers .lc { width: 15px; height: 15px; color: var(--brand-purple); }
    .trust-icon-brothers .lc svg { width: 15px; height: 15px; stroke-width: 2; }

    /* Hero brother tag */
    .hero-brother-tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 5px 14px 5px 10px;
      background: rgba(124,77,255,0.12);
      border: 1px solid rgba(124,77,255,0.35);
      border-radius: 5px;
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-primary);
      letter-spacing: 0.04em;
    }
    .hero-brother-tag .lc svg { width: 14px; height: 14px; color: var(--brand-purple); stroke-width: 2; }

    /* ===========================
       MEET THE CREW SECTION
    =========================== */
    #meet-crew {
      padding: 80px 0;
      background: #fff;
      position: relative;
      box-shadow: inset 0 -8px 16px -4px rgba(124,77,255,0.07);
    }
    .crew-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }
    @media (max-width: 900px) {
      .crew-grid { grid-template-columns: 1fr 1fr; max-width: 700px; }
    }
    @media (max-width: 560px) {
      .crew-grid { grid-template-columns: 1fr; max-width: 380px; }
    }
    .crew-card {
      background: var(--surface-floating);
      border: 1px solid var(--border-subtle);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
    }
    .crew-card:hover { transform: translateY(-5px); }
    .crew-card:nth-child(1) { transform: rotate(-0.5deg); }
    .crew-card:nth-child(1):hover { transform: translateY(-5px) rotate(0deg); }
    .crew-card:nth-child(2) { transform: rotate(0.5deg); }
    .crew-card:nth-child(2):hover { transform: translateY(-5px) rotate(0deg); }
    .crew-card:nth-child(3) { transform: rotate(-0.35deg); }
    .crew-card:nth-child(3):hover { transform: translateY(-5px) rotate(0deg); }
    .crew-card:nth-child(4) { transform: rotate(0.35deg); }
    .crew-card:nth-child(4):hover { transform: translateY(-5px) rotate(0deg); }
    .crew-photo {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      display: block;
    }
    .crew-info {
      padding: 16px 18px 20px;
    }
    .crew-name {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.05rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      color: #fff;
      margin-bottom: 4px;
    }
    .crew-role {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--brand-teal);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }
    .crew-bio {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .crew-fun-fact {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 14px;
      padding: 5px 12px;
      background: rgba(124,77,255,0.12);
      border-radius: 4px;
      font-size: 0.75rem;
      color: var(--text-muted);
    }
    .crew-banner {
      width: 100%;
      aspect-ratio: 21/8;
      object-fit: cover;
      object-position: center 30%;
      border-radius: 8px;
      display: block;
      margin: 40px 0 0;
      box-shadow: 0 8px 40px rgba(124,77,255,0.13), 0 2px 8px rgba(0,0,0,0.08);
    }
    /* Animated crew circle */
    .crew-circle-wrap {
      position: relative;
      width: 210px;
      height: 210px;
      flex-shrink: 0;
      border-radius: 50%;
      /* Always-on ambient purple glow */
      box-shadow: 0 0 0 4px rgba(124,77,255,0.9), 0 0 28px 8px rgba(124,77,255,0.45);
      animation: crewGlow 3s ease-in-out infinite;
    }
    /* Spinning gradient ring behind the image */
    .crew-circle-wrap::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      background: conic-gradient(from 0deg, #7C4DFF 0%, #00BCD4 40%, #a78bff 70%, #7C4DFF 100%);
      animation: crewRingSpin 5s linear infinite;
      pointer-events: none;
      z-index: 0;
    }
    @keyframes crewGlow {
      0%, 100% { box-shadow: 0 0 0 4px rgba(124,77,255,0.9), 0 0 20px 6px rgba(124,77,255,0.4); }
      50%       { box-shadow: 0 0 0 4px rgba(124,77,255,1),   0 0 36px 14px rgba(124,77,255,0.65); }
    }
    @keyframes crewRingSpin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    .crew-circle-img {
      position: relative;
      z-index: 1;
      width: 210px;
      height: 210px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center 15%;
      display: block;
      box-shadow: 0 0 0 4px var(--surface-base);
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .crew-circle-wrap:hover .crew-circle-img {
      transform: scale(1.07);
    }

    .crew-quote-block {
      text-align: center;
      padding: 40px 56px 40px 32px;
      max-width: 700px;
      margin: 48px auto 0;
    }
    .crew-quote-text {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.1rem, 2.5vw, 1.4rem);
      font-weight: 800;
      font-style: italic;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      color: var(--text-primary);
      line-height: 1.3;
      margin-bottom: 16px;
    }
    .crew-quote-text span { color: var(--brand-purple); }
    .crew-quote-best {
      display: inline-block;
      font-style: normal;
      background: linear-gradient(90deg, #7C4DFF 0%, #7C4DFF 38%, rgba(255,255,255,0.95) 50%, #7C4DFF 62%, #7C4DFF 100%);
      background-size: 400% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmerGlint 3s linear infinite;
    }
    @keyframes shimmerGlint {
      0%   { background-position: 100% center; }
      100% { background-position: 0% center; }
    }
    .crew-quote-attr {
      font-size: 0.8rem;
      color: var(--text-muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    /* Meet crew — mobile reorder */
    @media (max-width: 767px) {
      #meet-crew .section-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
        text-align: center !important;
      }
      /* dissolve the text wrapper so eyebrow, h2, subtext become direct flex children */
      #meet-crew .section-header > div:not(.crew-circle-wrap) {
        display: contents;
      }
      #meet-crew .section-eyebrow { order: 1; }
      #crew-heading { order: 2; text-align: center !important; }
      #meet-crew .crew-circle-wrap { order: 3; }
      #meet-crew .section-subtext { order: 4; text-align: center !important; margin: 0 !important; margin-top: 12px !important; }
    }

    /* ===========================
       PAYMENT METHODS
    =========================== */
    .payment-section { background: var(--surface-elevated); padding: 72px 0; }
    #service-areas .payment-section { background: transparent; padding-bottom: 0; }
    .payment-inner { max-width: 860px; margin: 0 auto; padding: 0 32px; text-align: center; }
    .payment-inner h2 {
      font-family: 'Montserrat', sans-serif; font-weight: 800;
      font-size: clamp(1.25rem, 2.5vw, 1.75rem);
      text-transform: uppercase; letter-spacing: -0.02em;
      color: var(--text-primary); margin-bottom: 32px;
    }
    .payment-tagline {
      font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.6;
      color: var(--text-muted); margin: -8px 0 32px;
    }
    .payment-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
    .payment-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 12px 20px; border-radius: 999px;
      background: var(--surface-floating);
      border: 1px solid rgba(124,77,255,0.2);
      font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 600;
      color: var(--text-muted);
      transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }
    .payment-badge:hover {
      border-color: rgba(124,77,255,0.5); color: var(--text-primary); transform: translateY(-2px);
    }

    /* ===========================
       LIGHT THEME OVERRIDES
    =========================== */

    /* NAV — crisp white glass */
    #navbar {
      background: rgba(255,255,255,0.97);
      border-bottom-color: rgba(124,77,255,0.12);
    }
    #navbar.scrolled {
      box-shadow: 0 4px 24px rgba(124,77,255,0.10), 0 1px 6px rgba(0,0,0,0.04);
    }
    .nav-brand-name { color: var(--text-primary); }
    .nav-links > li > a:hover { color: var(--brand-purple); }
    .mega-cat:hover .mega-cat-btn { color: var(--brand-purple); }
    .mega-cat-panel a:hover,
    .areas-dropdown a:hover { color: var(--brand-purple); background: rgba(124,77,255,0.08); }
    .mobile-services-item { border-bottom-color: rgba(124,77,255,0.1); }
    .mobile-services-toggle:hover,
    .mobile-services-toggle.open { color: var(--brand-purple); }
    .mobile-cat-toggle:hover,
    .mobile-cat-toggle.open { color: var(--brand-purple); background: rgba(124,77,255,0.1); }
    .mobile-cat-links a:hover { color: var(--brand-purple); background: rgba(124,77,255,0.07); }
    #mobile-menu a { border-bottom-color: rgba(124,77,255,0.08); }
    #mobile-menu a:hover { color: var(--brand-purple); }
    .nav-phone:hover { color: var(--brand-purple); }
    .tab-btn:hover:not(.active) { color: var(--brand-purple); }

    /* HERO — photo background with dark overlay */
    .hero-gradient-1 {
      background: linear-gradient(100deg, rgba(8,3,22,0.68) 0%, rgba(10,4,28,0.46) 42%, rgba(6,2,18,0.16) 100%);
    }
    .hero-gradient-2 {
      background: radial-gradient(ellipse 65% 100% at 18% 50%, rgba(45,14,110,0.30) 0%, transparent 72%);
    }
    .hero-gradient-3 {
      background: radial-gradient(ellipse 35% 35% at 88% 88%, rgba(0,188,212,0.08) 0%, transparent 60%);
    }
    .reviews-badge { color: rgba(255,255,255,0.95); background: rgba(124,77,255,0.28); border-color: rgba(255,255,255,0.22); }
    .hero-brother-tag { color: rgba(255,255,255,0.92); background: rgba(124,77,255,0.28); border-color: rgba(255,255,255,0.22); }
    .hero-brother-tag .lc svg { color: rgba(255,255,255,0.75); }
    .hero-h1 { color: #ffffff; }
    .hero-today-wrap { position: relative; display: inline-block; }
    .hero-h1 span {
      background: linear-gradient(90deg, #00BCD4 0%, #00BCD4 44%, rgba(255,255,255,0.95) 50%, #00BCD4 56%, #00BCD4 100%);
      background-size: 400% 100%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmerGlint 3s linear infinite;
    }
    .hero-sparkle {
      position: absolute;
      color: #00BCD4;
      -webkit-text-fill-color: #00BCD4;
      font-style: normal;
      line-height: 1;
      pointer-events: none;
      animation: sparklePop 2.4s ease-in-out infinite;
    }
    .hero-sparkle.s1 { top: -0.5em;  right: -0.5em;  font-size: 0.45em; animation-delay: 0s; }
    .hero-sparkle.s2 { top:  0.4em;  right: -1.2em;  font-size: 0.28em; animation-delay: 0.9s; }
    .hero-sparkle.s3 { top: -0.6em;  left: -0.1em;   font-size: 0.22em; animation-delay: 1.6s; }
    @keyframes sparklePop {
      0%, 100% { opacity: 0; transform: scale(0.4) rotate(0deg); }
      40%, 60% { opacity: 1; transform: scale(1) rotate(20deg); }
    }
    .hero-slogan { color: rgba(255,255,255,0.85); }
    .btn-secondary {
      color: rgba(255,255,255,0.92);
      border-color: rgba(255,255,255,0.32);
    }
    .btn-secondary:hover {
      background: rgba(255,255,255,0.10);
      border-color: rgba(255,255,255,0.60);
      color: #ffffff;
    }
    .hero-form-box {
      background: rgba(255,255,255,0.07);
      border-color: rgba(255,255,255,0.14);
      box-shadow: 0 12px 48px rgba(0,0,0,0.45), 0 2px 10px rgba(0,0,0,0.25);
      backdrop-filter: blur(16px);
    }
    .hero-form-title { color: #ffffff; }
    .hero-quote-form input,
    .hero-quote-form textarea {
      background: rgba(255,255,255,0.09);
      border-color: rgba(255,255,255,0.18);
      color: #ffffff;
    }
    .hero-quote-form input:focus,
    .hero-quote-form textarea:focus {
      background: rgba(255,255,255,0.14);
      border-color: rgba(124,77,255,0.65);
    }
    .hero-quote-form input::placeholder,
    .hero-quote-form textarea::placeholder { color: rgba(255,255,255,0.42); }
    .form-guarantee { color: rgba(255,255,255,0.62); opacity: 1; }
    #book .form-guarantee { color: rgba(255,255,255,0.75); opacity: 1; }

    /* TRUST BAR */
    .trust-item.highlight { color: var(--brand-purple); }

    /* SERVICE CARDS */
    .service-tab-card h3 { color: var(--text-primary); }
    .service-tab-card {
      box-shadow: 0 4px 16px rgba(124,77,255,0.08), 0 1px 4px rgba(0,0,0,0.04);
    }
    .service-tab-card:hover {
      box-shadow: 0 12px 36px rgba(124,77,255,0.16), 0 2px 8px rgba(0,0,0,0.05);
    }

    /* WHY US */
    .why-pillar h3 { color: var(--text-primary); }

    /* HOW IT WORKS */
    .step-card h3 { color: var(--text-primary); }

    /* REVIEWS */
    .google-badge {
      background: rgba(124,77,255,0.06);
      border-color: rgba(124,77,255,0.15);
    }
    .google-rating-num { color: var(--text-primary); }
    .review-author { border-top-color: rgba(124,77,255,0.1); }
    .reviewer-name { color: var(--text-primary); }
    .review-card {
      background: #fff;
      box-shadow: 0 6px 24px rgba(124,77,255,0.08), 0 1px 4px rgba(0,0,0,0.04);
    }

    /* SERVICE AREAS */
    .area-badge:hover { color: var(--brand-purple); }

    .areas-footnote a:hover { color: var(--text-primary); }

    /* CREW */
    .crew-name { color: var(--text-primary); }

    /* FOOTER — stay dark; scope vars back to old dark-theme values */
    #site-footer {
      --text-primary: #FFFFFF;
      --text-muted: #B8A9D9;
    }
    #site-footer .footer-col a:hover { color: #fff; }