/**
 * Main Stylesheet
 * Clean, modern website template
 */

/* ==========================================================================
   1. CSS Variables
   ========================================================================== */

:root {
    /* Colors */
    --color-primary: #4f46e5;
    --color-primary-dark: #4338ca;
    --color-primary-light: #818cf8;
    --color-primary-bg: #eef2ff;

    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;

    --color-bg: #f8fafc;
    --color-bg-card: #ffffff;
    --color-bg-hover: #f1f5f9;

    --color-text: #1e293b;
    --color-text-secondary: #64748b;
    --color-text-muted: #94a3b8;
    --color-text-inverse: #ffffff;

    --color-border: #e2e8f0;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --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);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition: 200ms ease;

    /* Layout */
    --max-width: 1200px;
    --header-height: 64px;

    /* Font */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    min-height: 100vh;
}

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

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

a:hover {
    color: var(--color-primary-dark);
}

/* ==========================================================================
   3. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* ==========================================================================
   4. Layout
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ==========================================================================
   5. Header
   ========================================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-bg-card);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

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

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    color: var(--color-text-secondary);
    font-weight: 500;
    transition: color var(--transition);
}

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

/* ==========================================================================
   6. Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-inverse);
}

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

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* ==========================================================================
   7. Hero Section
   ========================================================================== */

.hero {
    padding: var(--space-2xl) 0;
    text-align: center;
    background: linear-gradient(180deg, var(--color-bg-card) 0%, var(--color-bg) 100%);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   8. Sections
   ========================================================================== */

.section {
    padding: var(--space-2xl) 0;
}

.section-alt {
    background: var(--color-bg-card);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-md);
}

.section-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-text-secondary);
}

/* ==========================================================================
   9. Features Grid
   ========================================================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.feature-card {
    background: var(--color-bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--color-primary-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--color-primary);
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
}

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

/* ==========================================================================
   10. Footer
   ========================================================================== */

.footer {
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    padding: var(--space-xl) 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
}

.footer-tagline {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    margin-top: var(--space-sm);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-xl);
}

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

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

.footer-bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* ==========================================================================
   11. Cookie Banner
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    padding: var(--space-lg);
    z-index: 1000;
}

.cookie-banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cookie-text p {
    margin: 0;
}

.cookie-text p:first-child {
    margin-bottom: var(--space-xs);
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
}

.cookie-links {
    font-size: 0.875rem;
}

.cookie-links a {
    color: var(--color-text-secondary);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.cookie-modal.active {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.cookie-modal-header h3 {
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-muted);
    line-height: 1;
}

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

.cookie-modal-body {
    padding: var(--space-lg);
}

.cookie-category {
    margin-bottom: var(--space-lg);
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.cookie-category-header label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    cursor: pointer;
}

.always-active {
    font-size: 0.75rem;
    color: var(--color-success);
    font-weight: 600;
}

.cookie-category p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: var(--space-sm);
    padding: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

/* ==========================================================================
   12. Legal Pages
   ========================================================================== */

.legal-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.legal-main {
    flex: 1;
    padding: var(--space-2xl) 0;
}

.legal-main h1 {
    margin-bottom: var(--space-xl);
}

.legal-main h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-main p,
.legal-main ul,
.legal-main ol {
    margin-bottom: var(--space-md);
}

.legal-main ul,
.legal-main ol {
    padding-left: var(--space-xl);
}

.legal-main li {
    margin-bottom: var(--space-sm);
}

/* ==========================================================================
   13. Navbar (Homepage)
   ========================================================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-md) 0;
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--color-text);
}

.navbar__logo-icon {
    flex-shrink: 0;
}

.navbar__logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

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

.navbar__links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.navbar__links a {
    color: var(--color-text-secondary);
    font-weight: 500;
    transition: color var(--transition);
}

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

.navbar__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.navbar__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.navbar__mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================================================
   14. Hero Section (Homepage)
   ========================================================================== */

.hero {
    padding: var(--space-2xl) 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

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

.hero__content {
    text-align: left;
}

.hero__badge {
    display: inline-block;
    background: var(--color-primary-bg);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.hero__title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--color-text);
}

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.hero__note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

.hero__visual {
    display: flex;
    justify-content: center;
}

/* Dashboard Mockup */
.hero__mockup {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.mockup__header {
    display: flex;
    gap: 6px;
    padding: var(--space-md);
    background: #f1f5f9;
    border-bottom: 1px solid var(--color-border);
}

.mockup__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup__dot--red { background: #ef4444; }
.mockup__dot--yellow { background: #f59e0b; }
.mockup__dot--green { background: #10b981; }

.mockup__content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mockup__stat {
    display: flex;
    flex-direction: column;
    padding: var(--space-md);
    background: var(--color-bg);
    border-radius: var(--radius);
    border-left: 4px solid var(--color-primary);
}

.mockup__stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
}

.mockup__stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* ==========================================================================
   15. Compliance Banner
   ========================================================================== */

.compliance-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3b82f6 100%);
    color: white;
    padding: var(--space-xl) 0;
}

.compliance-banner__container {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.compliance-banner__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-banner__icon svg {
    color: white;
}

.compliance-banner__content h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.compliance-banner__content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
}

/* ==========================================================================
   16. Features Section (Homepage)
   ========================================================================== */

.features {
    padding: 4rem 0;
    background: white;
}

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

.feature-card {
    padding: var(--space-xl);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

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

.feature-card__icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.feature-card__icon svg {
    width: 28px;
    height: 28px;
}

.feature-card__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.feature-card__description {
    color: var(--color-text-secondary);
    margin: 0;
    font-size: 0.9375rem;
}

/* ==========================================================================
   17. CTA Section
   ========================================================================== */

.cta {
    padding: 4rem 0;
    background: var(--color-bg);
    text-align: center;
}

.cta__title {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.cta__subtitle {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    font-size: 1.125rem;
}

/* ==========================================================================
   18. Footer (Homepage)
   ========================================================================== */

.footer {
    background: #1e293b;
    color: #94a3b8;
    padding: 3rem 0 1.5rem;
}

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

.footer__brand p {
    margin-top: var(--space-md);
    font-size: 0.9375rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
}

.footer__links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

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

.footer__links li {
    margin-bottom: var(--space-sm);
}

.footer__links a {
    color: #94a3b8;
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer__links a:hover {
    color: white;
}

.footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.875rem;
    margin: 0;
}

/* ==========================================================================
   19. Button Variants
   ========================================================================== */

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================================================
   20. Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero__content {
        text-align: center;
    }

    .hero__subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__mockup {
        max-width: 320px;
    }

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

/* ==========================================================================
   Trip Detail Page Styles
   ========================================================================== */

.odometer-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.odometer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.odometer-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.odometer-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

.odometer-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.odometer-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--color-text-muted);
}

.km-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--color-primary-bg);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.km-display__value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.km-display__unit {
    font-size: 1.25rem;
    color: var(--color-primary);
    font-weight: 500;
}

.trip-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trip-meta__item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.trip-meta__label {
    color: var(--color-text-muted);
}

.trip-meta__value {
    color: var(--color-text);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item dt {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-item dd {
    color: var(--color-text);
}

.info-item--highlight {
    padding: 0.75rem;
    background: var(--color-bg);
    border-radius: var(--radius);
}

.grid.grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .grid.grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .odometer-display {
        flex-direction: column;
    }

    .odometer-arrow {
        transform: rotate(90deg);
    }
}

/* Compliance Checklist */
.compliance-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.compliance-item--ok {
    color: var(--color-success);
}

.compliance-item--missing {
    color: var(--color-error);
}

.compliance-item .icon {
    width: 16px;
    height: 16px;
}

.compliance-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    font-weight: 500;
}

.compliance-status--ok {
    background: #d1fae5;
    color: #065f46;
}

.compliance-status--warning {
    background: #fef3c7;
    color: #92400e;
}

.compliance-status .icon {
    width: 20px;
    height: 20px;
}

/* Card variants */
.card--compliance {
    border-left: 4px solid var(--color-primary);
}

.card--danger {
    border-left: 4px solid var(--color-error);
}

/* Button group */
.btn-group {
    display: flex;
    gap: 0.5rem;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .navbar__links {
        display: none;
    }

    .navbar__mobile-toggle {
        display: flex;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .compliance-banner__container {
        flex-direction: column;
        text-align: center;
    }

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

    .footer__logo {
        justify-content: center;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
}
