:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --text-color: #e0e0e0;
    --text-muted: #888888;
    --primary-color: #f36f21;
    /* Orange CTA */
    --primary-hover: #d35f1a;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --spacing-container: 1200px;
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    color: #ffffff;
    font-weight: 600;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h1 em {
    font-style: italic;
    color: #888;
    font-weight: 400;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    font-family: var(--font-sans);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    background: rgba(5, 5, 5, 0.95);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 0.95rem;
    color: #ccc;
}

.main-nav a:hover {
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #fff;
}

/* Hero Section */
.hero-section {
    padding: 30px 0 80px;
    border-bottom: 1px solid #1a1a1a;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.badge {
    display: inline-block;
    border: 1px solid #442a1a;
    color: #cc6633;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    background: rgba(243, 111, 33, 0.1);
}

.hero-meta {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.meta-item {
    display: flex;
    gap: 15px;
}

.meta-item .icon {
    font-size: 1.5rem;
    opacity: 0.7;
}

.meta-item strong {
    display: block;
    color: white;
    font-weight: 500;
}

.meta-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Hero Form */
.hero-form-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222;
}

.hero-form-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.hero-form-card p {
    font-size: 0.95rem;
    margin-bottom: 25px;
}



/* Audit Offer Styles */
.audit-offer h4 {
    color: var(--primary-color);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 15px;
}

.audit-intro {
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
    color: #ccc;
}

.audit-list {
    margin-bottom: 25px;
    padding-left: 15px;
}

.audit-list li {
    font-size: 0.85rem;
    color: #ddd;
    margin-bottom: 12px;
    line-height: 1.4;
    list-style-type: decimal;
    padding-left: 5px;
}

.audit-list li::marker {
    color: var(--primary-color);
    font-weight: bold;
}

.audit-list strong {
    color: white;
    font-weight: 600;
}

.audit-price {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(243, 111, 33, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    text-align: center;
    font-family: var(--font-serif);
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-title h2 {
    font-size: 3rem;
}

.section-title {
    max-width: 600px;
    margin-bottom: 60px;
}

/* Reviews */
.reviews-section {
    text-align: center;
}

.reviews-header .pill {
    display: inline-block;
    background: #1a1a1a;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.reviews-header h2 {
    font-size: 3.5rem;
}

.reviews-header .highlight {
    color: var(--primary-color);
    font-family: var(--font-serif);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    border: 1px solid #222;
    transition: transform 0.3s;
}

.pricing-grid {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222;
    text-align: left;
    transition: transform 0.3s, border-color 0.3s;
    flex: 1;
    min-width: 300px;
}

.review-card:hover {
    transform: translateY(-5px);
}

.reviews-grid .stars {
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.results-grid {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.result-item {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.result-item h3 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.reviewer .avatar {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.reviewer strong {
    display: block;
    color: white;
    font-size: 0.95rem;
}

.reviewer span {
    font-size: 0.8rem;
    color: #666;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    /* fixed missing rem unit */
    margin-bottom: 15px;
    color: white;
    font-weight: 500;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #bbb;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Features */
.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pill-orange {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 1.5rem;
    background: #1a1a1a;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.feature-text strong {
    display: block;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: #0f0f0f;
    border-radius: 20px;
    border: 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: radial-gradient(#222 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-marker {
    text-align: center;
    background: #111;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
}

.marker-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

/* Footer */
.site-footer {
    padding: 80px 0 30px;
    border-top: 1px solid #222;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
}

.footer-contact h4,
.footer-accreditations h4 {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-accreditations .badges {
    display: flex;
    gap: 10px;
}

.badge-box {
    border: 1px solid #333;
    padding: 5px 10px;

    /* Download Section */
    .hero-download {
        margin-top: 35px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .download-label {
        margin-bottom: 12px;
        font-size: 0.85rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
    }

    .btn-outline {
        background: transparent;
        border: 1px solid #333;
        color: #ccc;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        width: auto;
    }

    .btn-outline:hover {
        border-color: var(--primary-color);
        color: var(--primary-color);
        background: rgba(243, 111, 33, 0.05);
    }

    .btn-outline svg {
        margin-top: -2px;
    }

    .footer-bottom {
        border-top: 1px solid #1a1a1a;
        padding-top: 30px;
        display: flex;
        justify-content: space-between;
        font-size: 0.9rem;
        color: #666;
    }

    .footer-links a {
        margin-left: 20px;
        color: #666;
    }

    .footer-links a:hover {
        color: white;
    }

    /* Responsive */
    @media (max-width: 900px) {

        .hero-container,
        .features-container {
            grid-template-columns: 1fr;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
        }

        .main-nav,
        .header-actions {
            display: none;
            /* Simplification for mobile menu implementation later if needed */
        }

        /* Simple mobile header adjust */
        .header-container {
            justify-content: center;
        }
    }

    /* Centered Headers */
    .section-title,
    .reviews-header {
        text-align: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
    }

    .section-title h2,
    .reviews-header h2 {
        margin-bottom: 15px;
    }

    .section-title p,
    .reviews-header p {
        color: #bbb;
        font-size: 1.1rem;
    }

    /* Brand Name & Logo Alignment */
    .logo {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .brand-name {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        color: white;
        font-weight: 600;
        margin-top: 0;
        line-height: 1;
    }

    /* Force Header Vertical Alignment */
    .header-container,
    .logo,
    .header-actions {
        display: flex !important;
        align-items: center !important;
    }

    /* Mobile Header Stack & Resize */
    @media (max-width: 900px) {
        .header-container {
            flex-direction: column !important;
            gap: 15px !important;
            padding-bottom: 20px;
            height: auto !important;
        }

        .header-actions {
            display: flex !important;
            flex-direction: column;
            gap: 15px;
            width: 100%;
            align-items: center !important;
            margin-top: 10px;
        }

        .header-actions .btn {
            padding: 10px 30px;
            font-size: 0.95rem;
            width: 80%;
            /* not full width but wide enough */
            max-width: 300px;
            text-align: center;
        }

        .phone-link {
            font-size: 1rem;
            margin-bottom: 5px;
        }

        /* Ensure logo remains centered/flex */
        .logo {
            justify-content: center;
            width: 100%;
            flex-wrap: wrap;
            /* allow wrapping if needed */
            text-align: center;
        }

        .brand-name {
            font-size: 1.3rem;
            /* slightly smaller on mobile to fit */
        }
    }