:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-text-main: #0f172a;
    --color-text-muted: #64748b;
    --color-accent-blue: #0ea5e9;
    --color-accent-cyan: #06b6d4;
    --color-accent-purple: #8b5cf6;
    --color-border: #e2e8f0;
    --color-white: #ffffff;
    --font-primary: 'Inter', sans-serif;
    --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 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --container-width: 1400px;
    --gutter: 24px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Container padding for different screen sizes */
@media (min-width: 1441px) {
    .container {
        padding: 0 48px;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .container {
        padding: 0 32px;
    }
}

/* Mobile first adjustments */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* 12-COLUMN GRID SYSTEM */
.grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
}

.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }
.col-span-4 { grid-column: span 4; }
.col-span-6 { grid-column: span 6; }
.col-span-8 { grid-column: span 8; }
.col-span-12 { grid-column: span 12; }

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-text-main);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--color-text-main);
    text-decoration: none;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    z-index: 1001;
}

.index-tag {
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--color-white);
    margin-left: 8px;
    padding: 4px 8px;
    background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-cyan));
    border-radius: 4px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1001;
        gap: 0;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--color-border);
        display: block !important;
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-text-main);
        text-decoration: none;
    }

    .nav-links a:hover {
        color: var(--color-accent-blue);
    }

    .nav-links a.btn {
        width: 100%;
        margin-top: 20px;
        border-bottom: none;
        text-align: center;
        padding: 12px 20px;
        color: var(--color-white) !important;
    }

    .nav-links a.btn:hover {
        color: var(--color-white) !important;
    }
}

.nav-links a:not(.btn) {
    text-decoration: none;
    color: var(--color-text-main);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:not(.btn):hover {
    color: var(--color-accent-blue);
}

/* Ensure nav links are visible on mobile */
@media (max-width: 1024px) {
    .nav-links a:not(.btn) {
        display: block !important;
    }
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    background-color: var(--color-text-main);
    color: var(--color-white);
}

.btn-sm:hover {
    background-color: #334155;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-cyan));
    color: var(--color-white);
    font-size: 1.1rem;
    box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(14, 165, 233, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text-main);
    font-weight: 700;
}

.btn-outline:hover {
    border-color: var(--color-text-main);
    background: var(--color-text-main);
    color: var(--color-white);
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 180px 0 120px;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

/* Large screens optimization (1441px+) */
@media (min-width: 1441px) {
    .hero {
        padding: 200px 0 140px;
        min-height: 90vh;
    }
    
    .hero h1 {
        font-size: 5rem;
    }
    
    .hero-sub {
        font-size: 1.4rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

#hero-canvas-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    filter: blur(0px);
    will-change: transform;
}

/* Canvas container adaptation for different screen sizes */
@media (min-width: 1441px) {
    #hero-canvas-container {
        width: 55%;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    #hero-canvas-container {
        width: 48%;
    }
}

#hero-canvas-container canvas {
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-content {
    grid-column: span 7;
    z-index: 10; /* Increased to ensure text is above canvas */
    position: relative; /* Ensure z-index applies */
}

.badge-pill {
    display: inline-block;
    padding: 6px 12px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent-blue);
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--color-text-main);
}

.hero h1 span.gradient-text {
    background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.35rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 90%;
    font-weight: 400;
}

/* Hero Visual Element */
.research-preview {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    width: fit-content;
    box-shadow: var(--shadow-md);
}

/* Adaptive research preview */
@media (min-width: 1025px) and (max-width: 1440px) {
    .research-preview {
        padding: 14px 20px;
        margin-bottom: 45px;
    }
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
}

.bar {
    width: 6px;
    background: var(--color-border);
    border-radius: 2px;
}

.bar.active {
    background: var(--color-accent-blue);
}

.provider-labels {
    font-size: 0.8rem;
    color: var(--color-text-main);
    font-weight: 600;
    font-family: monospace;
}

/* Hero Logos */
.hero-footer-logos {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 0 30px;
    border-top: 1px solid var(--color-border);
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--color-bg-alt));
}

/* Mobile: move logos after button */
@media (max-width: 768px) {
    .hero-footer-logos {
        position: relative;
        padding: 50px 0 30px;
        margin-top: 40px;
        background: transparent;
    }
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
}

.logo-item {
    grid-column: span 2;
    opacity: 0.5;
    font-weight: 800;
    color: var(--color-text-main);
    text-transform: uppercase;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    transition: all 0.3s;
    text-align: center;
    word-break: break-word;
    line-height: 1.2;
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    color: var(--color-accent-blue);
}

/* COMPARISON SECTION */
.section-comparison {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Adaptive padding for different screen sizes */
@media (min-width: 1441px) {
    .section-comparison, .section-research, .section-form {
        padding: 120px 0;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .section-comparison, .section-research, .section-form {
        padding: 90px 0;
    }
}

/* Background Decor */
.bg-decoration-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.03) 0%, transparent 60%);
    z-index: 1;
}

.section-header {
    grid-column: span 12;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-bg-alt);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    max-width: 600px;
    color: var(--color-text-main);
}

/* Adaptive section headers */
@media (min-width: 1441px) {
    .section-header h2 {
        font-size: 3rem;
        max-width: 700px;
    }
}

@media (min-width: 1025px) and (max-width: 1440px) {
    .section-header h2 {
        font-size: 2.3rem;
        max-width: 550px;
    }
}

.section-sub {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.criteria-tags {
    display: flex;
    gap: 16px;
}

.tag-item {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-main);
    background: white;
    padding: 6px 12px;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.comparison-table {
    grid-column: span 12;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg); /* Increased shadow for lift */
    background: white;
}

.table-header-row {
    display: grid;
    grid-template-columns: 280px 1fr 100px;
    gap: 20px;
    padding: 16px 24px;
    background: #f8fafc;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    align-items: center;
}

.col-head-data {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    text-align: left;
    height: 100%;
}

.col-head-data span {
    display: flex;
    align-items: center;
    height: 100%;
}

.table-row {
    display: grid;
    grid-template-columns: 280px 1fr 100px;
    gap: 20px;
    padding: 24px;
    border-bottom: 1px solid var(--color-border);
    align-items: start;
    background: var(--color-white);
    transition: background 0.2s;
}

.table-row .metric-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 50px;
}

/* Hide metric labels on desktop (shown via table header) */
.table-row .metric-cell::before {
    display: none;
}

.metric-cell.text-cell {
    justify-content: center;
    padding-top: 0;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background: #f1f5f9;
}

.col-psp {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 50px;
}

.psp-logo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.psp-name {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.2;
}

.psp-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.col-data {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: start;
    width: 100%;
}

/* Conversion Metric */
.conversion-value {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 6px;
    line-height: 1.2;
}

.mini-progress {
    width: 100%;
    height: 4px;
    background: #f1f5f9;
    border-radius: 2px;
    overflow: hidden;
}

.mini-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #10b981);
    border-radius: 2px;
    transition: width 0.3s;
}

/* Speed Metric */
.speed-value {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 4px;
    line-height: 1.2;
}

.speed-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.2;
}

/* Onboarding Metric */
.onboarding-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 6px;
    line-height: 1.2;
}

.mini-progress-bar.fast {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}

.mini-progress-bar.medium {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.mini-progress-bar.slow {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.metric-cell {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.text-cell {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    min-height: 50px;
    line-height: 1.4;
}

/* Status Badges in Table */
.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.status-badge.success { background: #dcfce7; color: #166534; }
.status-badge.warning { background: #fef9c3; color: #854d0e; }
.status-badge.neutral { background: #f1f5f9; color: #475569; }

/* Signal Bars */
.signal-bars {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    height: 16px;
}
.s-bar { width: 4px; background: #cbd5e1; border-radius: 1px; }
.s-bar.full { height: 100%; background: #22c55e; }
.s-bar.half { height: 60%; background: #22c55e; }
.s-bar.empty { height: 100%; background: #e2e8f0; }


.col-score {
    font-weight: 800;
    color: var(--color-accent-blue);
    background: rgba(14, 165, 233, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 1.2rem;
    justify-self: start;
    align-self: center;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-wrapper {
    grid-column: 4 / span 6;
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background: var(--color-text-main);
    border-radius: 16px;
    color: white;
}

.cta-wrapper p {
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.cta-wrapper .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: white;
}

.cta-wrapper .btn-outline:hover {
    background: white;
    color: var(--color-text-main);
    border-color: white;
}

.section-footer-label {
    grid-column: span 12;
    margin-top: 60px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 700;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

/* RESEARCH SECTION */
.section-research {
    padding: 100px 0;
    background: #f1f5f9; /* Distinct light grey for contrast */
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.criteria-description {
    display: flex;
    gap: 40px;
}

.criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.icon-box {
    font-size: 1.5rem;
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.criteria-item strong {
    display: block;
    color: var(--color-text-main);
    margin-bottom: 2px;
    font-weight: 700;
}

.criteria-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.psp-grid {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px; /* Wider gap */
    margin-top: 60px;
}

.psp-card {
    grid-column: span 4;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 0; /* Removing padding to use flex header/body properly */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    top: 0;
    overflow: hidden;
}

.psp-card:hover {
    top: -10px;
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.card-status-line {
    height: 4px;
    width: 100%;
}

.card-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #f1f5f9;
}

.header-main h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.tag-pill {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--color-text-muted);
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Score Circle */
.score-circle {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-circle span {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.circular-chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: #f1f5f9;
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke: var(--color-accent-blue);
    stroke-width: 2.8;
    stroke-linecap: round;
}

.card-body {
    padding: 24px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.stat-row .label {
    color: var(--color-text-muted);
}

.stat-row .value {
    font-weight: 700;
    color: var(--color-text-main);
}

.stat-row .value-small {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-left: 8px;
    min-width: 40px;
    text-align: right;
}

.text-green { color: #166534; }

/* Card Progress Bars */
.progress-bar-container {
    flex-grow: 1;
    margin: 0 12px;
    height: 6px;
    background: #f1f5f9;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--color-accent-blue);
    border-radius: 3px;
}

.methods-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.methods-tags span {
    font-size: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.grid-footer-question {
    grid-column: span 12;
    text-align: center;
    margin-top: 60px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-main);
}

/* LEAD FORM SECTION */
.section-form {
    padding: 140px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.section-form::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.form-header {
    grid-column: 3 / span 8;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.form-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
}

.form-header p {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper {
    grid-column: 4 / span 6;
    background: var(--color-white);
    padding: 60px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.3), 0 10px 15px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-main);
    letter-spacing: 0.01em;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: #f8fafc;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text-main);
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-group input:hover, .form-group select:hover {
    border-color: #cbd5e1;
    background: #ffffff;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

/* Custom Select styling to match inputs */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.highlight-group {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #bbf7d0;
    margin-bottom: 32px;
}

.highlight-group label {
    color: #166534;
    display: flex;
    align-items: center;
    gap: 6px;
}

.highlight-group input {
    border-color: #86efac;
    background: #ffffff;
}

.highlight-group input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

/* International Telephone Input Styling */
.iti {
    width: 100%;
    position: relative;
}

/* Gray mask/overlay that disappears when typing */
.highlight-group .iti::after,
.form-group:has(#whatsapp) .iti::after {
    content: "Enter phone number";
    position: absolute;
    left: 90px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 400;
    z-index: 2;
    transition: opacity 0.2s, visibility 0.2s;
    visibility: visible;
    opacity: 1;
}

/* Hide overlay when input has value or is focused */
.iti.has-value::after,
.iti.has-focus::after {
    opacity: 0 !important;
    visibility: hidden !important;
}

.iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin-left: 0;
}

.iti__selected-flag {
    padding: 0 8px 0 12px;
    border-radius: 10px 0 0 10px;
    background: #f8fafc;
    border-right: 1px solid var(--color-border);
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.iti__selected-dial-code {
    color: var(--color-text-main) !important;
    font-weight: 600;
    font-size: 0.95rem;
}

.iti__selected-flag:hover {
    background: #e2e8f0;
}

.iti__arrow {
    border-top: 4px solid var(--color-text-main);
    margin-left: 6px;
}

.iti__country-list {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
}

.iti__country {
    padding: 8px 12px;
}

.iti__country-name {
    color: #0f172a !important; /* Black text for country names */
    font-weight: 500;
}

.iti__dial-code {
    color: var(--color-text-muted) !important;
    font-weight: 400;
}

.iti__country:hover {
    background: #f1f5f9;
}

.iti__country:hover .iti__country-name {
    color: #0f172a !important; /* Keep black on hover */
}

.iti__country:hover .iti__dial-code {
    color: var(--color-text-muted) !important; /* Keep muted on hover */
}

.iti__country.iti__highlight {
    background: var(--color-accent-blue);
}

.iti__country.iti__highlight .iti__country-name,
.iti__country.iti__highlight .iti__dial-code {
    color: white !important;
}

.highlight-group .iti__selected-flag {
    background: #ffffff;
    border-right-color: #86efac;
}

.highlight-group .iti {
    position: relative;
}

.highlight-group .iti__selected-flag {
    border-right-color: #86efac;
}

.highlight-group #whatsapp {
    padding-left: 90px; /* Space for country flag + dial code with + */
}

#whatsapp {
    padding-left: 90px;
    font-size: 1rem;
}

/* Ensure the input field shows the + sign properly */
.iti input {
    border-left: none;
    border-radius: 0 10px 10px 0;
}

/* Ensure plus sign is always visible */
.iti__selected-dial-code {
    color: var(--color-text-main);
    font-weight: 600;
    margin-right: 4px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3), 0 2px 4px -1px rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4), 0 4px 6px -2px rgba(16, 185, 129, 0.2);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-submit:active {
    transform: translateY(0);
}

.trust-bullets {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.trust-bullets ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.trust-bullets li {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-bullets li::before {
    content: '✓';
    color: var(--color-accent-blue);
    font-weight: 800;
}

.disclaimer {
    grid-column: 4 / span 6;
    margin-top: 30px;
    text-align: center;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* FOOTER */
.footer {
    padding: 60px 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-white);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand-col h4 {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-text-main);
    margin-bottom: 4px;
}

.footer-brand-col p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-legal-col {
    display: flex;
    gap: 30px;
}

.footer-legal-col a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-legal-col a:hover {
    color: var(--color-accent-blue);
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px 0;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-main);
    line-height: 1.6;
}

.cookie-consent-text a {
    color: var(--color-accent-blue);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 16px 0;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
        gap: 16px;
    }

    .cookie-consent-buttons {
        width: 100%;
    }

    .cookie-consent .btn {
        width: 100%;
        text-align: center;
    }

    .cookie-consent-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent-content {
        padding: 0 16px;
    }

    .cookie-consent-text p {
        font-size: 0.85rem;
    }
}

.footer-legal-col a {
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: color 0.2s;
}

.footer-legal-col a:hover {
    color: var(--color-accent-blue);
}

/* RESPONSIVE */
/* Laptop screens (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .container {
        padding: 0 32px;
    }

    /* Hero Section - optimized for laptops */
    .hero {
        padding: 160px 0 100px;
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 3.8rem;
        line-height: 1.05;
        margin-bottom: 18px;
    }

    .hero-sub {
        font-size: 1.25rem;
        margin-bottom: 28px;
        max-width: 85%;
    }

    #hero-canvas-container {
        width: 45%;
    }

    .hero-content {
        grid-column: span 7;
        max-width: 100%;
    }
    
    .hero::before {
        width: 55%;
    }

    /* Sections */
    .section-comparison, .section-research, .section-form {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-sub {
        font-size: 1.15rem;
    }

    /* Comparison table */
    .comparison-table {
        font-size: 0.95rem;
    }

    /* Cards */
    .psp-card {
        grid-column: span 4;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    /* Don't hide nav-links here - they should show in mobile menu */

    .hero-content {
        grid-column: span 12;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero {
        padding: 150px 0 90px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-sub {
        font-size: 1.15rem;
    }

    #hero-canvas-container {
        width: 100%;
        opacity: 0.2;
    }

    .comparison-table {
        display: flex;
        flex-direction: column;
        gap: 20px;
        overflow-x: visible;
    }

    .table-header-row {
        display: none; /* Hide header, use labels in cards */
    }

    .table-row {
        display: flex;
        flex-direction: column;
        min-width: auto;
        padding: 20px;
        gap: 16px;
        border: 1px solid var(--color-border);
        border-radius: 12px;
        background: white;
        box-shadow: var(--shadow-md);
    }

    .table-row .col-psp {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--color-border);
        margin-bottom: 4px;
    }

    .table-row .col-data {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .table-row .col-score {
        align-self: flex-start;
        margin-top: 8px;
    }

    .metric-cell {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .metric-cell::before {
        content: attr(title);
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--color-text-muted);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* hero-footer-logos stays absolute on desktop/tablet */

    .logo-row {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
        grid-auto-flow: row;
    }

    .logo-item {
        grid-column: span 1 !important;
        font-size: 0.95rem;
    }

    .psp-card {
        grid-column: span 6;
    }
    
    .cta-wrapper, .form-header, .form-wrapper, .disclaimer {
        grid-column: span 12;
    }
    
    .form-wrapper {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Navbar */
    .navbar {
        height: 70px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo .index-tag {
        font-size: 0.65rem;
        padding: 3px 6px;
        margin-left: 6px;
    }

    .nav-links .btn-sm {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Hero Section */
    .hero {
        padding: 140px 0 80px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-sub {
        font-size: 1.1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .badge-pill {
        font-size: 0.7rem;
        padding: 5px 10px;
        margin-bottom: 20px;
    }

    .research-preview {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
        width: 100%;
        margin-bottom: 40px;
    }

    .mini-chart {
        width: 100%;
        justify-content: center;
    }

    .provider-labels {
        font-size: 0.85rem;
        text-align: center;
    }

    .hero-footer-logos {
        padding: 50px 0 30px;
        margin-top: 40px;
    }

    .logo-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        row-gap: 20px;
        grid-auto-flow: row;
    }

    .logo-item {
        grid-column: span 1 !important;
        font-size: 0.9rem;
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 12px 10px;
        min-height: 52px;
        word-break: break-word;
        line-height: 1.3;
        width: 100%;
    }

    /* Sections */
    .section-comparison, .section-research, .section-form {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-sub {
        font-size: 1rem;
    }

    .criteria-tags {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tag-item {
        font-size: 0.8rem;
    }

    /* Comparison Table - Convert to cards on mobile */
    .comparison-table {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .table-header-row {
        display: none; /* Hide header on mobile */
    }

    .table-row {
        display: flex;
        flex-direction: column;
        min-width: auto;
        padding: 20px;
        gap: 16px;
        border: 1px solid var(--color-border);
        border-radius: 12px;
        background: white;
        box-shadow: var(--shadow-md);
    }

    .table-row .col-psp {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--color-border);
        margin-bottom: 4px;
    }

    .table-row .col-data {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .table-row .col-score {
        align-self: flex-start;
        margin-top: 8px;
    }

    .metric-cell {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .metric-cell::before {
        content: attr(title);
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--color-text-muted);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .col-head {
        font-size: 0.7rem;
    }

    .col-psp {
        min-width: 180px;
        gap: 12px;
    }

    .psp-logo-placeholder {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .psp-name {
        font-size: 0.9rem;
    }

    .psp-meta {
        font-size: 0.75rem;
    }

    .conversion-value, .speed-value {
        font-size: 0.9rem;
    }

    .onboarding-value {
        font-size: 0.8rem;
    }

    .col-score {
        font-size: 1rem;
        padding: 4px 10px;
    }

    .cta-wrapper {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .cta-wrapper p {
        font-size: 1.1rem;
    }

    /* Research Section */
    .psp-card {
        grid-column: span 12;
    }

    .criteria-description {
        flex-direction: column;
        gap: 20px;
    }

    .criteria-item {
        flex-direction: row;
        text-align: left;
    }

    .icon-box {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    /* Form Section */
    .form-header {
        margin-bottom: 30px;
    }

    .form-header h2 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .form-header p {
        font-size: 0.95rem;
        margin-top: 12px;
    }

    .form-wrapper {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .btn-submit {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
    }

    .trust-bullets {
        margin-top: 24px;
    }

    .trust-bullets ul {
        gap: 12px;
    }

    .trust-bullets li {
        font-size: 0.85rem;
    }

    .disclaimer {
        font-size: 0.7rem;
        margin-top: 24px;
        max-width: 100%;
    }

    /* Footer */
    .footer {
        padding: 40px 0;
    }

    .footer .container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-legal-col {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footer-brand-col h4 {
        font-size: 1.1rem;
    }

    .footer-brand-col p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .container {
        padding: 0 16px;
    }

    /* Navbar */
    .navbar {
        height: 65px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo .index-tag {
        font-size: 0.6rem;
        padding: 3px 6px;
        margin-left: 4px;
    }

    .nav-links .btn-sm {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* Hero */
    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .hero-sub {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .badge-pill {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .research-preview {
        padding: 10px 12px;
        margin-bottom: 40px;
    }

    .provider-labels {
        font-size: 0.8rem;
    }

    .btn-primary {
        padding: 12px 20px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
        background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-cyan)) !important;
        color: var(--color-white) !important;
    }

    .hero-footer-logos {
        padding: 50px 0 30px;
        margin-top: 40px;
    }

    .logo-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        row-gap: 20px;
        grid-auto-flow: row;
        align-items: stretch;
        justify-items: center;
    }

    .logo-item {
        grid-column: span 1 !important;
        font-size: 0.8rem;
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 12px 8px;
        min-height: 50px;
        word-break: break-word;
        line-height: 1.3;
        letter-spacing: 0.03em;
        width: 100%;
    }

    /* Sections */
    .section-comparison, .section-research, .section-form {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-sub {
        font-size: 0.95rem;
    }

    /* Table - card layout on mobile */
    .comparison-table {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .table-header-row {
        display: none;
    }

    .table-row {
        display: flex;
        flex-direction: column;
        min-width: auto;
        padding: 16px;
        gap: 16px;
        border: 1px solid var(--color-border);
        border-radius: 12px;
        background: white;
        box-shadow: var(--shadow-md);
    }

    .table-row .col-psp {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--color-border);
        margin-bottom: 4px;
        min-width: auto;
    }

    .table-row .col-data {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .table-row .col-score {
        align-self: flex-start;
        margin-top: 8px;
        font-size: 1.1rem;
    }

    .psp-logo-placeholder {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .psp-name {
        font-size: 1rem;
    }

    .psp-meta {
        font-size: 0.8rem;
    }

    .metric-cell {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 12px;
        background: #f8fafc;
        border-radius: 8px;
    }

    .metric-cell::before {
        content: attr(title);
        font-size: 0.7rem;
        font-weight: 700;
        color: var(--color-text-muted);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 4px;
    }

    .conversion-value, .speed-value {
        font-size: 1rem;
        font-weight: 800;
    }

    .speed-label, .onboarding-value {
        font-size: 0.85rem;
    }

    .col-score {
        font-size: 1.2rem;
        padding: 8px 16px;
        min-height: auto;
    }

    /* PSP Cards */
    .psp-card {
        padding: 20px;
    }

    .card-header h3 {
        font-size: 1.2rem;
    }

    .tag-pill {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .score-circle {
        width: 50px;
        height: 50px;
    }

    .score-circle span {
        font-size: 0.9rem;
    }

    .stat-row {
        font-size: 0.85rem;
    }

    .methods-tags {
        font-size: 0.75rem;
        gap: 6px;
    }

    .methods-tags span {
        padding: 4px 8px;
    }

    /* Form */
    .form-header h2 {
        font-size: 1.5rem;
    }

    .form-header p {
        font-size: 0.9rem;
    }

    .form-wrapper {
        padding: 20px 16px;
    }

    .form-group input,
    .form-group select {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* International Tel Input on mobile */
    .highlight-group #whatsapp,
    #whatsapp {
        padding-left: 80px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .iti__selected-flag {
        padding: 0 6px 0 10px;
    }

    .highlight-group .iti::after,
    .form-group:has(#whatsapp) .iti::after {
        left: 80px;
        font-size: 16px;
    }

    .cta-wrapper {
        padding: 24px 16px;
    }

    .cta-wrapper p {
        font-size: 1rem;
    }

    .btn-outline {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 30px 0;
    }

    .footer-legal-col a {
        font-size: 0.85rem;
    }

    /* Grid adjustments */
    .grid-12 {
        gap: 16px;
    }
}
