:root {
    /* Color Palette - Muval Style Modern */
    --color-bg: #FFFFFF;
    --color-surface: #F8F9FA;
    /* Very light gray for sections */
    --color-text-main: #1A1C20;
    /* Dark charcoal */
    --color-text-muted: #5E6C84;
    /* Slate gray */

    /* Action Color - Deep Blue (High Contrast) */
    --color-action: #0056D2;
    --color-action-hover: #0044A6;

    /* Accent - Gold/Orange for emphasis */
    --color-accent: #D6A469;

    --color-border: #E1E4E8;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Inter', sans-serif;
    /* Clean, bold headings */

    /* Spacing */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 2rem;
    /* 32px */
    --spacing-lg: 4rem;
    /* 64px */
    --spacing-xl: 6rem;
    /* 96px */

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
    /* Bold headings like Muval */
    color: var(--color-text-main);
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Buttons - Muval Style */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary {
    background-color: var(--color-action);
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 86, 210, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-action-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 86, 210, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-action);
    border: 2px solid var(--color-action);
}

.btn-secondary:hover {
    background-color: rgba(0, 86, 210, 0.05);
}

.btn-full {
    width: 100%;
}

/* Header - Sticky & Clean */
.header {
    height: var(--header-height);
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text-main);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-muted);
}

.nav-link:hover {
    color: var(--color-action);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    font-weight: 600;
    color: var(--color-text-main);
    display: none;
    /* Hidden on small mobile, visible on desktop */
}

@media (min-width: 768px) {
    .header-phone {
        display: block;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-main);
}

@media(max-width: 900px) {
    .nav {
        display: none;
    }

    /* Simplified mobile handling */
    .mobile-menu-btn {
        display: block;
    }
}


/* Hero Section - The "Muval" Split */
.hero {
    margin-top: var(--header-height);
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

/* Background image overlay trick */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('images/hero-bright.png');
    /* Will be set in HTML or verified later */
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    /* Subtle texture behind */
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
    /* Content above background */
}

.hero-headline {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-main);
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
}

.hero-trust-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: var(--spacing-md);
}

.trust-bullet {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.trust-bullet i {
    color: var(--color-action);
    /* Checkmark color */
}

/* Hero Quote Box - Floating Card */
.hero-quote-box {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-box-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Trust Bar */
.trust-bar {
    background-color: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
}

.trust-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.7;
}

.trust-logo {
    height: 40px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.trust-logo:hover {
    filter: grayscale(0%);
}

/* How It Works - Process */
.process-section {
    padding: var(--spacing-xl) 0;
    background-color: #fff;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.process-step {
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fff;
    text-align: center;
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--color-action);
}

.step-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(0, 86, 210, 0.1);
    color: var(--color-action);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    /* Reduced from 32px */
    height: 28px;
    /* Reduced from 32px */
    min-width: 28px;
    /* Force minimum width */
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-main);
    transition: all 0.3s ease;
    background-color: transparent;
    text-decoration: none;
    margin: 0 4px;
    /* Add slight spacing between icons */
}

.social-icon:hover {
    background-color: var(--color-text-main);
    color: #fff;
    border-color: var(--color-text-main);
}

.social-icon i,
.social-icon svg {
    font-size: 12px;
    /* Force small font size for FontAwesome */
    width: 12px;
    /* Force small width for SVG */
    height: 12px;
    /* Force small height for SVG */
    fill: currentColor;
    line-height: 1;
    /* Reset line height */
}

/* Ensure partner logos are contained and small */
.partner-logo {
    height: 30px;
    /* Aggressively reduced from 40px */
    width: auto;
    max-width: 100px;
    /* Constrain width */
    object-fit: contain;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    margin: 10px;
    /* Add spacing around */
}

/* Service Cards */
.services-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-surface);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card-body {
    padding: 2rem;
}

.service-icon {
    font-size: 2rem;
    color: var(--color-action);
    margin-bottom: 1rem;
}

/* Comparison Table */
.comparison-section {
    padding: var(--spacing-xl) 0;
    background: #fff;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: var(--spacing-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
    background-color: var(--color-surface);
    font-weight: 700;
}

.col-target {
    background-color: rgba(0, 86, 210, 0.03);
    border-left: 2px solid var(--color-action);
    border-right: 2px solid var(--color-action);
    font-weight: 700;
}

.col-target-header {
    background-color: var(--color-action) !important;
    color: #fff;
}

/* Testimonials */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background-color: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.stars {
    color: #FFC107;
    /* Gold stars */
    margin-bottom: 1rem;
}

/* Footer CTA Band */
.footer-cta {
    background-color: var(--color-text-main);
    color: #fff;
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.footer-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-cta p {
    color: #ccc;
    margin-bottom: 2rem;
}

/* Main Footer */
.main-footer {
    background-color: #fff;
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--color-border);
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --header-height: 70px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-quote-box {
        order: 1;
        /* Form first on mobile as requested! */
        margin-bottom: 2rem;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

    .trust-bar-container {
        gap: 1.5rem;
    }

    .trust-logo {
        height: 30px;
    }

    .header-cta {
        display: none;
    }

    /* Show menu icon instead */
}