/* Landing page override for base template mobile centering */
    .landing-page h1:not(.logo),
    .landing-page h2,
    .landing-page p {
        text-align: left !important;
    }
    
    /* Override global mobile h1 padding coming from base template */
    .landing-page h1:not(.logo) {
        padding: 0 !important;
    }
    
    /* Clean hero styling */
    .hero {
        background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2c42 100%);
        position: relative;
        overflow: hidden;
        padding: 12rem 0 8rem;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 40%, rgba(234, 179, 8, 0.15) 0%, transparent 60%),
                    radial-gradient(circle at 80% 10%, rgba(99, 102, 241, 0.18) 0%, transparent 65%),
                    radial-gradient(circle at 50% 80%, rgba(192, 132, 252, 0.12) 0%, transparent 60%);
    }
    
    .hero-content {
        position: relative;
        z-index: 10;
        width: 100%;
        margin: 0;
        padding: 0;
        text-align: left;
    }
    
    .hero-content h1,
    .hero-content p,
    .hero-content .typing-container {
        max-width: 650px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        color: white;
        line-height: 1.2;
    }
    
    .hero h1 span {
        color: var(--gold);
        position: relative;
    }
    
    .hero h1 span::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--gold);
    }
    
    .hero p {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.7;
    }
    
    .hero-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: flex-start;
        margin-top: 2rem;
    }
    

    
    /* Fix container padding inconsistency - Landing page specific */
    @media (max-width: 768px) {
        /* Override base template's 1rem mobile padding to maintain consistency with other sections */
        html body .hero .container,
        html body .quote-section .container,
        html body .client-logos .container,
        html body .data-visualization .container,
        html body .features .container,
        html body .cta .container {
            padding-left: 1.5rem !important;
            padding-right: 1.5rem !important;
        }
        
        .hero-buttons {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
            justify-content: flex-start;
        }
        
        .hero-buttons .btn {
            width: 100%;
            max-width: 280px;
            text-align: center;
        }
        
        .hero-content h1,
        .hero-content p,
        .hero-content .typing-container {
            max-width: 100%;
        }

    }
    
    /* AI data visualization section */
    .data-visualization {
        padding: 6rem 0;
        background: #f8f9fa;
        position: relative;
        overflow: hidden;
    }
    
    .benefits-content {
        text-align: left;
        max-width: 100%;
        margin: 0;
    }
    
    .benefits-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--text);
        text-align: left;
    }
    
    .benefits-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--text-light);
        margin-bottom: 2rem;
        text-align: left;
        max-width: 600px;
    }
    
    .data-viz-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .data-viz-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--text);
    }
    
    .data-viz-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--text-light);
        margin-bottom: 2rem;
    }
    
    .data-points {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .data-point {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(6px);
        border-radius: 1rem;
        padding: 2.5rem 1rem;
        position: relative;
        overflow: hidden;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    
    .data-point::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 30%, rgba(234, 179, 8, 0.25) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }
    
    .data-point:hover {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    }
    
    .data-point:hover::after {
        opacity: 1;
    }
    
    .data-point-value {
        font-size: 3rem;
        font-weight: 700;
        color: var(--gold);
        margin-bottom: 0.5rem;
    }
    
    .data-point-label {
        font-size: 1.05rem;
        color: var(--text-light);
        text-align: center;
        line-height: 1.4;
    }
    
    .data-viz-image {
        position: relative;
    }
    
    .data-viz-image img {
        width: 100%;
        border-radius: 1rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .data-viz-image::before {
        content: '';
        position: absolute;
        top: -20px;
        right: -20px;
        width: 100%;
        height: 100%;
        border: 2px solid var(--gold);
        border-radius: 1rem;
        z-index: -1;
    }
    
    /* Features section with AI theme */
    .features {
        padding: 8rem 0;
        background: white;
    }
    
    .section-header {
        text-align: left;
        max-width: 700px;
        margin: 0 0 5rem 0;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--text);
    }
    
    .section-header p {
        font-size: 1.1rem;
        color: var(--text-light);
        line-height: 1.8;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .feature-card {
        background: var(--glass-gradient);
        border: var(--glass-border);
        backdrop-filter: blur(12px);
        padding: 2.5rem;
        border-radius: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .feature-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        position: relative;
    }
    
    .feature-icon::after {
        content: '';
        position: absolute;
        width: 60px;
        height: 60px;
        border: 2px solid var(--gold);
        border-radius: 50%;
        opacity: 0.2;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); opacity: 0.2; }
        50% { transform: scale(1.1); opacity: 0.1; }
        100% { transform: scale(1); opacity: 0.2; }
    }
    
    .feature-icon i {
        color: var(--gold);
        font-size: 1.25rem;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
        margin: 0;
        color: var(--text);
        line-height: 1.3;
        flex: 1;
    }
    
    .feature-card p {
        color: var(--text-light);
        line-height: 1.75;
        font-size: 1.1rem;
        flex-grow: 1;
    }
    
    /* Client Logos Section */
    /* Client logos section - positioned after benefits */
    .client-logos-section {
        background: #f8f9fa;
        padding: 4rem 0;
        position: relative;
    }
    
    .client-logos-section .container {
        position: relative;
        z-index: 2;
    }
    
    .client-logos-content {
        text-align: left;
        margin-bottom: 2.5rem;
    }
    
    .client-logos-content h2 {
        font-size: 2.2rem;
        color: var(--text);
        margin-bottom: 1.2rem;
        font-weight: 600;
        line-height: 1.3;
    }
    
    .client-logos-content p {
        font-size: 1.15rem;
        color: var(--text-light);
        max-width: 600px;
        margin: 0 0 2rem 0;
        line-height: 1.7;
    }
    
    .client-logos-content .restaurant-intelligence {
        color: var(--gold);
        font-weight: 600;
        position: relative;
    }
    
    .client-logos-content .restaurant-intelligence::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--gold);
        opacity: 0.7;
    }
    
    .logos-headline {
        font-size: 1.5rem;
        color: var(--text);
        margin-bottom: 2rem;
        font-weight: 600;
        line-height: 1.3;
    }
    
    .logos-grid {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 4rem;
        flex-wrap: wrap;
    }
    
    .client-logo {
        box-shadow: none !important;
        transition: transform 0.3s ease;
    }
    
    .client-logo:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: none !important;
    }
    
    .client-logo img {
        max-height: 80px;
        max-width: 200px;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: all 0.3s ease;
    }
    
    /* Legacy client-logos styles (kept for compatibility) */
    .client-logos {
        background: #f5f7fa;
        padding: 5rem 0;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        position: relative;
    }
    
    .client-logos::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
        pointer-events: none;
    }
    
    .client-logos .container {
        position: relative;
        z-index: 2;
    }
    
    .client-logos .client-logos-content {
        text-align: left;
        margin-bottom: 3.5rem;
        padding: 0 0 2rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .client-logos .client-logos-content h2 {
        font-size: 2.2rem;
        color: var(--text);
        margin-bottom: 1.2rem;
        font-weight: 600;
        line-height: 1.3;
    }
    
    .client-logos .client-logos-content p {
        font-size: 1.15rem;
        color: var(--text-light);
        max-width: 600px;
        margin: 0 0 0 0;
        line-height: 1.7;
    }
    
    .client-logos .client-logos-content .restaurant-intelligence {
        color: var(--gold);
        font-weight: 600;
        position: relative;
    }
    
    .client-logos .client-logos-content .restaurant-intelligence::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 1px;
        background: var(--gold);
        opacity: 0.7;
    }
    
    .client-logos .logos-grid {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 4rem;
        flex-wrap: wrap;
    }
    
    /* AI-powered CTA section */
    .cta {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        padding: 8rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/static/images/ai-pattern.png');
        opacity: 0.05;
        background-size: cover;
    }
    
    .cta-content {
        text-align: left;
        max-width: 700px;
        margin: 0 0 0 0;
        position: relative;
        z-index: 10;
    }
    
    .cta-content h2 {
        font-size: 3rem;
        color: white;
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .cta-content p {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2.5rem;
        line-height: 1.7;
        text-align: left;
    }
    
    /* AI typing effect */
    .typing-container {
        height: 40px;
        margin-bottom: 2rem;
    }
    
    .typing-text {
        color: white;
        font-size: 1.5rem;
        font-weight: 600;
        position: relative;
    }
    
    .typing-text::after {
        content: '|';
        animation: blink 1s infinite;
    }
    
    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
    }
    
    /* Responsive Styles */
    @media (max-width: 1200px) {
        .features-grid {
            gap: 2rem;
        }
        
        .feature-card {
            padding: 2rem;
        }
    }
    
    @media (max-width: 992px) {
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }
        
        .feature-card {
            padding: 1.5rem;
        }
        
        .feature-header {
            gap: 0.75rem;
            margin-bottom: 1.25rem;
        }
        
        .feature-icon {
            width: 45px;
            height: 45px;
        }
        
        .feature-icon::after {
            width: 54px;
            height: 54px;
        }
        
        .feature-icon i {
            font-size: 1.1rem;
        }
        
        .feature-card h3 {
            font-size: 1.25rem;
        }
        
        .feature-card p {
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .hero h1 {
            font-size: 3rem;
            text-align: left !important;
        }
        
        .hero p {
            text-align: left !important;
        }
        
        .section-header h2, 
        .data-viz-content h2 {
            font-size: 2.25rem;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            text-align: left;
        }
        
        .cta-content p {
            text-align: left;
        }
        
        /* Client logos responsive */
        .client-logos {
            padding: 3rem 0;
        }
        
        .client-logos-content h2 {
            font-size: 1.75rem;
        }
        
        .logos-grid {
            gap: 3rem;
        }
        
        .client-logo img {
            max-height: 70px;
            max-width: 180px;
        }
        
        /* Quote section responsive */
        .quote-section {
            padding: 4rem 0;
        }
        
        .quote-main {
            font-size: 2rem;
        }
        
        .quote-subtext {
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 768px) {
        .features-grid {
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }
        
        .features {
            padding: 5rem 0;
        }
        
        .feature-card {
            padding: 1.25rem;
            margin-bottom: 1rem;
        }
        
        .feature-header {
            gap: 0.75rem;
            margin-bottom: 1rem;
        }
        
        .feature-icon {
            width: 40px;
            height: 40px;
        }
        
        .feature-icon::after {
            width: 48px;
            height: 48px;
        }
        
        .feature-icon i {
            font-size: 1rem;
        }
        
        .feature-card h3 {
            font-size: 1.1rem;
        }
        
        .feature-card p {
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .section-header {
            margin-bottom: 2.5rem;
        }
        
        .section-header h2 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }
        
        .section-header p {
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .data-points {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .data-point {
            padding: 2rem 1rem;
        }
        
        .data-point-value {
            font-size: 2.25rem;
        }
        
        .data-point-label {
            font-size: 1rem;
        }
        
        .data-visualization {
            padding: 4rem 0;
        }
        
        .benefits-content h2 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }
        
        .benefits-content p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        /* Client logos section mobile */
        .client-logos-section {
            padding: 2.5rem 0;
        }
        
        .client-logos-content h2 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .client-logos-content p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .logos-headline {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        
        .logos-grid {
            gap: 2rem;
            justify-content: flex-start;
        }
        
        .client-logo img {
            max-height: 60px;
            max-width: 160px;
        }
        
        /* Legacy client logos mobile */
        .client-logos {
            padding: 2.5rem 0;
        }
        
        .client-logos .client-logos-content {
            margin-bottom: 2rem;
        }
        
        .client-logos .client-logos-content h2 {
            font-size: 1.5rem;
        }
        
        .client-logos .client-logos-content p {
            font-size: 1rem;
        }
        
        /* Quote section mobile */
        .quote-section {
            padding: 4rem 0;
            margin-bottom: 1.5rem;
        }
        
        .quote-content {
            padding: 1.5rem 0;
        }
        
        .quote-content::before {
            font-size: 3.5rem;
            top: -1rem;
            left: -0.3rem;
        }
        
        .quote-main {
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
            padding-left: 0.3rem;
        }
        
        .quote-subtext {
            font-size: 1rem;
            line-height: 1.6;
            padding-left: 0.3rem;
        }
    }
    
    @media (max-width: 576px) {
        .features-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        
        .features {
            padding: 3rem 0;
        }
        
        .feature-card {
            padding: 1rem;
            margin-bottom: 0.75rem;
            border-radius: 0.75rem;
        }
        
        .feature-header {
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }
        
        .feature-icon {
            width: 35px;
            height: 35px;
        }
        
        .feature-icon::after {
            width: 42px;
            height: 42px;
        }
        
        .feature-icon i {
            font-size: 0.9rem;
        }
        
        .feature-card h3 {
            font-size: 1rem;
            line-height: 1.2;
        }
        
        .feature-card p {
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        .section-header {
            margin-bottom: 2rem;
        }
        
        .section-header h2 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }
        
        .section-header p {
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .data-points {
            grid-template-columns: 1fr;
            gap: 0.5rem;
        }
        
        .data-point {
            padding: 0.75rem;
        }
        
        .data-point-value {
            font-size: 1.75rem;
            margin-bottom: 0.25rem;
        }
        
        .data-point-label {
            font-size: 0.85rem;
        }
        
        .data-visualization {
            padding: 3rem 0;
        }
        
        .benefits-content h2 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }
        
        .benefits-content p {
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1.25rem;
        }
        
        .cta {
            padding: 4rem 0;
        }
        
        .cta-content h2 {
            font-size: 1.5rem;
            line-height: 1.3;
            margin-bottom: 1rem;
        }
        
        .cta-content p {
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }
        
        /* Client logos small mobile */
        .client-logos {
            padding: 2rem 0;
        }
        
        .client-logos-content h2 {
            font-size: 1.25rem;
        }
        
        .client-logos-content p {
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .logos-grid {
            gap: 1.5rem;
            flex-direction: column;
            align-items: center;
        }
        
        .client-logo img {
            max-height: 50px;
            max-width: 140px;
        }
        
        /* Quote section small mobile */
        .quote-section {
            padding: 3.5rem 0;
            margin-bottom: 1rem;
        }
        
        .quote-content {
            padding: 1rem 0;
        }
        
        .quote-content::before {
            font-size: 3rem;
            top: -0.8rem;
            left: -0.2rem;
        }
        
        .quote-main {
            font-size: 1.4rem;
            line-height: 1.3;
            margin-bottom: 1rem;
            padding-left: 0.2rem;
        }
        
        .quote-subtext {
            font-size: 0.95rem;
            line-height: 1.5;
            padding-left: 0.2rem;
        }
    }

    /* CTA button styling */
    .cta-button-container {
        display: flex;
        justify-content: flex-start;
        margin-top: 2rem;
    }

    /* Hero button styling */
    .hero-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: flex-start;
        margin-top: 2rem;
    }

    /* Quote Section */
    .quote-section {
        background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2c42 100%);
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
        margin-bottom: 0;
    }
    
    .quote-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.03) 0%, transparent 70%);
    }
    
    .quote-content {
        text-align: left;
        max-width: 700px;
        margin: 0;
        position: relative;
        z-index: 10;
        padding: 2rem 0;
    }
    
    .quote-content::before {
        content: '"';
        font-size: 4rem;
        color: var(--gold);
        opacity: 0.15;
        position: absolute;
        top: -1rem;
        left: -0.5rem;
        font-family: 'Playfair Display', serif;
        line-height: 1;
        z-index: -1;
    }
    
    .quote-main {
        font-size: 1.8rem;
        color: white;
        font-weight: 400;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        font-family: 'Playfair Display', serif;
        font-style: italic;
        padding-left: 0.5rem;
    }
    
    .quote-subtext {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        font-weight: 300;
        max-width: 600px;
        margin: 0;
        padding-left: 0.5rem;
    }

    /* -------------------------------------------------------------------
       Dyner Landing Page – Visual Enhancements (2025-06 update)
       ------------------------------------------------------------------- */

    /* 1. Enhanced hero decorative backdrop */
    .hero::after {
        /* Multiple radial glows for a richer, more high-tech ambience */
        background: radial-gradient(circle at 30% 40%, rgba(234, 179, 8, 0.15) 0%, transparent 60%),
                    radial-gradient(circle at 80% 10%, rgba(99, 102, 241, 0.18) 0%, transparent 65%),
                    radial-gradient(circle at 50% 80%, rgba(192, 132, 252, 0.12) 0%, transparent 60%);
    }

    /* 3. Glassmorphism treatment for feature cards */
    .feature-card {
        background: var(--glass-gradient);
        border: var(--glass-border);
        backdrop-filter: blur(12px);
    }

    /* 4. Remove wasteful section dividers */
    section:not(.hero):not(.cta)::before {
        display: none;
    }

    /* 5. Improved hover states */
    .data-point:hover {
        transform: translateY(-6px) scale(1.02);
    }

    .feature-card:hover .feature-icon {
        background: var(--gold);
    }

    .feature-card:hover .feature-icon i {
        color: var(--primary-dark);
    }

    /* 6. CTA section angled overlay for a dynamic feel */
    .cta::after {
        content: '';
        position: absolute;
        top: -80px;
        left: 0;
        width: 100%;
        height: 200px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--primary-dark) 100%);
        transform: skewY(-3deg);
        transform-origin: 0;
    }

    /* -------------------------------------------------------------------
       Hero wrapper with on-desktop logos grid
       ------------------------------------------------------------------- */
    .hero-wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 4rem;
    }

    .hero-logos {
        flex-shrink: 0;
        max-width: 320px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-logos .logos-grid {
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
        align-items: center;
    }

    .logos-headline {
        font-size: 1rem;
        color: var(--gold);
        margin-bottom: 0.75rem;
        font-weight: 600;
        text-align: center;
    }

    /* Decorative glass card for logos */
    .hero-logos {
        background: var(--glass-gradient);
        border: var(--glass-border);
        backdrop-filter: blur(8px);
        padding: 1.75rem 2rem;
        border-radius: 1rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .client-logo {
        filter: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .client-logo:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    @media (max-width: 991px) {
        .hero-wrapper {
            flex-direction: column;
            gap: 2.5rem;
        }
        .hero-logos {
            display: flex; /* show logos below content on mobile */
            align-items: center;
            max-width: 100%;
        }
    }

    /* Always hide the standalone logos section after redesign */
    .client-logos.mobile-only {
        display: none !important;
    }

    /* -------------------------------------------------------------------
       Logo tweaks (remove greyscale & card, subtle hover) – 2025-06
       ------------------------------------------------------------------- */
    .hero-logos {
        background: transparent;
        border: none;
        backdrop-filter: none;
        padding: 0;
        box-shadow: none;
    }

    .client-logo {
        filter: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .client-logo:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    /* -----------------------------------------------------------
   Spacing optimisation – reduce vertical padding (2025-06)
   ----------------------------------------------------------- */
.landing-page .hero {
    padding: 8rem 0 3rem;
}

.landing-page .data-visualization,
.landing-page .client-logos,
.landing-page .features,
.landing-page .quote-section {
    padding: 2rem 0;
}

.landing-page .cta {
    padding: 2.5rem 0;
}

/* Even tighter spacing on tablets and phones */
@media (max-width: 768px) {
    .landing-page .hero {
        padding: 4rem 0 2rem;
    }

    .landing-page .data-visualization,
    .landing-page .client-logos,
    .landing-page .features,
    .landing-page .quote-section,
    .landing-page .cta {
        padding: 1.5rem 0;
    }
}

/* Additional section header spacing reduction */
.landing-page .section-header {
    margin-bottom: 2.5rem !important;
}

@media (max-width: 768px) {
    .landing-page .section-header {
        margin-bottom: 1.5rem !important;
    }
}