      /* =============================================================================
         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;
        padding: 0;
      }

      /* =============================================================================
         HEADER STYLES
         ============================================================================= */
      .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%;
        margin: 0;
        left: 0;
        right: 0;
      }

      .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 {
        margin: 0;
        flex: 1 0 auto;
        width: 100%;
        padding: 0;
      }

      .hero-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: #fff;
        padding: 60px 24px;
        text-align: center;
        margin: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
      }

      .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;
      }

      /* Rating Display */
      .rating-display {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
        font-size: 1.1em;
      }

      .stars {
        color: #ffd700;
        font-size: 1.2em;
      }

      .rating-text {
        color: var(--accent-color);
        font-weight: 600;
      }

      /* 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
         ============================================================================= */
      .sections-container {
        background: var(--theme-bg);
        padding: 0;
        width: 100%;
        margin: 0;
      }

      .section {
        background: var(--theme-surface);
        max-width: var(--desktop);
        margin: 24px auto;
        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);
      }

      /* Reviews Section - Horizontal Swipe */
      .reviews-scroll-wrapper {
        position: relative;
        margin-top: 30px;
      }
      .reviews-grid {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 16px;
        scrollbar-width: thin;
        scrollbar-color: var(--secondary-color) transparent;
      }
      .reviews-grid::-webkit-scrollbar {
        height: 6px;
      }
      .reviews-grid::-webkit-scrollbar-track {
        background: transparent;
      }
      .reviews-grid::-webkit-scrollbar-thumb {
        background: var(--secondary-color);
        border-radius: 3px;
      }
      .review-card {
        background: var(--form-bg);
        padding: 24px;
        border-radius: 8px;
        border: 1px solid var(--theme-border);
        min-width: 320px;
        max-width: 380px;
        flex-shrink: 0;
        scroll-snap-align: start;
        transition: transform 0.3s ease;
      }
      .review-card:hover {
        transform: translateY(-3px);
      }
      .reviews-scroll-hint {
        text-align: center;
        margin-top: 12px;
        font-size: 0.85em;
        color: var(--theme-text-secondary);
      }

      .review-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
      }

      .reviewer-name {
        font-weight: 600;
        color: var(--theme-text);
      }

      .review-stars {
        color: #ffd700;
      }

      .review-text {
        color: var(--theme-text-secondary);
        line-height: 1.6;
        font-style: italic;
      }

      .review-location {
        margin-top: 12px;
        font-size: 0.9em;
        color: var(--secondary-color);
      }

      /* FAQ Section */
      .faq-container {
        margin-top: 30px;
      }

      .faq-item {
        background: var(--form-bg);
        margin-bottom: 16px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid var(--theme-border);
      }

      .faq-question {
        padding: 20px;
        cursor: pointer;
        font-weight: 600;
        color: var(--theme-text);
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.2s ease;
      }

      .faq-question:hover {
        background: var(--theme-surface);
      }

      .faq-question::after {
        content: '+';
        font-size: 1.5em;
        color: var(--secondary-color);
        transition: transform 0.3s ease;
      }

      .faq-item.active .faq-question::after {
        transform: rotate(45deg);
      }

      .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
      }

      .faq-item.active .faq-answer {
        padding: 20px;
        max-height: 500px;
      }

      /* Stats Section */
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
        margin-top: 30px;
      }

      .stat-card {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: #fff;
        padding: 30px;
        border-radius: 8px;
        text-align: center;
      }

      .stat-number {
        font-size: 2.5em;
        font-weight: 700;
        margin-bottom: 8px;
      }

      .stat-label {
        font-size: 1em;
        opacity: 0.9;
      }

      /* =============================================================================
         FOOTER STYLES
         ============================================================================= */
      .footer-enhanced {
        background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a52 100%);
        color: #ffffff;
        margin: 60px 0 0 0;
        border-top: 4px solid var(--secondary-color);
        width: 100vw;
        margin-left: calc(-50vw + 50%);
      }

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

      .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;
      }

      .footer-logo-img {
        height: 180px;
        width: 180px;
        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;
        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);
      }

      .footer-links-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
        margin-top: 40px;
        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;
      }

      .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;
      }
          /* ─── CASE STUDIES STAGGER ─── */
  .cs-showcase{max-width:var(--desktop);margin:0 auto;padding:60px 24px 40px}
  .cs-showcase .cs-header{text-align:center;margin-bottom:48px}
  .cs-showcase .cs-header h2{font-size:2em;font-weight:800;color:var(--theme-text);margin:0 0 12px}
  .cs-showcase .cs-header p{font-size:1.1em;color:var(--theme-text-secondary);max-width:600px;margin:0 auto;line-height:1.6}
  .cs-stagger{display:flex;flex-direction:column;gap:48px}
  .cs-row{display:flex;gap:40px;align-items:center}
  .cs-row.reverse{flex-direction:row-reverse}
  .cs-row .cs-img{flex:0 0 45%;border-radius:12px;overflow:hidden;box-shadow:0 8px 32px rgba(0,0,0,0.1)}
  .cs-row .cs-img img{width:100%;height:280px;object-fit:cover;display:block;transition:transform 0.4s}
  .cs-row:hover .cs-img img{transform:scale(1.03)}
  .cs-row .cs-content{flex:1}
  .cs-row .cs-content .cs-tag{display:inline-block;font-size:0.72em;font-weight:700;text-transform:uppercase;letter-spacing:0.06em;padding:4px 10px;border-radius:4px;margin-bottom:12px}
  .cs-tag.garage-type{background:rgba(40,96,144,0.12);color:var(--secondary-color)}
  .cs-tag.revenue{background:rgba(67,160,71,0.12);color:var(--success-color)}
  .cs-tag.mot{background:rgba(255,152,0,0.15);color:#e65100}
  .cs-tag.efficiency{background:rgba(91,192,222,0.15);color:#0277bd}
  .cs-tag.marketing{background:rgba(156,39,176,0.12);color:#7b1fa2}
  .cs-row .cs-content h3{font-size:1.4em;font-weight:700;color:var(--theme-text);margin:0 0 10px;line-height:1.3}
  .cs-row .cs-content p{font-size:1em;color:var(--theme-text-secondary);line-height:1.7;margin:0 0 16px}
  .cs-row .cs-content .cs-result{display:inline-flex;align-items:center;gap:8px;background:var(--form-bg);border-radius:8px;padding:10px 16px;font-size:0.9em;font-weight:600;color:var(--theme-text);margin-bottom:16px}
  .cs-row .cs-content .cs-link{display:inline-flex;align-items:center;gap:6px;color:var(--secondary-color);font-weight:600;font-size:0.95em;text-decoration:none;transition:gap 0.2s}
  .cs-row .cs-content .cs-link:hover{gap:10px}
  .cs-row .cs-content .cs-link::after{content:'→';transition:transform 0.2s}
  .cs-row:hover .cs-content .cs-link::after{transform:translateX(3px)}
  .cs-showcase .cs-view-all{text-align:center;margin-top:40px}
  .cs-showcase .cs-view-all a{display:inline-flex;align-items:center;gap:8px;color:var(--secondary-color);font-weight:600;font-size:1em;text-decoration:none;padding:12px 24px;border:2px solid var(--secondary-color);border-radius:8px;transition:all 0.2s}
  .cs-showcase .cs-view-all a:hover{background:var(--secondary-color);color:#fff;transform:translateY(-2px)}
  @media(max-width:768px){.cs-row,.cs-row.reverse{flex-direction:column;gap:20px}.cs-row .cs-img{flex:none;width:100%}.cs-row .cs-img img{height:200px}.cs-showcase .cs-header h2{font-size:1.6em}}

  /* ─── BLOG SIDE-SCROLL ─── */
  .blog-scroll-section{padding:60px 0 48px;overflow:hidden}
  .blog-scroll-section .bs-header{text-align:center;padding:0 24px;margin-bottom:32px}
  .blog-scroll-section .bs-header h2{font-size:2em;font-weight:800;color:var(--theme-text);margin:0 0 12px}
  .blog-scroll-section .bs-header p{font-size:1.1em;color:var(--theme-text-secondary);max-width:600px;margin:0 auto;line-height:1.6}
  .blog-scroll-track{display:flex;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding:0 24px 20px;scrollbar-width:none;-ms-overflow-style:none}
  .blog-scroll-track::-webkit-scrollbar{display:none}
  .blog-scroll-card{flex:0 0 320px;scroll-snap-align:start;background:var(--theme-surface);border:1px solid var(--theme-border);border-radius:12px;padding:24px 20px;text-decoration:none;color:inherit;display:flex;flex-direction:column;transition:all 0.3s;min-height:220px}
  .blog-scroll-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,0.1);border-color:var(--secondary-color)}
  .blog-scroll-card .bsc-tag{display:inline-block;font-size:0.68em;font-weight:700;text-transform:uppercase;letter-spacing:0.06em;padding:3px 8px;border-radius:4px;width:fit-content;margin-bottom:10px}
  .bsc-tag.getting-started{background:rgba(40,96,144,0.12);color:var(--secondary-color)}
  .bsc-tag.mot{background:rgba(255,152,0,0.15);color:#e65100}
  .bsc-tag.jobs{background:rgba(91,192,222,0.15);color:#0277bd}
  .bsc-tag.invoicing{background:rgba(67,160,71,0.12);color:var(--success-color)}
  .bsc-tag.marketing{background:rgba(156,39,176,0.12);color:#7b1fa2}
  .bsc-tag.stock{background:rgba(255,193,7,0.15);color:#f57f17}
  .bsc-tag.comparison{background:rgba(0,150,136,0.12);color:#00796b}
  .blog-scroll-card h3{font-size:1.05em;font-weight:700;color:var(--theme-text);margin:0 0 8px;line-height:1.35}
  .blog-scroll-card p{font-size:0.88em;color:var(--theme-text-secondary);line-height:1.55;margin:0 0 14px;flex-grow:1}
  .blog-scroll-card .bsc-link{color:var(--secondary-color);font-weight:600;font-size:0.85em;display:inline-flex;align-items:center;gap:5px;margin-top:auto;transition:gap 0.2s}
  .blog-scroll-card .bsc-link::after{content:'→'}
  .blog-scroll-card:hover .bsc-link{gap:8px}
  .blog-scroll-section .bs-view-all{text-align:center;margin-top:24px}
  .blog-scroll-section .bs-view-all a{display:inline-flex;align-items:center;gap:8px;color:var(--secondary-color);font-weight:600;font-size:1em;text-decoration:none;padding:12px 24px;border:2px solid var(--secondary-color);border-radius:8px;transition:all 0.2s}
  .blog-scroll-section .bs-view-all a:hover{background:var(--secondary-color);color:#fff;transform:translateY(-2px)}
  @media(max-width:768px){.blog-scroll-card{flex:0 0 280px}.blog-scroll-section .bs-header h2{font-size:1.6em}}
/* =============================================================================
 INVOICE MANAGER - NEW SECTIONS CSS
 INSERT BEFORE: @media print (find "/* Print styles */" around line 1780)
 ============================================================================= */

/* How Invoicing Works - Steps */
.invoice-steps-grid {
display: flex;
gap: 20px;
margin-top: 30px;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
padding-bottom: 12px;
}
.invoice-step {
background: var(--form-bg);
border: 1px solid var(--theme-border);
border-radius: 12px;
padding: 28px 20px;
text-align: center;
min-width: 200px;
flex: 1;
position: relative;
scroll-snap-align: start;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.invoice-step:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.invoice-step-number {
width: 44px;
height: 44px;
background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3em;
font-weight: 700;
margin: 0 auto 14px;
}
.invoice-step-icon { font-size: 2em; margin-bottom: 10px; }
.invoice-step h3 { color: var(--theme-text); margin: 0 0 8px; font-size: 1.05em; }
.invoice-step p { color: var(--theme-text-secondary); font-size: 0.9em; margin: 0; line-height: 1.5; }
.invoice-step-arrow {
display: none;
}
@media (min-width: 768px) {
.invoice-step-arrow {
  display: block;
  position: absolute;
  top: 42px;
  right: -14px;
  font-size: 1.2em;
  color: var(--secondary-color);
  z-index: 1;
}
}

/* Invoice Preview - Before/After */
.invoice-preview-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin-top: 30px;
align-items: start;
}
@media (max-width: 768px) {
.invoice-preview-grid {
  grid-template-columns: 1fr;
}
}
.invoice-preview-card {
border-radius: 12px;
overflow: hidden;
border: 2px solid var(--theme-border);
transition: transform 0.3s ease;
}
.invoice-preview-card:hover {
transform: translateY(-3px);
}
.invoice-preview-label {
padding: 14px 20px;
font-weight: 700;
font-size: 1.1em;
text-align: center;
}
.invoice-preview-label.before {
background: #e74c3c;
color: #fff;
}
.invoice-preview-label.after {
background: var(--success-color);
color: #fff;
}
.invoice-preview-body {
padding: 24px;
background: var(--form-bg);
font-size: 0.9em;
line-height: 1.7;
color: var(--theme-text-secondary);
}
.invoice-preview-body .preview-line {
padding: 6px 0;
border-bottom: 1px dashed var(--theme-border);
}
.invoice-preview-body .preview-line:last-child {
border-bottom: none;
}
.invoice-bad { color: #e74c3c; font-weight: 500; }
.invoice-good { color: var(--success-color); font-weight: 500; }

/* Cash Flow Calculator */
.cashflow-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 24px;
margin-top: 24px;
}
.cashflow-card {
background: var(--form-bg);
border: 1px solid var(--theme-border);
border-radius: 12px;
padding: 28px;
text-align: center;
}
.cashflow-icon { font-size: 2.5em; margin-bottom: 12px; }
.cashflow-loss {
font-size: 2em;
font-weight: 700;
color: #e74c3c;
margin: 8px 0;
}
.cashflow-math {
font-size: 0.88em;
color: var(--theme-text-secondary);
line-height: 1.6;
}
.cashflow-summary {
margin-top: 30px;
padding: 30px;
background: linear-gradient(135deg, rgba(40, 96, 144, 0.1) 0%, rgba(179, 229, 252, 0.1) 100%);
border-radius: 12px;
border-left: 4px solid var(--success-color);
text-align: center;
}
.cashflow-total {
font-size: 3em;
font-weight: 700;
color: #e74c3c;
}
.cashflow-payback {
font-size: 1.4em;
font-weight: 700;
color: var(--success-color);
margin-top: 12px;
}

/* Payment Methods Grid */
.payment-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
gap: 20px;
margin-top: 24px;
}
.payment-card {
background: var(--form-bg);
border: 1px solid var(--theme-border);
border-radius: 12px;
padding: 24px 16px;
text-align: center;
transition: transform 0.3s ease;
}
.payment-card:hover { transform: translateY(-3px); }
.payment-icon { font-size: 2.5em; margin-bottom: 10px; }
.payment-name { font-weight: 600; color: var(--theme-text); margin-bottom: 6px; }
.payment-desc { font-size: 0.82em; color: var(--theme-text-secondary); line-height: 1.4; }

/* Job Card to Paid Timeline */
.timeline-container {
margin-top: 30px;
position: relative;
padding-left: 40px;
}
.timeline-container::before {
content: '';
position: absolute;
left: 15px;
top: 0;
bottom: 0;
width: 3px;
background: linear-gradient(180deg, var(--secondary-color), var(--success-color));
border-radius: 2px;
}
.timeline-item {
position: relative;
padding: 0 0 36px 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
position: absolute;
left: -32px;
top: 4px;
width: 28px;
height: 28px;
background: var(--secondary-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75em;
color: #fff;
font-weight: 700;
border: 3px solid var(--form-bg);
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.timeline-item:last-child .timeline-dot {
background: var(--success-color);
}
.timeline-time {
font-size: 0.8em;
font-weight: 600;
color: var(--secondary-color);
margin-bottom: 4px;
}
.timeline-title {
font-weight: 600;
color: var(--theme-text);
font-size: 1.05em;
margin-bottom: 4px;
}
.timeline-desc {
font-size: 0.9em;
color: var(--theme-text-secondary);
line-height: 1.5;
}

/* Unpaid Invoice Automation */
.chasing-timeline {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 16px;
margin-top: 24px;
}
.chasing-step {
background: var(--form-bg);
border: 1px solid var(--theme-border);
border-radius: 12px;
padding: 22px 16px;
text-align: center;
position: relative;
transition: transform 0.3s ease;
}
.chasing-step:hover { transform: translateY(-3px); }
.chasing-day {
font-size: 0.75em;
font-weight: 700;
color: #fff;
background: var(--secondary-color);
display: inline-block;
padding: 3px 12px;
border-radius: 20px;
margin-bottom: 10px;
}
.chasing-step:last-child .chasing-day {
background: #e74c3c;
}
.chasing-step h4 {
color: var(--theme-text);
margin: 0 0 6px;
font-size: 0.95em;
}
.chasing-step p {
color: var(--theme-text-secondary);
font-size: 0.82em;
margin: 0;
line-height: 1.4;
}
.chasing-icon { font-size: 1.8em; margin-bottom: 8px; }

/* Switching from Paper */
.switching-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 24px;
margin-top: 24px;
}
.switching-card {
background: var(--form-bg);
border: 1px solid var(--theme-border);
border-radius: 12px;
padding: 28px;
transition: transform 0.3s ease;
}
.switching-card:hover { transform: translateY(-3px); }
.switching-worry {
font-size: 0.8em;
font-weight: 600;
color: #e74c3c;
background: rgba(231, 76, 60, 0.08);
padding: 4px 12px;
border-radius: 20px;
display: inline-block;
margin-bottom: 12px;
}
.switching-card h3 {
color: var(--theme-text);
margin: 0 0 8px;
font-size: 1.05em;
}
.switching-card p {
color: var(--theme-text-secondary);
font-size: 0.92em;
margin: 0;
line-height: 1.6;
}

/* HMRC & VAT Ready */
.vat-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-top: 24px;
}
.vat-card {
background: var(--form-bg);
border: 1px solid var(--theme-border);
border-radius: 12px;
padding: 24px;
text-align: center;
transition: transform 0.3s ease;
}
.vat-card:hover { transform: translateY(-3px); }
.vat-icon { font-size: 2.2em; margin-bottom: 10px; }
.vat-card h3 { color: var(--theme-text); margin: 0 0 8px; font-size: 1em; }
.vat-card p { color: var(--theme-text-secondary); font-size: 0.85em; margin: 0; line-height: 1.4; }

/* Local Area Context */
.local-context-content {
line-height: 1.8;
color: var(--theme-text-secondary);
font-size: 1em;
}
.local-context-content p { margin-bottom: 16px; }
.local-context-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 16px;
margin: 24px 0;
}
.local-stat {
background: var(--form-bg);
border: 1px solid var(--theme-border);
border-radius: 10px;
padding: 16px;
text-align: center;
}
.local-stat-val {
font-size: 1.5em;
font-weight: 700;
color: var(--secondary-color);
}
.local-stat-lbl {
font-size: 0.8em;
color: var(--theme-text-secondary);
margin-top: 4px;
}
      /* =============================================================================
         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;
        }
        
        .features-grid {
          grid-template-columns: 1fr;
        }

        .footer-container {
          padding: 30px 16px;
        }
        
        .footer-links-row {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        
        .footer-column {
          text-align: center;
        }
      }

      @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-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%);
      }

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