/* ========================================
   ThePolicy.io — Main Landing Page Styles
   ======================================== */

:root {
    --color-primary: #1565c0;
    --color-primary-light: #1976d2;
    --color-primary-dark: #0d47a1;
    --color-accent: #4CAF50;
    --color-cta: #f44336;
    --color-cta-dark: #d32f2f;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-section: #f0f4f8;
    --color-border: #e0e0e0;
    --color-navy: #0d1b2a;
    --color-navy-mid: #1a365d;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width: 1200px;
    --header-height: 72px;
    --border-radius: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
    --transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ---- Utility ---- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section__eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 12px;
    text-align: center;
}

.section__title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Left-aligned section header */
.section__header--left {
    margin-bottom: 48px;
}

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

.section__header--left .section__title {
    text-align: left;
    max-width: 600px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-cta), var(--color-cta-dark));
    color: #fff;
}

.btn--primary:hover {
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.35);
}

.btn--outline {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    background: transparent;
}

.btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn--blue {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #fff;
}

.btn--blue:hover {
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.35);
}

/* ---- Header ---- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    transition: box-shadow var(--transition);
    height: var(--header-height);
}

.header--scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 32px;
}

.header__logo img {
    height: 36px;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 8px;
    margin-left: auto;
    align-items: center;
}

.header__link {
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.header__link:hover {
    background: var(--color-bg-section);
    color: var(--color-primary);
}

/* Header dropdown */
.header__dropdown {
    position: relative;
}

.header__dropdown-toggle svg {
    transition: transform var(--transition);
}

.header__dropdown.open .header__dropdown-toggle svg {
    transform: rotate(180deg);
}

.header__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 100;
}

.header__dropdown.open .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--color-text);
    transition: background var(--transition), color var(--transition);
}

.header__dropdown-item:hover {
    background: var(--color-bg-section);
    color: var(--color-primary);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 16px;
}

.header__contact {
    font-size: 0.9rem;
    color: var(--color-text-light);
    transition: color var(--transition);
}

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

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}

.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 50%, var(--color-primary) 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.hero__title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero topic pills */
.hero__topics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero__topic-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255,255,255,0.08);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.hero__topic-pill:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

/* Hero rate ticker */
.hero__ticker {
    margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
}

.hero__ticker-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.85rem;
}

.hero__ticker-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.7rem;
    opacity: 0.9;
    flex-shrink: 0;
}

.hero__ticker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4CAF50;
    animation: ticker-pulse 2s ease-in-out infinite;
}

@keyframes ticker-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76,175,80,0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(76,175,80,0); }
}

.hero__ticker-items {
    display: flex;
    gap: 0;
}

.hero__ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.hero__ticker-item:first-child {
    border-left: none;
    padding-left: 0;
}

.hero__ticker-item--loading {
    opacity: 0.6;
    border-left: none;
    padding-left: 0;
}

.hero__ticker-label {
    opacity: 0.7;
    font-size: 0.8rem;
}

.hero__ticker-value {
    font-weight: 700;
    font-size: 0.95rem;
}

.hero__ticker-source {
    opacity: 0.45;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ---- Categories ---- */
.categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.category-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.category-card__icon svg {
    width: 30px;
    height: 30px;
}

.category-card__icon--auto  { background: #e3f2fd; color: #1565c0; }
.category-card__icon--home  { background: #e8f5e9; color: #2e7d32; }
.category-card__icon--loans { background: #e0f2f1; color: #00796b; }

.category-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.category-card__arrow {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: gap var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.category-card:hover .category-card__arrow {
    gap: 10px;
}

/* ---- Featured Insight ---- */
.featured-insight {
    background: var(--color-bg-section);
}

.featured-insight__layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: center;
}

.featured-insight__content .section__eyebrow {
    text-align: left;
}

.featured-insight__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.featured-insight__title strong {
    color: var(--color-primary);
}

.featured-insight__text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.featured-insight__stats {
    display: flex;
    gap: 32px;
}

.featured-insight__stat {
    display: flex;
    flex-direction: column;
}

.featured-insight__stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}

.featured-insight__stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* Savings card */
.featured-insight__card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.featured-insight__card-header {
    background: var(--color-primary);
    color: #fff;
    padding: 16px 24px;
    font-size: 0.95rem;
    font-weight: 600;
}

.featured-insight__card-rows {
    padding: 8px 0;
}

.featured-insight__card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-bg-section);
}

.featured-insight__card-row:last-child {
    border-bottom: none;
}

.featured-insight__card-amount {
    font-weight: 700;
    color: var(--color-accent);
}

.featured-insight__card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--color-bg-light);
    font-weight: 600;
}

.featured-insight__card-total {
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 800;
}

/* ---- Testimonials ---- */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.testimonial-card__stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card__author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}

.testimonial-card__type {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* ---- Newsletter ---- */
.newsletter {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
    color: #fff;
}

.newsletter .section__title {
    color: #fff;
}

.newsletter .section__subtitle {
    color: rgba(255,255,255,0.85);
}

.newsletter__form {
    max-width: 520px;
    margin: 0 auto;
}

.newsletter__field {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter__input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-family);
    outline: none;
    transition: border-color var(--transition);
}

.newsletter__input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter__input:focus {
    border-color: rgba(255,255,255,0.7);
}

.newsletter__privacy {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

.newsletter__privacy a {
    text-decoration: underline;
}

.newsletter__success {
    display: none;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px;
}

.newsletter__success.show {
    display: block;
}

/* ---- Resources ---- */
.resources {
    background: var(--color-bg-light);
}

.resources__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.resource-card {
    background: var(--color-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.resource-card--featured {
    display: flex;
    flex-direction: column;
}

.resource-card__image {
    height: 220px;
    overflow: hidden;
}

.resource-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resource-card:hover .resource-card__image img {
    transform: scale(1.05);
}

.resource-card__body {
    padding: 24px;
}

.resource-card__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    background: #e3f2fd;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.resource-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.resource-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 16px;
}

.resource-card__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Sidebar resource rows */
.resources__sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.resource-card--row {
    border-radius: 12px;
    padding: 0;
}

.resource-card--row .resource-card__body {
    padding: 20px;
}

.resource-card--row .resource-card__title {
    font-size: 1rem;
    margin-bottom: 8px;
}

/* ---- Closing ---- */
.closing {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: #fff;
    padding: 56px 0;
}

.closing__layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.closing__title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.closing__links {
    display: flex;
    gap: 32px;
    flex-shrink: 0;
}

.closing__link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    opacity: 0.9;
    transition: opacity var(--transition);
    white-space: nowrap;
}

.closing__link:hover {
    opacity: 1;
}

/* Coming soon tooltip */
.coming-soon-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--color-text);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 2000;
    pointer-events: none;
}

.coming-soon-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ---- Footer ---- */
.footer {
    background: var(--color-navy);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand img {
    height: 32px;
    margin-bottom: 16px;
}

.footer__motto {
    font-style: italic;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.6);
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__heading {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: #fff;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.footer__social a:hover {
    background: rgba(255,255,255,0.18);
}

.footer__social svg {
    width: 16px;
    height: 16px;
    fill: rgba(255,255,255,0.7);
}

.footer__bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

.footer__bottom p {
    margin: 4px 0;
}

.footer__disclosure {
    margin-top: 12px;
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.35);
}

/* ---- Cookie Banner ---- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner__inner {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-banner__inner p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.cookie-banner__inner a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background var(--transition);
}

.cookie-banner__btn--accept {
    background: var(--color-primary);
    color: #fff;
}

.cookie-banner__btn--accept:hover {
    background: var(--color-primary-dark);
}

.cookie-banner__btn--decline {
    color: var(--color-text-muted);
}

.cookie-banner__btn--decline:hover {
    color: var(--color-text);
}

/* ---- Scroll Animations ---- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */

/* Tablet */
@media (max-width: 900px) {
    .hero__title {
        font-size: 2.4rem;
    }

    .hero__topics {
        gap: 8px;
    }

    .hero__topic-pill {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .hero__ticker-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero__ticker-source {
        width: 100%;
        text-align: center;
    }

    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-insight__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .closing__layout {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .closing__links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .section__header--left .section__title {
        max-width: none;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .header__nav,
    .header__actions .header__contact {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    .header__actions {
        margin-left: auto;
    }

    /* Mobile nav drawer */
    .header__nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        padding: 24px;
        gap: 4px;
        z-index: 999;
    }

    .header__nav.open .header__link {
        padding: 14px 16px;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--color-bg-section);
    }

    .header__nav.open .header__dropdown {
        width: 100%;
    }

    .header__nav.open .header__dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .header__nav.open .header__dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .header__nav.open .header__dropdown:not(.open) .header__dropdown-menu {
        display: none;
    }

    .header__nav.open .header__dropdown-item {
        padding: 12px 16px;
        font-size: 1rem;
        border-bottom: 1px solid var(--color-bg-section);
    }

    .hero {
        padding: 60px 0 50px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__topics {
        gap: 8px;
    }

    .hero__topic-pill {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .hero__ticker-inner {
        flex-direction: column;
        gap: 10px;
    }

    .hero__ticker-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .hero__ticker-item {
        padding: 0 12px;
        font-size: 0.8rem;
    }

    .hero__ticker-value {
        font-size: 0.85rem;
    }

    .section {
        padding: 56px 0;
    }

    .section__title {
        font-size: 1.6rem;
    }

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

    .featured-insight__stats {
        flex-direction: column;
        gap: 20px;
    }

    .closing__links {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter__field {
        flex-direction: column;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .closing {
        padding: 40px 0;
    }

    .closing__title {
        font-size: 1.4rem;
    }
}
