:root {
    /* Professional Agency Palette - Trust & Authority */
    --bg-color: #f8fafc;
    /* Slate 50 */
    --bg-surface: #ffffff;
    --bg-surface-alt: #f1f5f9;
    /* Slate 100 */
    --bg-dark: #0f172a;
    /* Slate 900 */
    --text-primary: #0f172a;
    /* Slate 900 */
    --text-secondary: #475569;
    /* Slate 600 */
    --text-tertiary: #94a3b8;
    /* Slate 400 */
    --text-on-dark: #f8fafc;

    /* Accent Colors */
    --accent-primary: #1a73e8;
    /* Google Blue */
    --accent-hover: #1557b0;
    /* Darker Blue */
    --accent-dark: #174ea6;
    /* Deep Blue */
    --accent-light: #e8f0fe;
    /* Light Blue BG */

    /* Status */
    --success-color: #059669;
    /* Emerald 600 */
    --border-color: #e2e8f0;
    /* Slate 200 */
    --border-hover: #cbd5e1;
    /* Slate 300 */

    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --h1-size: 3.5rem;
    --h2-size: 2.25rem;
    --h3-size: 1.25rem;
    --body-size: 1rem;

    /* Layout */
    --container-width: 1280px;
    --section-padding: 6rem 0;
    --border-radius: 12px;

    /* Effects */
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-card: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: var(--body-size);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-accent {
    color: var(--accent-primary);
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-on-dark);
}

.align-center {
    text-align: center;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: var(--h2-size);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.btn--primary {
    background-color: var(--accent-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: white;
    border-color: var(--border-color);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
    border-color: var(--text-secondary);
    background-color: var(--bg-surface-alt);
}

.btn--full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
}

.nav__list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav__link:hover {
    color: var(--accent-primary);
}

.nav__link--cta {
    background-color: var(--bg-dark);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
}

.nav__link--cta:hover {
    background-color: var(--accent-primary);
    color: white;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    /* Ensure above nav overlay */
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s;
}

@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }

    .nav__link {
        font-size: 1.25rem;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding: 10rem 0 6rem;
    background: radial-gradient(circle at 50% 0%, #f0f9ff 0%, var(--bg-color) 70%);
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.hero__content {
    max-width: 600px;
}

.hero__label {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: var(--accent-light);
    color: var(--accent-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: var(--h1-size);
    margin-bottom: 1.5rem;
    color: var(--bg-dark);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__trust {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.hero__trust p {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    gap: 2rem;
    opacity: 0.6;
    filter: grayscale(100%);
    flex-wrap: wrap;
    justify-content: center;
}

.trust-logos img {
    height: 24px;
}

/* Hero Visual */
.hero__visual {
    position: relative;
}

/* Dashboard Card Update */
.dashboard-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    position: relative;
    z-index: 1;
    min-width: 320px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-card h3 {
    font-size: 1.125rem;
    color: var(--bg-dark);
    margin: 0;
    font-weight: 700;
}

.badge-growth {
    background: #dcfce7;
    color: #15803d;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 180px;
    margin-bottom: 2rem;
}

.chart-bar {
    flex: 1;
    background: #f1f5f9;
    border-radius: 4px;
    transition: height 1s ease-out;
}

.chart-bar.active {
    background: var(--accent-primary);
}

.card-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item.right-align {
    text-align: right;
    align-items: flex-end;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
    animation: float 6s ease-in-out infinite;
}

.floating-badge.top-right {
    top: -20px;
    right: -20px;
    z-index: 2;
}

@media (max-width: 768px) {
    .floating-badge.top-right {
        right: 0;
        top: -30px;
    }
}

.floating-badge.bottom-left {
    bottom: -20px;
    left: -20px;
    z-index: 2;
    animation-delay: 3s;
}

@media (max-width: 768px) {
    .floating-badge.bottom-left {
        left: 0;
        bottom: -30px;
    }
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.badge-green {
    background: #dcfce7;
    color: #15803d;
}

.badge-blue {
    background: #e0f2fe;
    color: #0369a1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Services / Features */
.features {
    padding: var(--section-padding);
    background: white;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    color: var(--accent-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Social Proof Section (New) */
.social-proof {
    background: var(--bg-dark);
    padding: 4rem 0;
    color: white;
}

.proof-metrics {
    display: flex;
    justify-content: center;
    gap: 6rem;
    text-align: center;
}

.proof-item .value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, white, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.proof-item .label {
    color: #94a3b8;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-surface-alt);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.stars {
    color: #f59e0b;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-surface-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-primary);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Contact / Lead Form */
.contact {
    padding: var(--section-padding);
    background: white;
}

@media (max-width: 900px) {
    .contact__container {
        grid-template-columns: 1fr;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero__visual {
        order: -1;
        /* Visualize first on mobile usually looks better or worse depending on design. Let's keep text first for SEO/Value. Remove this if not needed. Actually, default is fine. */
    }

    .hero {
        padding-top: 8rem;
    }
}

.contact__container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-surface);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border: 1px solid var(--border-color);
}

.contact__info {
    background: var(--bg-dark);
    padding: 4rem 3rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact__info h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact__info p {
    color: #94a3b8;
    margin-bottom: 3rem;
}

.contact__benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    /* Changed to darker blue */
}

/* Re-override for the dark bg context if needed, but accent-primary is usually visible on dark. 
   Actually accent-primary is #0369a1 which might be dark. 
   Let's use a lighter blue for the icon on dark bg. */
.contact__info .benefit-icon {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
}

.contact__form-wrapper {
    padding: 4rem 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

/* Footer */
.footer {
    background: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.disclaimer {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    line-height: 1.5;
}

/* =========================================
   NEW SECTION STYLES (Revamp)
   ========================================= */

/* Hero New Elements */
.hero__bullets {
    margin: 2rem 0;
    list-style: none;
    padding: 0;
}

.hero__bullets li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero__bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.hero__micro-proof {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Logos Section */
/* Logos Section */
.logos-section {
    padding: 4rem 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.logos-header {
    text-align: center;
    color: #64748b;
    margin-bottom: 2.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: #cbd5e1;
    /* Light gray logo look */
    font-family: inherit;
}

.pill-testimonials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pill-card {
    background: #f8fafc;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pill-author {
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .logos-grid {
        gap: 1.5rem;
    }

    .pill-card {
        border-radius: 12px;
        text-align: center;
        width: 100%;
    }
}

/* Process / How It Works */
.process {
    padding: var(--section-padding);
    background: var(--bg-surface-alt);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    height: 100%;
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.step-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Services List */
.services {
    padding: var(--section-padding);
    background: white;
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    padding: 1rem 1.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.service-item::before {
    content: "•";
    color: var(--accent-primary);
    margin-right: 0.75rem;
    font-size: 1.5rem;
    line-height: 0;
}

/* About Agency Section */
.about-agency {
    padding: 6rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--bg-dark);
    font-weight: 800;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.about-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    /* Force single row */
    margin-top: 2rem;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    /* Further reduced padding */
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    /* Slightly smaller radius */
    font-size: 0.75rem;
    /* Smaller font */
    font-weight: 600;
    color: var(--bg-dark);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    flex: 1;
    justify-content: center;
    white-space: nowrap;
}

.badge-icon {
    font-size: 1.125rem;
    /* Smaller icon */
    line-height: 1;
}

.about-visual {
    display: flex;
    justify-content: flex-end;
}

.team-photo {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: block;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        flex-direction: column;
        flex-wrap: wrap;
        /* Reset wrap */
    }

    .stat-badge {
        width: 100%;
        box-sizing: border-box;
        /* Ensure padding doesn't overflow */
    }

    .about-visual {
        justify-content: center;
    }

    .photo-placeholder {
        height: 300px;
    }
}

/* Results Section */
.results {
    padding: var(--section-padding);
    background: var(--bg-dark);
    color: white;
}

.results .section-title {
    color: white;
}

.results .section-subtitle {
    color: #94a3b8;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    /* slightly lighter dark */
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-card h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.result-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.metric:last-child {
    border-bottom: none;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.9rem;
}

.metric-val {
    font-weight: 700;
    font-size: 1.1rem;
}

.text-green {
    color: var(--success-color);
}

/* Form Styling Update */
.form-group-row {
    display: block;
    /* Mobile default */
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-group-row {
        display: flex;
        /* Flex on desktop */
    }

    .form-group-row>.form-group {
        flex: 1;
    }
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-check input {
    accent-color: var(--accent-primary);
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.1rem;
}

/* Sticky Mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.sticky-cta .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

@media (min-width: 769px) {

    /* Hide on Desktop */
    .sticky-cta {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
}

/* RESPONSIVE OVERRIDES - MUST BE LAST */

@media (max-width: 900px) {

    /* Responsive Typography Overrides */
    :root {
        --h1-size: 2.25rem;
        /* Down from 3.5rem */
        --h2-size: 1.75rem;
        /* Down from 2.25rem */
        --h3-size: 1.125rem;
        /* Slight reduction */
        --section-padding: 4rem 0;
        /* Reduced padding */
    }

    /* Header: Show Burger, Hide Nav off-screen */
    .mobile-menu-btn {
        display: flex;
        z-index: 1100;
        /* Higher than nav to be clickable */
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        /* Full width overlay */
        max-width: 300px;
        /* Or full width if preferred, let's do side slider */
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 2rem;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }

    .nav__link {
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
        display: block;
        padding: 1rem;
    }

    /* Layout Stack Fixes */
    .contact__container {
        grid-template-columns: 1fr;
        /* Stack vertically: Info top, Form bottom */
        max-width: 100%;
        border-radius: 0;
        /* Optional: edge to edge on mobile looks better */
        border-left: none;
        border-right: none;
    }

    .contact__info {
        padding: 3rem 1.5rem;
        /* Reduced padding */
    }

    .contact__form-wrapper {
        padding: 3rem 1.5rem;
        /* Reduced padding */
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        display: flex;
        /* Use flex to control order easily if grid default is row-major which is fine, but flex is explicit */
        flex-direction: column;
    }

    .hero__content {
        margin: 0 auto;
        order: 1;
        /* First */
    }

    .hero__visual {
        order: 2;
        /* Second */
        margin-top: 2rem;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__bullets li {
        text-align: left;
        display: inline-block;
        /* Center aligned container but left aligned text if possible, or just center everything */
    }

    .hero__trust {
        display: none;
        /* Often cleaner to hide trust strip in hero on mobile if we have the logos section immediately after */
    }

    /* Footer Stack */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col ul {
        align-items: center;
    }

    .footer-brand p {
        margin: 1rem auto 0;
    }
}