:root {
    --bg: #F8FAFC;
    --card-bg: #FFFFFF;
    --border: #E2E8F0;
    --primary: #506684;
    --secondary: #475569;
    --accent: #2E8B57;
    --accent-glow: rgba(46, 139, 87, 0.1);
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#glow-canvas {
    display: none;
}

/* Nav */
nav {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background-color: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary);
}

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

.nav-links a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 12px;
    display: inline-block;
}

@media (hover: hover) {
    .nav-links a:hover {
        color: var(--primary);
    }
}

.nav-btn {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--accent);
    border-radius: 6px;
    background: transparent;
    color: var(--accent);
    font-weight: 600;
    transition: all 0.2s;
}

.nav-btn:hover {
    background: var(--accent);
    color: white;
}

/* Hero */
.hero {
    padding: 120px 0 60px;
    text-align: center;
    perspective: 1000px;
}

.radiant-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    background: #FFFFFF;
    border: 1px solid var(--border);
    color: var(--accent);
    padding: 0.4rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-sub {
    color: var(--secondary);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
}

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

.btn {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--accent);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 6px -1px var(--accent-glow), 0 2px 4px -1px var(--accent-glow);
}

@media (hover: hover) {
    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 15px -3px var(--accent-glow), 0 4px 6px -2px var(--accent-glow);
    }
}

.btn.pill {
    border-radius: 6px;
    padding: 0.8rem 2.5rem;
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero-visual {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
    transition: transform 0.1s ease-out;
}

/* Trust Bar */
.trust-bar {
    padding: 6rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 4px 6px -1px var(--accent-glow), 0 2px 4px -1px var(--accent-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px var(--accent-glow), 0 4px 6px -2px var(--accent-glow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-family: var(--font-heading);
}

.stat-number span {
    font-size: 2rem;
    color: var(--accent);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.trust-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: var(--secondary);
    opacity: 0.8;
    margin-bottom: 3rem;
    font-weight: 600;
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary);
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.trust-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.trust-item svg {
    width: 32px;
    height: 32px;
}

.trust-item span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Media Section */
.media-section {
    padding: 0 0 100px 0;
}

.logo-strip-caption {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--secondary);
    opacity: 0.7;
    margin-bottom: 2rem;
    font-weight: 600;
}

.logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.logo-strip-item {
    color: var(--secondary);
    opacity: 0.5;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    z-index: 10;
    min-width: 48px;
    min-height: 48px;
}

.logo-strip-item svg {
    height: 30px;
    width: auto;
    display: block;
}

.logo-strip-item:hover {
    opacity: 1;
}

/* Hover Colors */
.logo-strip-item.techcrunch:hover {
    color: #00A651;
}

.logo-strip-item.cointelegraph:hover {
    color: #FABF2C;
}

.logo-strip-item.yahoofinance:hover {
    color: #430297;
}

.logo-strip-item.pwc:hover {
    color: #E0301E;
    /* Main text color on hover */
}

.logo-strip-item.pwc:hover .pwc-shape-1 {
    fill: #E0301E;
}

.logo-strip-item.pwc:hover .pwc-shape-2 {
    fill: #EB8C00;
}

.logo-strip-item.pwc:hover .pwc-shape-3 {
    fill: #D93954;
}

.logo-strip-item.creditsuisse:hover {
    color: #002147;
    /* Primary Navy */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Service Grid */
.services-section {
    padding: 100px 0;
}

/* Interactive Service Grid */
.interactive-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.interactive-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: default;
    position: relative;
}

.interactive-card:hover {
    background: #FFFFFF;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0;
    transition: margin-bottom 0.4s ease;
}

.interactive-card:hover .card-header {
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EFF6FF;
    border-radius: 8px;
    color: var(--accent);
    flex-shrink: 0;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.card-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    line-height: 1.3;
}

.card-reveal {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.interactive-card:hover .card-reveal {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
}

.card-reveal p {
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.service-list strong {
    color: var(--primary);
}

/* Intelligence Suite Carousel */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
}

.carousel-track-container {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    min-width: 100%;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 2rem;
    scroll-behavior: smooth;
    scroll-marker-group: after;
}

.carousel-track::scroll-button(inline-start),
.carousel-track::scroll-button(inline-end) {
    content: "";
    flex: 0 0 48px;
    height: 48px;
    width: 48px;
    background-color: var(--bg);
    border: 2px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.carousel-track::scroll-button(inline-start) {
    left: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.carousel-track::scroll-button(inline-end) {
    right: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.carousel-track::scroll-button(inline-start):hover,
.carousel-track::scroll-button(inline-end):hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.carousel-track::scroll-button(inline-start):hover {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.carousel-track::scroll-button(inline-end):hover {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.carousel-track::scroll-marker-group {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
}

.report-card::scroll-marker {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 4px;
    background-color: var(--secondary);
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.2s;
    cursor: pointer;
}

.report-card::scroll-marker:target-current {
    opacity: 1;
    background-color: var(--primary);
}

.report-card {
    flex: 0 0 calc(33.333% - 1.34rem);
    width: calc(33.333% - 1.34rem);
    /* Fallback for Safari */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    scroll-snap-align: center;
}

@media (max-width: 768px) {
    .report-card {
        flex: 0 0 calc(100vw - 4rem);
        width: calc(100vw - 4rem);
        margin: 0;
    }
    
    .carousel-track {
        scroll-padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo-strip {
        gap: 1rem;
    }
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -5px rgba(15, 23, 42, 0.1);
}

.report-card.unlocked-card {
    border-color: #506684;
}

.report-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #506684;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.report-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.report-teaser {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.report-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    color: #506684;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 48px;
}

.report-btn svg {
    width: 16px;
    height: 16px;
}

@media (hover: hover) {
    .report-btn:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
    }
    
    .report-btn.unlocked:hover {
        background: #3b4c63;
    }
}

.why-partner-section {
    margin-top: 5rem;
    padding: 3rem;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
}

.why-partner-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.why-partner-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary);
    max-width: 800px;
    margin: 0 auto;
}

.why-partner-section strong {
    color: var(--primary);
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary);
    font-size: 0.9rem;
}

.footer-logo {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--secondary);
    text-decoration: none;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 3rem;
    width: 95%;
    max-width: 800px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    text-align: left;
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-content p {
    color: var(--secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: var(--secondary);
    cursor: pointer;
    line-height: 1;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

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

.form-group {
    margin: 1.5rem 0;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.8rem;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(161, 161, 170, 0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.full-width-field {
    grid-column: span 2;
}

.btn-high-contrast {
    background: #FFFFFF !important;
    color: #000000 !important;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
}

.btn-high-contrast:hover {
    background: #E4E4E7 !important;
    transform: translateY(-2px);
}

.success-state {
    text-align: center;
    padding: 3rem 1rem;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    color: #ef4444;
    font-size: 0.9rem;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 1.5rem;
}

.success-state h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-state h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-state p {
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.success-state .btn-high-contrast {
    min-width: 200px;
}

.full-width {
    width: 100%;
    cursor: pointer;
    border: none;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bio Section (About Page) */
.bio-section {
    padding: 4rem 0 6rem;
}

.back-link {
    display: inline-block;
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary);
}

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

.profile-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3/4;
    border-radius: 4px;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.bio-text-col h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.bio-content p {
    color: var(--secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.bio-content .bio-intro {
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 400;
}

.highlights-container {
    margin-top: 6rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.final-cta-container {
    margin-top: 6rem;
    text-align: center;
}

.cta-large {
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
}

/* Mobile */
@media (max-width: 1200px) {
    .report-card {
        flex: 0 0 calc(50% - 1rem);
        width: calc(50% - 1rem);
        /* Standard 2-card view */
    }
}

@media (max-width: 1024px) {
    .carousel-container {
        gap: 8px;
    }

    .carousel-nav {
        flex: 0 0 30px;
        height: 30px;
        width: 30px;
    }

    .carousel-nav svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }

    .interactive-service-grid {
        grid-template-columns: 1fr;
    }

    .media-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width-field {
        grid-column: span 1;
    }

    .trust-grid {
        gap: 2rem;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .carousel-track {
        gap: 0;
    }

    .carousel-container {
        padding: 0;
        position: relative;
    }

    .carousel-nav {
        position: absolute;
        bottom: 2rem;
        z-index: 10;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .carousel-prev {
        left: auto;
        right: 4.5rem;
    }

    .carousel-next {
        right: 1.5rem;
    }

    .report-card {
        flex: 0 0 calc(100vw - 32px);
        width: calc(100vw - 32px);
        margin: 0 16px;
    }

    .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .logo img,
    .footer-logo img {
        height: 30px;
    }
}