/* ==========================================================================
   TOQUICONU - ESTILOS INSPIRADOS EN KONSTRUKTIC (THEMEFOREST INDUSTRIAL)
   ========================================================================== */

:root {
    --primary-dark: #0F172A;
    --primary-slate: #1E293B;
    --accent-gold: #F59E0B;
    --accent-gold-dark: #D97706;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-dark);
}

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

a:hover {
    color: var(--accent-gold);
}

/* Utilitarios */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--primary-dark); color: #fff; }
.bg-white { background-color: var(--bg-white); }

.text-white { color: #ffffff !important; }
.text-gold { color: var(--accent-gold) !important; }
.text-accent { color: var(--accent-gold-dark) !important; }
.text-dark { color: var(--primary-dark) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center; }

.font-weight-600 { font-weight: 600; }
.font-weight-700 { font-weight: 700; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.gap-2 { gap: 15px; }
.gap-3 { gap: 25px; }
.gap-4 { gap: 40px; }

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

.p-3 { padding: 15px; }
.p-4 { padding: 25px; }
.p-5 { padding: 40px; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 10px !important; }
.mb-3 { margin-bottom: 15px !important; }
.mb-4 { margin-bottom: 25px !important; }
.mt-2 { margin-top: 10px !important; }
.mt-3 { margin-top: 15px !important; }
.mt-4 { margin-top: 25px !important; }

.border-radius { border-radius: 8px; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.border-top-accent { border-top: 4px solid var(--accent-gold); }
.border-left-accent { border-left: 4px solid var(--accent-gold); }
.border-left-dark { border-left: 4px solid var(--primary-dark); }

.max-w-600 { max-width: 600px; margin-left: auto; margin-right: auto; }
.max-w-700 { max-width: 700px; margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.w-100 { width: 100%; }

.img-fluid { max-width: 100%; height: auto; object-fit: cover; }
.display-block { display: block; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.z-10 { z-index: 10; }

/* Botones Estilo Industrial */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-accent {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-accent:hover {
    background-color: var(--accent-gold-dark);
    color: #fff;
}

.btn-dark {
    background-color: var(--primary-dark);
    color: #fff;
}

.btn-dark:hover {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary-dark);
}

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

.btn-outline-dark:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }

/* TOPBAR */
.topbar {
    background-color: var(--primary-slate);
    color: #94A3B8;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.topbar-info span {
    margin-right: 20px;
}

.topbar-info i {
    color: var(--accent-gold);
    margin-right: 5px;
}

.topbar-social a {
    color: #94A3B8;
    margin-left: 15px;
    font-size: 14px;
}

.topbar-social a:hover { color: var(--accent-gold); }

.topbar-admin-link {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent-gold) !important;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
}

/* MAIN HEADER */
.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-dark);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 6px;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    display: block;
}

.logo-tagline {
    font-size: 9px;
    font-weight: 700;
    color: var(--accent-gold-dark);
    letter-spacing: 1.5px;
    display: block;

}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-dark);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold-dark);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-dark);
    cursor: pointer;
}

/* HERO BANNER & SLIDER */
.hero-slider-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
    min-height: 580px;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: none;
    padding: 120px 0 100px;
    background-size: cover;
    background-position: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    max-width: 850px;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 18px;
    color: #94A3B8;
    max-width: 700px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 13px;
    color: #CBD5E1;
    font-weight: 500;
}

/* SLIDER CONTROLS */
.slider-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--accent-gold);
    width: 30px;
    border-radius: 10px;
}

/* SECTION HEADERS */
.section-tag {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-gold-dark);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.section-title {
    font-size: 32px;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

.header-block {
    margin-bottom: 45px;
}

/* PAGE HEADER (SUB-PÁGINAS) */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-slate));
    color: #fff;
    padding: 60px 0;
    border-bottom: 4px solid var(--accent-gold);
}

.breadcrumbs {
    font-size: 13px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.breadcrumbs a { color: #94A3B8; }

.page-title {
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
}

.page-subtitle {
    color: #CBD5E1;
    font-size: 16px;
}

/* TARJETAS Y COMPONENTES */
.value-bullets {
    margin: 25px 0;
}

.bullet-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.bullet-item i { font-size: 18px; margin-top: 3px; }

.service-card-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--accent-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.card-title { font-size: 20px; margin-bottom: 12px; }
.card-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.card-link { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--primary-dark); }

/* METODOLOGÍA */
.methodology-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 8px;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.step-card h4 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.step-card p { color: #94A3B8; font-size: 13px; }

/* PROYECTOS */
.project-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    position: relative;
}

.project-image-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image-box img {
    transform: scale(1.05);
}

.project-image-box-lg {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.project-image-box-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-dark);
    color: var(--accent-gold);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
}

.project-title { font-size: 18px; margin-bottom: 10px; }
.project-meta { display: flex; gap: 15px; font-size: 12px; color: var(--text-muted); margin-bottom: 15px; }
.project-summary { font-size: 13px; color: var(--text-muted); margin-bottom: 15px; }
.project-status { font-size: 12px; padding-top: 12px; border-top: 1px dashed var(--border-color); }

.project-filters { display: flex; justify-content: center; gap: 10px; }
.filter-btn {
    padding: 8px 18px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--primary-dark);
    color: var(--accent-gold);
    border-color: var(--primary-dark);
}

.status-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.status-en-ejecución { background: #FEF3C7; color: #D97706; }
.status-estructuración { background: #E0F2FE; color: #0284C7; }
.status-concluido { background: #DCFCE7; color: #15803D; }

/* CTA BANNER */
.cta-banner {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    padding: 60px 0;
}

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

.cta-text h2 { color: var(--primary-dark); font-size: 28px; margin-bottom: 8px; }
.cta-text p { font-size: 16px; font-weight: 500; }

/* FOOTER */
.footer {
    background: var(--primary-dark);
    color: #94A3B8;
    padding-top: 70px;
}

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

.footer-desc { font-size: 13px; margin: 15px 0 20px; line-height: 1.7; }
.footer-title { color: #fff; font-size: 16px; margin-bottom: 20px; border-left: 3px solid var(--accent-gold); padding-left: 10px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #94A3B8; font-size: 13px; }
.footer-links a:hover { color: var(--accent-gold); padding-left: 5px; }

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 13px;
    margin-bottom: 12px;
}

.footer-contact-item i { color: var(--accent-gold); margin-top: 3px; }
.footer-bottom { padding: 25px 0; font-size: 12px; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; }

/* FORMULARIOS & CMS ADMIN */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.alert {
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
}
.alert-success { background: #DCFCE7; color: #15803D; border: 1px solid #86EFAC; }
.alert-danger { background: #FEE2E2; color: #B91C1C; border: 1px solid #FCA5A5; }

/* CMS ADMIN LAYOUT */
.admin-body { background-color: #F1F5F9; }
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px;
    background: var(--primary-dark);
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.admin-logo {
    padding: 0 20px 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-nav { flex: 1; margin-top: 20px; }
.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #94A3B8;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
}

.admin-nav-item:hover, .admin-nav-item.active {
    background: rgba(255,255,255,0.05);
    color: var(--accent-gold);
    border-left: 4px solid var(--accent-gold);
}

.admin-user-info {
    padding: 15px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-name { font-weight: 600; font-size: 13px; display: block; }
.user-role { font-size: 11px; color: var(--accent-gold); }

.admin-main { flex: 1; display: flex; flex-direction: column; }
.admin-top-header {
    height: 70px;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-content { padding: 30px; }

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

/* LOGIN CMS CARD */
.admin-login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 400px;
}

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

.modal-overlay.active { display: flex; }
.modal-card { width: 90%; }
.modal-close { background: none; border: none; font-size: 24px; cursor: pointer; }

/* TOPBAR WEBMAIL BUTTON */
.topbar-webmail-link {
    background: rgba(99, 102, 241, 0.2);
    color: #818CF8 !important;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    transition: var(--transition);
}

.topbar-webmail-link:hover {
    background: #818CF8;
    color: #fff !important;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: #CBD5E1;
    padding: 20px 0;
    z-index: 3000;
    border-top: 3px solid var(--accent-gold);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.4s ease-in-out;
}

.cookie-banner.hidden {
    transform: translateY(110%);
}

.cookie-banner-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.cookie-icon {
    font-size: 28px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-banner-text strong {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 15px;
    display: block;
    margin-bottom: 4px;
}

.cookie-banner-text p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: #94A3B8;
}

.cookie-banner-text p a {
    color: var(--accent-gold);
    text-decoration: underline;
}

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

.cookie-banner-actions .btn-outline-dark {
    border-color: #475569;
    color: #CBD5E1;
}

.cookie-banner-actions .btn-outline-dark:hover {
    background: #475569;
    color: #fff;
}

/* LEGAL DOCUMENT PAGES */
.legal-document h2 {
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.legal-document h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-document p {
    font-size: 14px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 12px;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.legal-list li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 8px;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.legal-list li i {
    margin-right: 8px;
}

/* RESPONSIVE MOBILE */
@media (max-width: 992px) {
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 36px; }
    .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-content { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4, .methodology-steps-grid { grid-template-columns: 1fr; }
    .mobile-toggle { display: block; }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        padding: 20px;
        box-shadow: var(--shadow-md);
    }
    .nav-menu.active { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column; gap: 10px; text-align: center; }
    .topbar-info span:not(:first-child) { display: none; }

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

