      /* =============================================================================
         CSS CUSTOM PROPERTIES & THEME SUPPORT
         ============================================================================= */
      :root {
        --primary-color: #222;
        --secondary-color: #286090;
        --accent-color: #b3e5fc;
        --success-color: #43a047;
        --warning-color: #ffe082;
        --info-color: #5bc0de;
        --background-color: #f5f5f5;
        --container-bg: #fff;
        --text-primary: #333;
        --text-secondary: #666;
        --border-color: #e2e8f0;
        --form-bg: #f8f8f8;
        --form-border: #bbb;
        
        /* Theme colors */
        --theme-bg: var(--background-color);
        --theme-surface: var(--container-bg);
        --theme-text: var(--text-primary);
        --theme-text-secondary: var(--text-secondary);
        --theme-border: var(--border-color);
        
        /* Responsive breakpoints */
        --mobile-sm: 480px;
        --mobile-md: 768px;
        --tablet: 1024px;
        --desktop: 1200px;
      }

      /* Dark theme variables */
      [data-theme="dark"] {
        --primary-color: #1a1a1a;
        --background-color: #121212;
        --container-bg: #1e1e1e;
        --text-primary: #ffffff;
        --text-secondary: #b0b0b0;
        --border-color: #404040;
        --form-bg: #2a2a2a;
        --form-border: #555;
        --accent-color: #81d4fa;
        --secondary-color: #3498db;
        
        /* Update theme colors for dark mode */
        --theme-bg: var(--background-color);
        --theme-surface: var(--container-bg);
        --theme-text: var(--text-primary);
        --theme-text-secondary: var(--text-secondary);
        --theme-border: var(--border-color);
      }

      /* =============================================================================
         RESET & BASE STYLES
         ============================================================================= */
      *, *::before, *::after {
        box-sizing: border-box;
      }

      html, body {
        height: 100%;
        margin: 0;
        padding: 0;
      }

    body {
      background: var(--theme-bg);
      color: var(--theme-text);
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
      min-height: 100vh;
      width: 100vw;
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      font-size: 16px;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      transition: background-color 0.3s ease, color 0.3s ease;
      margin: 0;     /* Ensure no margin */
      padding: 0;    /* Ensure no padding */
    }

      /* =============================================================================
         HEADER STYLES
         ============================================================================= */
    /* Update the existing header style */
    .header {
      background: var(--primary-color);
      color: #fff;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      position: relative;
      min-height: 60px;
      flex-wrap: nowrap;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      width: 100%;  /* Add this */
      margin: 0;    /* Add this */
      left: 0;      /* Add this */
      right: 0;     /* Add this */
    }

      .header .logo {
        display: flex;
        align-items: center;
        font-size: 1.4em;
        font-weight: 600;
        flex: 0 0 auto;
        margin-right: 16px;
      }

      .header .logo img {
        height: 132px;
        width: 132px;
        margin-right: 8px;
        object-fit: contain;
      }

      .header-title-center {
        flex: 1 1 0;
        text-align: center;
        font-size: 1.2em;
        font-weight: 600;
        letter-spacing: 0.3px;
        color: var(--accent-color);
        margin: 0;
        z-index: 1;
        pointer-events: none;
        user-select: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .header .right {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 0 0 auto;
      }

      /* =============================================================================
         BURGER MENU STYLES
         ============================================================================= */
      .burger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        margin-left: 12px;
        z-index: 1001;
        border-radius: 4px;
        transition: background-color 0.2s;
        min-width: 44px;
        min-height: 44px;
      }

      .burger:hover {
        background: rgba(255,255,255,0.1);
      }

      .burger:focus {
        outline: 2px solid var(--accent-color);
        outline-offset: 2px;
      }

      .burger span {
        display: block;
        height: 3px;
        width: 24px;
        background: #fff;
        margin: 3px auto;
        border-radius: 2px;
        transition: 0.3s ease;
        transform-origin: center;
      }

      .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
      }

      .burger.active span:nth-child(2) {
        opacity: 0;
      }

      .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }

      /* =============================================================================
         SIDE MENU STYLES
         ============================================================================= */
      .side-menu-backdrop {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        backdrop-filter: blur(2px);
      }

      .side-menu {
        position: fixed;
        right: -320px;
        top: 0;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: var(--secondary-color);
        color: #fff;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        z-index: 1000;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: rgba(255,255,255,0.3) transparent;
      }

      .side-menu::-webkit-scrollbar {
        width: 6px;
      }

      .side-menu::-webkit-scrollbar-track {
        background: transparent;
      }

      .side-menu::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.3);
        border-radius: 3px;
      }

      .side-menu::-webkit-scrollbar-thumb:hover {
        background: rgba(255,255,255,0.5);
      }

      .side-menu.open {
        right: 0;
      }

      .side-menu .side-header {
        background: #204d74;
        padding: 20px 18px 16px 18px;
        font-size: 1.1em;
        font-weight: 600;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
        flex-shrink: 0;
        position: sticky;
        top: 0;
        z-index: 10;
      }

      .side-menu .side-header img {
        height: 28px;
        width: 28px;
        object-fit: contain;
      }

      .side-menu .side-links {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 0 12px;
        min-height: 0;
        padding-bottom: 20px;
      }

      .side-menu .side-link {
        color: #fff;
        text-decoration: none;
        padding: 14px 16px;
        font-size: 1em;
        border-radius: 6px;
        margin: 1px 0;
        font-weight: 500;
        transition: background 0.2s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        min-width: 0;
        word-break: break-word;
        min-height: 44px;
        flex-shrink: 0;
      }

      .side-menu .side-link.active,
      .side-menu .side-link:hover,
      .side-menu .side-link:focus {
        background: #204d74;
        outline: none;
      }

      /* =============================================================================
         THEME DROPDOWN STYLES
         ============================================================================= */
      .theme-dropdown {
        position: relative;
        margin: 4px 12px 8px 12px;
        flex-shrink: 0;
      }

      .theme-toggle {
        color: #fff;
        text-decoration: none;
        padding: 14px 16px;
        font-size: 1em;
        border-radius: 6px;
        font-weight: 500;
        transition: background 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 44px;
        cursor: pointer;
        background: none;
        border: none;
        width: 100%;
        text-align: left;
      }

      .theme-toggle:hover,
      .theme-toggle:focus {
        background: #204d74;
        outline: none;
      }

      .theme-toggle .arrow {
        transition: transform 0.2s ease;
        font-size: 0.8em;
      }

      .theme-toggle.active .arrow {
        transform: rotate(180deg);
      }

      .theme-options {
        display: none;
        background: #1a4a6b;
        border-radius: 6px;
        margin-top: 4px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      }

      .theme-options.show {
        display: block;
        animation: slideDown 0.2s ease;
      }

      @keyframes slideDown {
        from {
          opacity: 0;
          transform: translateY(-10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .theme-option {
        color: #fff;
        text-decoration: none;
        padding: 12px 20px;
        font-size: 0.95em;
        font-weight: 500;
        transition: background 0.2s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        min-height: 40px;
      }

      .theme-option:hover,
      .theme-option:focus {
        background: #204d74;
        outline: none;
      }

      .theme-option.active {
        background: #204d74;
        position: relative;
      }

      .theme-option.active::after {
        content: '✓';
        margin-left: auto;
        font-weight: bold;
        color: var(--accent-color);
      }

      .theme-icon {
        font-size: 1.1em;
        width: 16px;
        text-align: center;
      }

      /* =============================================================================
         MAIN CONTENT STYLES
         ============================================================================= */
    .welcome-container {
      /* Remove the max-width constraint */
      /* max-width: var(--desktop); <-- Remove this */
      margin: 0;  /* Change from "0 auto" to just "0" */
      flex: 1 0 auto;
      width: 100%;
      padding: 0;
    }

    .hero-section {
      background: url('../share/my-garage-crm-hero.jpg') center center / cover no-repeat;
      position: relative;
      color: #fff;
      padding: 60px 24px;
      text-align: center;
      margin: 0;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
    }

    .hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

      .hero-content h1 {
        font-size: 3em;
        font-weight: 700;
        margin: 0 0 20px 0;
        letter-spacing: -0.5px;
        line-height: 1.2;
      }

      .hero-content .subtitle {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: var(--accent-color);
        font-weight: 400;
        line-height: 1.4;
      }

      .hero-content .description {
        font-size: 1.1em;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
        opacity: 0.9;
      }

      /* CTA Buttons */
      .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 40px;
      }

      .cta-button {
        display: inline-block;
        background: var(--success-color);
        color: #fff;
        text-decoration: none;
        padding: 16px 32px;
        font-size: 1.1em;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        min-width: 160px;
        text-align: center;
      }

      .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        background: #388e3c;
      }

      .cta-button.secondary {
        background: transparent;
        border: 2px solid var(--accent-color);
        color: var(--accent-color);
      }

      .cta-button.secondary:hover {
        background: var(--accent-color);
        color: var(--primary-color);
      }

      /* =============================================================================
         SECTIONS & CONTENT STYLES
         ============================================================================= */
    /* Make sections-container full width */
    .sections-container {
      background: var(--theme-bg);
      padding: 0;
      width: 100%;  /* Add this */
      margin: 0;    /* Add this */
    }

    .section {
      background: var(--theme-surface);
      max-width: var(--desktop);  /* Add max-width here instead */
      margin: 24px auto;  /* Change to auto for centering */
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }

      .section:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      }

      .section-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
      }

      .section-icon {
        font-size: 2.5em;
        color: var(--secondary-color);
      }

      .section h2 {
        margin: 0;
        font-size: 2em;
        font-weight: 600;
        color: var(--theme-text);
      }

      .section p {
        font-size: 1.1em;
        line-height: 1.7;
        color: var(--theme-text-secondary);
        margin-bottom: 20px;
      }

      /* Features Grid */
      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        margin-top: 30px;
      }

      .feature-card {
        background: var(--form-bg);
        padding: 24px;
        border-radius: 8px;
        border: 1px solid var(--theme-border);
        transition: all 0.3s ease;
      }

      .feature-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      }

      .feature-card h3 {
        margin: 0 0 12px 0;
        font-size: 1.2em;
        font-weight: 600;
        color: var(--theme-text);
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .feature-card p {
        margin: 0;
        font-size: 1em;
        color: var(--theme-text-secondary);
      }

      /* =============================================================================
         FORM STYLES
         ============================================================================= */
      .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
        margin-top: 30px;
      }

      .contact-info {
        background: var(--form-bg);
        padding: 30px;
        border-radius: 8px;
        border: 1px solid var(--theme-border);
      }

      .contact-info h3 {
        margin: 0 0 20px 0;
        font-size: 1.3em;
        font-weight: 600;
        color: var(--theme-text);
      }

      .contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        font-size: 1.1em;
      }

      .contact-item-icon {
        font-size: 1.2em;
        color: var(--secondary-color);
        width: 20px;
        text-align: center;
      }

      .contact-form {
        background: var(--form-bg);
        padding: 30px;
        border-radius: 8px;
        border: 1px solid var(--theme-border);
      }

      .contact-form h3 {
        margin: 0 0 20px 0;
        font-size: 1.3em;
        font-weight: 600;
        color: var(--theme-text);
      }

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

      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--theme-text);
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid var(--form-border);
        border-radius: 6px;
        background: var(--theme-surface);
        color: var(--theme-text);
        font-size: 1em;
        transition: all 0.2s ease;
      }

      .form-group input:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: var(--secondary-color);
        box-shadow: 0 0 0 2px rgba(40, 96, 144, 0.2);
      }

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

      .submit-btn {
        background: var(--success-color);
        color: #fff;
        border: none;
        padding: 14px 32px;
        border-radius: 6px;
        font-size: 1.1em;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
      }

      .submit-btn:hover {
        background: #388e3c;
        transform: translateY(-1px);
      }

      /* =============================================================================
         TERMS CONTENT STYLES
         ============================================================================= */
      .terms-content {
        max-width: 800px;
        margin: 0 auto;
      }

      .terms-content h3 {
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 1.3em;
        font-weight: 600;
        color: var(--theme-text);
      }

      .terms-content ul {
        margin: 15px 0;
        padding-left: 20px;
      }

      .terms-content li {
        margin-bottom: 8px;
        line-height: 1.6;
      }

      /* =============================================================================
         FOOTER STYLES - CLEAN & SIMPLE
         ============================================================================= */
    .footer-enhanced {
      background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a52 100%);
      color: #ffffff;
      margin: 60px 0 0 0;  /* Only top margin */
      border-top: 4px solid var(--secondary-color);
      width: 100vw;  /* Use viewport width */
      margin-left: calc(-50vw + 50%);  /* This centers it and makes it full viewport width */
    }

      .footer-container {
        max-width: var(--desktop);
        margin: 0 auto;
        padding: 40px 24px;
      }

      /* Company Section at Top */
      .footer-company-section {
        text-align: center;
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

    .footer-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 0;  /* Change from 20px to 0 to bring text closer to logo */
    }
    .footer-logo-img {
      height: 180px;  /* Increase from 40px to match your other page */
      width: 180px;   /* Increase from 40px to match your other page */
      object-fit: contain;
    }

      .footer-logo h3 {
        margin: 0;
        font-size: 1.8em;
        font-weight: 700;
        color: var(--accent-color);
      }

    .footer-description {
      font-size: 1.1em;
      line-height: 1.6;
      margin-top: 0;  /* Add this to ensure no top margin */
      margin-bottom: 24px;
      color: rgba(255, 255, 255, 0.9);
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

      .social-links {
        display: flex;
        justify-content: center;
        gap: 12px;
      }

      .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
      }

      .social-link:hover {
        background: var(--accent-color);
        color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      }

      .social-icon {
        font-size: 1.2em;
      }

    .footer-links-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
      margin-top: 40px;  /* Add this line to create space above the Services/Support/Company section */
      margin-bottom: 40px;
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

      .footer-column {
        text-align: left;
      }

      .footer-column h4 {
        margin: 0 0 20px 0;
        font-size: 1.2em;
        font-weight: 600;
        color: var(--accent-color);
        border-bottom: 2px solid var(--secondary-color);
        padding-bottom: 8px;
      }

      .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-size: 0.95em;
        transition: all 0.2s ease;
        display: block;
        padding: 4px 0;
      }

      .footer-links a:hover {
        color: var(--accent-color);
        padding-left: 8px;
        text-decoration: underline;
      }

      /* Legal Links Row - Centered */
      .footer-legal-row {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 30px;
        text-align: center;
      }

      .footer-legal-row a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.9em;
        transition: color 0.2s ease;
        white-space: nowrap;
      }

      .footer-legal-row a:hover {
        color: var(--accent-color);
        text-decoration: underline;
      }

      .separator {
        color: rgba(255, 255, 255, 0.4);
        font-weight: bold;
        margin: 0 8px;
      }

      /* Copyright Section - Centered */
      .footer-copyright {
        text-align: center;
      }

      .footer-copyright p {
        margin: 8px 0;
        font-size: 0.9em;
        color: rgba(255, 255, 255, 0.8);
      }

      .footer-tagline {
        font-style: italic;
        color: var(--accent-color) !important;
        font-size: 0.95em !important;
      }

      /* Original Simple Footer (kept for backwards compatibility) */
      .footer {
        background: var(--primary-color);
        color: var(--accent-color);
        font-size: 0.9em;
        text-align: center;
        padding: 20px 16px;
        margin-top: auto;
        letter-spacing: 0.3px;
        border-top: 1px solid #2c5070;
        width: 100%;
      }

      .footer a {
        color: var(--accent-color);
        text-decoration: none;
        margin: 0 8px;
        font-weight: 500;
        transition: opacity 0.2s;
      }

      .footer a:hover {
        opacity: 0.8;
        text-decoration: underline;
      }

      .footer .sep {
        color: #4fc3f7;
        font-weight: 700;
        margin: 0 8px;
      }
    .social-icon-svg {
      width: 24px;
      height: 24px;
      display: block;
      filter: brightness(0) invert(1); /* Makes sure icons are white */
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .social-link:hover .social-icon-svg {
      transform: scale(1.1);
      opacity: 0.8;
    }

    /* If you want to ensure icons stay visible in dark mode */
    [data-theme="dark"] .social-icon-svg {
      filter: brightness(0) invert(1);
    }

    /* Optional: Add color on hover for each platform */
    .social-link:hover .social-icon-svg {
      filter: none; /* Remove the white filter to show original colors on hover */
    }
    /* =========================
       HOMEPAGE REVIEWS STRIP
       ========================= */
    .reviews-strip {
      background: var(--theme-bg);
      padding: 24px 0;
    }
    .reviews-inner {
      max-width: var(--desktop);
      margin: 0 auto;
      padding: 0 24px;
    }
    .reviews-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
      gap: 12px;
      flex-wrap: wrap;
    }
    .reviews-header h2 {
      margin: 0;
      font-size: 1.6em;
      color: var(--theme-text);
    }
    .reviews-header-meta {
      font-size: 0.95em;
      color: var(--theme-text-secondary);
    }
    .reviews-scroller {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding-bottom: 4px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
    .reviews-scroller::-webkit-scrollbar {
      height: 6px;
    }
    .reviews-scroller::-webkit-scrollbar-thumb {
      background: rgba(0,0,0,0.15);
      border-radius: 3px;
    }
    .review-card {
      min-width: 260px;
      max-width: 320px;
      background: var(--theme-surface);
      border-radius: 10px;
      border: 1px solid var(--theme-border);
      padding: 18px 16px;
      scroll-snap-align: start;
      flex-shrink: 0;
    }
    .review-stars {
      color: #ffc107;
      font-size: 0.9em;
      margin-bottom: 4px;
    }
    .review-author {
      font-weight: 600;
      margin-bottom: 2px;
      color: var(--theme-text);
    }
    .review-garage {
      font-size: 0.9em;
      color: var(--theme-text-secondary);
      margin-bottom: 6px;
    }
    .review-text {
      font-size: 0.95em;
      color: var(--theme-text-secondary);
      margin-bottom: 8px;
    }
    .review-readmore {
      font-size: 0.9em;
      font-weight: 600;
      color: var(--secondary-color);
      text-decoration: none;
    }
    .review-readmore:hover {
      text-decoration: underline;
    }

    /* =========================
       HOMEPAGE FAQ ACCORDION
       ========================= */
    .faq-list {
      margin-top: 10px;
    }
    .faq-item {
      border-radius: 8px;
      border: 1px solid var(--theme-border);
      background: var(--form-bg);
      margin-bottom: 12px;
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 14px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      cursor: pointer;
      font-size: 1em;
      font-weight: 600;
      color: var(--theme-text);
    }
    .faq-question:focus {
      outline: 2px solid var(--secondary-color);
      outline-offset: 2px;
    }
    .faq-icon {
      font-size: 1.1em;
      color: var(--secondary-color);
    }
    .faq-arrow {
      font-size: 1.1em;
      transition: transform 0.2s ease;
      color: var(--theme-text-secondary);
    }
    .faq-item.open .faq-arrow {
      transform: rotate(180deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 16px;
      font-size: 0.95em;
      color: var(--theme-text-secondary);
      transition: max-height 0.25s ease, padding-top 0.2s ease, padding-bottom 0.2s ease;
    }
    .faq-item.open .faq-answer {
      padding-top: 0;
      padding-bottom: 14px;
    }
    .faq-answer p {
      margin: 10px 0 0 0;
    }
    /* =============================================================================
       CONTENT LINK STYLES - Match text color with underline
       ============================================================================= */

    /* Links in hero section */
    .hero-content a,
    .hero-content .description a {
      color: inherit;
      text-decoration: underline;
      text-decoration-color: var(--accent-color);
      text-underline-offset: 2px;
      transition: opacity 0.2s ease;
    }

    .hero-content a:hover,
    .hero-content .description a:hover {
      opacity: 0.8;
    }

    /* Links in sections and feature cards */
    .section a,
    .section p a,
    .feature-card a,
    .feature-card p a,
    .terms-content a,
    .contact-info a {
      color: inherit;
      text-decoration: underline;
      text-decoration-color: var(--secondary-color);
      text-underline-offset: 2px;
      transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
    }

    .section a:hover,
    .section p a:hover,
    .feature-card a:hover,
    .feature-card p a:hover,
    .terms-content a:hover,
    .contact-info a:hover {
      opacity: 0.8;
      text-decoration-color: var(--accent-color);
    }

    /* FAQ section links */
    .faq-answer a {
      color: inherit;
      text-decoration: underline;
      text-decoration-color: var(--secondary-color);
      text-underline-offset: 2px;
      transition: opacity 0.2s ease;
    }

    .faq-answer a:hover {
      opacity: 0.8;
    }

    /* Reviews section links */
    .reviews-header a,
    .review-card a:not(.review-readmore) {
      color: inherit;
      text-decoration: underline;
    }

    /* Exclude buttons and navigation links from these styles */
    .cta-button,
    .side-link,
    .footer-links a,
    .social-link,
    .submit-btn {
      text-decoration: none;
    }
    .right {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .search-icon-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 4px;
      text-decoration: none;
      transition: background 0.2s;
    }
    .search-icon-btn:hover {
      background: rgba(255,255,255,0.1);
    }
    /* =============================================================================
       SCREENSHOT SHOWCASE SECTION
       ============================================================================= */
    .screenshots-section {
      background: var(--theme-bg);
      padding: 64px 0 72px;
    }
     
    .screenshots-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }
     
    .screenshots-section .section-heading {
      text-align: center;
      margin-bottom: 40px;
    }
     
    .screenshots-section .section-heading h2 {
      font-size: 2em;
      font-weight: 800;
      color: var(--theme-text);
      margin: 0 0 12px;
      line-height: 1.2;
    }
     
    .screenshots-section .section-heading p {
      font-size: 1.1em;
      color: var(--theme-text-secondary);
      margin: 0;
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.6;
    }
     
    /* --- Tab bar --- */
    .ss-tabs {
      display: flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }
     
    .ss-tab {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 18px;
      border-radius: 40px;
      border: 2px solid var(--theme-border);
      background: var(--theme-surface);
      color: var(--theme-text-secondary);
      font-size: 0.9em;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
      letter-spacing: 0.2px;
    }
     
    .ss-tab:hover {
      border-color: var(--secondary-color);
      color: var(--secondary-color);
    }
     
    .ss-tab.active {
      background: var(--secondary-color);
      border-color: var(--secondary-color);
      color: #fff;
      box-shadow: 0 4px 12px rgba(40, 96, 144, 0.3);
    }
     
    .ss-tab .ss-tab-icon {
      font-size: 1.1em;
      line-height: 1;
    }
     
    /* --- Browser chrome frame --- */
    .ss-browser-frame {
      background: var(--theme-surface);
      border-radius: 12px;
      box-shadow:
        0 2px 4px rgba(0,0,0,0.06),
        0 8px 32px rgba(0,0,0,0.12),
        0 0 0 1px var(--theme-border);
      overflow: hidden;
      position: relative;
    }
     
    .ss-browser-bar {
      background: #e8e8e8;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }
     
    [data-theme="dark"] .ss-browser-bar {
      background: #2a2a2a;
      border-bottom-color: rgba(255,255,255,0.06);
    }
     
    .ss-browser-dots {
      display: flex;
      gap: 6px;
      flex-shrink: 0;
    }
     
    .ss-browser-dots span {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      display: block;
    }
     
    .ss-browser-dots span:nth-child(1) { background: #ff5f57; }
    .ss-browser-dots span:nth-child(2) { background: #febc2e; }
    .ss-browser-dots span:nth-child(3) { background: #28c840; }
     
    .ss-browser-url {
      flex: 1;
      background: #fff;
      border-radius: 6px;
      padding: 4px 12px;
      font-size: 0.78em;
      color: #888;
      font-family: monospace;
      border: 1px solid rgba(0,0,0,0.1);
      max-width: 380px;
      margin: 0 auto;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
     
    [data-theme="dark"] .ss-browser-url {
      background: #1a1a1a;
      border-color: rgba(255,255,255,0.1);
      color: #666;
    }
     
    /* --- Main image display --- */
    .ss-main-display {
      position: relative;
      min-height: 340px;
      background: #f0f2f5;
      overflow: hidden;
    }
     
    [data-theme="dark"] .ss-main-display {
      background: #111;
    }
     
    .ss-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.35s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
     
    .ss-slide.active {
      opacity: 1;
      position: relative;
    }
     
    .ss-slide img {
      width: 100%;
      height: auto;
      display: block;
      max-height: 520px;
      object-fit: contain;
    }
     
    /* --- Caption bar --- */
    .ss-caption {
      padding: 12px 20px;
      background: var(--theme-surface);
      border-top: 1px solid var(--theme-border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-height: 48px;
    }
     
    .ss-caption-label {
      font-size: 0.9em;
      font-weight: 600;
      color: var(--theme-text);
    }
     
    .ss-caption-sub {
      font-size: 0.82em;
      color: var(--theme-text-secondary);
    }
     
    .ss-counter {
      font-size: 0.82em;
      color: var(--theme-text-secondary);
      flex-shrink: 0;
    }
     
    /* --- Thumbnail strip --- */
    .ss-thumbs {
      display: flex;
      gap: 8px;
      margin-top: 16px;
      overflow-x: auto;
      padding-bottom: 4px;
      scrollbar-width: thin;
      scrollbar-color: var(--secondary-color) transparent;
    }
     
    .ss-thumbs::-webkit-scrollbar { height: 4px; }
    .ss-thumbs::-webkit-scrollbar-thumb { background: var(--secondary-color); border-radius: 4px; }
     
    .ss-thumb {
      flex-shrink: 0;
      width: 100px;
      height: 64px;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.2s ease;
      opacity: 0.6;
      background: var(--theme-surface);
    }
     
    .ss-thumb:hover {
      opacity: 0.85;
      border-color: var(--secondary-color);
    }
     
    .ss-thumb.active {
      opacity: 1;
      border-color: var(--secondary-color);
      box-shadow: 0 2px 8px rgba(40, 96, 144, 0.4);
    }
     
    .ss-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
     
    /* --- Navigation arrows --- */
    .ss-nav {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 16px;
      margin-top: 20px;
    }
     
    .ss-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid var(--theme-border);
      background: var(--theme-surface);
      color: var(--theme-text);
      font-size: 1.1em;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
     
    .ss-arrow:hover {
      background: var(--secondary-color);
      border-color: var(--secondary-color);
      color: #fff;
    }
     
    .ss-dot-track {
      display: flex;
      gap: 6px;
    }
     
    .ss-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--theme-border);
      cursor: pointer;
      transition: all 0.2s;
    }
     
    .ss-dot.active {
      background: var(--secondary-color);
      width: 20px;
      border-radius: 4px;
    }
     
    /* --- CTA below --- */
    .ss-cta-row {
      text-align: center;
      margin-top: 36px;
    }
     
    .ss-cta-row p {
      font-size: 1.05em;
      color: var(--theme-text-secondary);
      margin: 0 0 16px;
    }
    /* =============================================================================
       BLOG CAROUSEL
       Follows the same scroll pattern as .reviews-strip for consistency
       ============================================================================= */
    .blog-strip {
      background: var(--theme-bg);
      padding: 48px 0 40px;
    }
    .blog-inner {
      max-width: var(--desktop);
      margin: 0 auto;
      padding: 0 24px;
    }
    .blog-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      gap: 12px;
      flex-wrap: wrap;
    }
    .blog-header h2 {
      margin: 0;
      font-size: 1.6em;
      color: var(--theme-text);
    }
    .blog-header-link {
      font-size: 0.95em;
      font-weight: 600;
      color: var(--secondary-color);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: color 0.2s;
    }
    .blog-header-link:hover {
      text-decoration: underline;
    }
    .blog-header-link svg {
      width: 16px;
      height: 16px;
      transition: transform 0.2s;
    }
    .blog-header-link:hover svg {
      transform: translateX(3px);
    }
   
    /* ── Horizontal scroller ── */
    .blog-scroller {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding-bottom: 8px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
    }
    .blog-scroller::-webkit-scrollbar {
      height: 6px;
    }
    .blog-scroller::-webkit-scrollbar-track {
      background: transparent;
    }
    .blog-scroller::-webkit-scrollbar-thumb {
      background: rgba(0,0,0,0.15);
      border-radius: 3px;
    }
    [data-theme="dark"] .blog-scroller::-webkit-scrollbar-thumb {
      background: rgba(255,255,255,0.15);
    }
   
    /* ── Blog card ── */
    .blog-card {
      min-width: 280px;
      max-width: 320px;
      background: var(--theme-surface);
      border-radius: 10px;
      border: 1px solid var(--theme-border);
      scroll-snap-align: start;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
      overflow: hidden;
      cursor: pointer;
    }
    .blog-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      border-color: var(--secondary-color);
    }
    [data-theme="dark"] .blog-card:hover {
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
   
    /* ── Icon banner at top of card ── */
    .blog-card-icon {
      background: var(--secondary-color);
      color: #fff;
      padding: 20px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2em;
    }
   
    /* ── Card body ── */
    .blog-card-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .blog-card-tag {
      display: inline-block;
      font-size: 0.7em;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      color: var(--secondary-color);
      background: rgba(40, 96, 144, 0.08);
      padding: 3px 8px;
      border-radius: 4px;
      margin-bottom: 8px;
      width: fit-content;
    }
    [data-theme="dark"] .blog-card-tag {
      background: rgba(52, 152, 219, 0.15);
    }
    .blog-card-title {
      font-size: 1em;
      font-weight: 700;
      color: var(--theme-text);
      margin: 0 0 8px 0;
      line-height: 1.35;
    }
    .blog-card-excerpt {
      font-size: 0.88em;
      color: var(--theme-text-secondary);
      line-height: 1.5;
      margin: 0 0 12px 0;
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .blog-card-readmore {
      font-size: 0.88em;
      font-weight: 600;
      color: var(--secondary-color);
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: auto;
    }
    .blog-card:hover .blog-card-readmore {
      text-decoration: underline;
    }
   
    /* ── Scroll arrow buttons ── */
    .blog-scroll-controls {
      display: flex;
      gap: 8px;
    }
    .blog-scroll-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--theme-border);
      background: var(--theme-surface);
      color: var(--theme-text);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
      flex-shrink: 0;
    }
    .blog-scroll-btn:hover {
      background: var(--secondary-color);
      border-color: var(--secondary-color);
      color: #fff;
    }
    .blog-scroll-btn svg {
      width: 16px;
      height: 16px;
    }
   
    /* ── Mobile tweaks ── */
    @media (max-width: 768px) {
      .blog-strip {
        padding: 32px 0 28px;
      }
      .blog-inner {
        padding: 0 16px;
      }
      .blog-header h2 {
        font-size: 1.3em;
      }
      .blog-card {
        min-width: 260px;
        max-width: 280px;
      }
      .blog-scroll-controls {
        display: none;
      }
    }

    /* --- Responsive --- */
    @media (max-width: 768px) {
      .screenshots-section {
        padding: 40px 0 48px;
      }
      .screenshots-section .section-heading h2 {
        font-size: 1.6em;
      }
      .ss-tab {
        padding: 7px 14px;
        font-size: 0.82em;
      }
      .ss-tab .ss-tab-icon {
        display: none;
      }
      .ss-thumb {
        width: 80px;
        height: 52px;
      }
      .ss-browser-url {
        display: none;
      }
      .ss-main-display {
        min-height: 200px;
      }
    }
    /* mobile tweaks */
    @media (max-width: 768px) {
      .reviews-inner {
        padding: 0 16px;
      }
    }
      /* =============================================================================
         RESPONSIVE DESIGN
         ============================================================================= */
      @media (max-width: 768px) {
        .hero-content h1 {
          font-size: 2.2em;
        }
        
        .hero-content .subtitle {
          font-size: 1.1em;
        }
        
        .hero-section {
          padding: 40px 16px;
        }
        
        .section {
          margin: 16px;
          padding: 24px;
        }
        
        .cta-buttons {
          flex-direction: column;
          align-items: center;
        }
        
        .cta-button {
          width: 100%;
          max-width: 300px;
        }
        
        .contact-grid {
          grid-template-columns: 1fr;
        }
        
        .features-grid {
          grid-template-columns: 1fr;
        }

        /* Footer responsive */
        .footer-container {
          padding: 30px 16px;
        }
        
        .footer-links-row {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        
        .footer-column {
          text-align: center;
        }
        
        .footer-legal-row {
          flex-direction: column;
          gap: 12px;
        }
        
        .footer-legal-row .separator {
          display: none;
        }
      }

      @media (max-width: 480px) {
        .hero-content h1 {
          font-size: 1.8em;
        }
        
        .section-header {
          flex-direction: column;
          text-align: center;
          gap: 12px;
        }
        
        .section h2 {
          font-size: 1.5em;
        }
        
        .section {
          padding: 20px;
        }

        /* Footer mobile */
        .footer-logo h3 {
          font-size: 1.5em;
        }
        
        .footer-description {
          font-size: 1em;
        }
        
        .social-links {
          flex-wrap: wrap;
        }
      }

      /* =============================================================================
         DARK THEME ADJUSTMENTS
         ============================================================================= */
      [data-theme="dark"] .footer-enhanced {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
      }

      /* =============================================================================
         ACCESSIBILITY & PERFORMANCE
         ============================================================================= */
      /* iOS specific fixes */
      @supports (-webkit-touch-callout: none) {
        .side-menu {
          height: -webkit-fill-available;
        }
        
        body.menu-open {
          position: fixed;
          width: 100%;
          overflow: hidden;
        }
      }

      /* Print styles */
      @media print {
        .header,
        .burger,
        .side-menu,
        .side-menu-backdrop,
        .footer,
        .footer-enhanced {
          display: none !important;
        }
        
        .welcome-container {
          max-width: none;
          width: 100%;
        }
        
        .section {
          margin: 0;
          box-shadow: none;
          page-break-inside: avoid;
        }
      }

      /* Reduced motion support */
      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
          scroll-behavior: auto !important;
        }
      }

  /* ═══ SPECIALISED SOFTWARE / VERTICAL PAGES GRID ═══ */
  .vertical-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
  }
  .vp-card {
    display: flex;
    flex-direction: column;
    padding: 26px 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border-top: 4px solid #286090;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .vp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  }
  .vp-card.vp-charcoal { border-top-color: #37474f; }
  .vp-card.vp-charcoal:hover { border-color: #37474f; }
  .vp-card.vp-charcoal .vp-tag { background: rgba(55,71,79,0.1); color: #37474f; }
  .vp-card.vp-charcoal .vp-link { color: #37474f; }

  .vp-card.vp-green { border-top-color: #2e7d32; }
  .vp-card.vp-green:hover { border-color: #2e7d32; }
  .vp-card.vp-green .vp-tag { background: rgba(46,125,50,0.1); color: #2e7d32; }
  .vp-card.vp-green .vp-link { color: #2e7d32; }

  .vp-card.vp-orange { border-top-color: #e65100; }
  .vp-card.vp-orange:hover { border-color: #e65100; }
  .vp-card.vp-orange .vp-tag { background: rgba(230,81,0,0.12); color: #e65100; }
  .vp-card.vp-orange .vp-link { color: #e65100; }

  .vp-card.vp-orange-soft { border-top-color: #f57c00; }
  .vp-card.vp-orange-soft:hover { border-color: #f57c00; }
  .vp-card.vp-orange-soft .vp-tag { background: rgba(245,124,0,0.1); color: #ef6c00; }
  .vp-card.vp-orange-soft .vp-link { color: #ef6c00; }

  .vp-card.vp-navy { border-top-color: #1a237e; }
  .vp-card.vp-navy:hover { border-color: #1a237e; }
  .vp-card.vp-navy .vp-tag { background: rgba(26,35,126,0.1); color: #1a237e; }
  .vp-card.vp-navy .vp-link { color: #1a237e; }

  .vp-card.vp-bright-orange { border-top-color: #ff6f00; }
  .vp-card.vp-bright-orange:hover { border-color: #ff6f00; }
  .vp-card.vp-bright-orange .vp-tag { background: rgba(255,111,0,0.12); color: #e65100; }
  .vp-card.vp-bright-orange .vp-link { color: #e65100; }

  .vp-card.vp-blue { border-top-color: #1565c0; }
  .vp-card.vp-blue:hover { border-color: #1565c0; }
  .vp-card.vp-blue .vp-tag { background: rgba(21,101,192,0.1); color: #1565c0; }
  .vp-card.vp-blue .vp-link { color: #1565c0; }

  .vp-card.vp-grey { border-top-color: #546e7a; }
  .vp-card.vp-grey:hover { border-color: #546e7a; }
  .vp-card.vp-grey .vp-tag { background: rgba(84,110,122,0.1); color: #455a64; }
  .vp-card.vp-grey .vp-link { color: #455a64; }

  .vp-tag {
    display: inline-block;
    font-size: 0.7em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 11px;
    border-radius: 4px;
    margin-bottom: 14px;
    width: fit-content;
  }
  .vp-card h3 {
    font-size: 1.15em;
    font-weight: 700;
    margin: 0 0 10px;
    color: #222;
    line-height: 1.3;
  }
  .vp-card p {
    font-size: 0.92em;
    color: #555;
    line-height: 1.65;
    margin: 0 0 16px;
    flex-grow: 1;
  }
  .vp-link {
    font-weight: 700;
    font-size: 0.88em;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .vp-link::after {
    content: '\203A';
    transition: transform 0.2s ease;
    display: inline-block;
  }
  .vp-card:hover .vp-link::after {
    transform: translateX(3px);
  }

  @media (max-width: 768px) {
    .vertical-pages-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .vp-card {
      padding: 22px 20px;
    }
    .vp-card h3 {
      font-size: 1.05em;
    }
  }
