/**
 * OSR — Tourism Soft Edition
 * Palette: sabbia calda, blu mare, terracotta
 * Font: Playfair Display (headings) + Nunito (body)
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@300;400;500;600;700&display=swap');

/* =====================
   VARIABILI
   ===================== */
:root {
    --bg:          #FFFFFF;
    --bg-alt:      #F4F4F5;
    --bg-card:     #FFFFFF;
    --primary:     #111111;
    --primary-dk:  #000000;
    --accent:      #E60000;
    --accent-lt:   #FF3333;
    --text:        #111111;
    --text-muted:  #666666;
    --border:      #E5E7EB;
    --shadow:      0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover:0 12px 48px rgba(0, 0, 0, 0.12);
    --radius:      24px;
    --radius-sm:   16px;
    --font-head:   'Nunito', system-ui, sans-serif;
    --font-body:   'Nunito', system-ui, sans-serif;
    --max-w:       1280px;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

body.mobile-nav-open { overflow: hidden; }

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

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

/* =====================
   LAYOUT
   ===================== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}

section { padding: 100px 0; }

/* =====================
   TIPOGRAFIA
   ===================== */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { color: var(--text-muted); line-height: 1.8; }

.label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 { margin-bottom: 14px; }

/* =====================
   PULSANTI
   ===================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 16px rgba(212, 132, 90, 0.3);
}

.btn-primary:hover {
    background: #bf7248;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 132, 90, 0.4);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.25s;
}

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

/* =====================
   HEADER
   ===================== */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(255, 252, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(45,58,69,0.08);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}

.brand-logo {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.brand-logo .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.25s;
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--primary-dk) !important;
    transform: translateY(-1px);
}

/* =====================
   HERO
   ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.50) 0%,
        rgba(0, 0, 0, 0.7) 45%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.hero-content {
    background: rgba(0, 0, 0, 0.35);
    padding: 40px;
    border-radius: 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-content .label { color: var(--accent-lt); }

.hero-content h1 { text-shadow: 0 2px 15px rgba(0,0,0,0.6);
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.15;
}

.hero-content h1 em {
    color: var(--accent-lt);
    font-style: italic;
}

.hero-content > p { text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.82);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badge span { font-size: 1.2rem; }

/* =====================
   PRODOTTI
   ===================== */
.products-section {
    background: var(--bg-alt);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: -60px; left: 0;
    width: 100%;
    height: 60px;
    background: var(--bg-alt);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.product-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.product-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    align-self: flex-start;
}

.product-status.active {
    background: rgba(74, 143, 163, 0.12);
    color: var(--primary);
}

.product-status.soon {
    background: rgba(212, 132, 90, 0.12);
    color: var(--accent);
}

.product-body h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--text);
}

.product-body p { font-size: 0.92rem; margin-bottom: 24px; flex: 1; }

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    transition: gap 0.2s;
}

.product-link:hover { gap: 10px; }

/* =====================
   JOURNAL
   ===================== */
.journal-section { background: var(--bg); }

.journal-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 60px;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.blog-cat {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.blog-body h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text);
    line-height: 1.4;
}

.blog-body p { font-size: 0.88rem; flex: 1; }

/* =====================
   CALCULATOR / ROI
   ===================== */
.roi-section { background: var(--bg-alt); }

.roi-box {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 52px 56px;
    box-shadow: var(--shadow);
    text-align: center;
}

.roi-box h2 { margin-bottom: 12px; }
.roi-box > p { margin-bottom: 44px; }

.roi-revenue {
    font-family: var(--font-head);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 28px 0;
    letter-spacing: -0.02em;
}

/* Slider personalizzato */
.roi-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 50%, var(--border) 50%);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px; height: 22px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(212,132,90,0.4);
    cursor: pointer;
    transition: transform 0.15s;
}

.roi-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.roi-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    border-top: 1px solid var(--border);
    padding-top: 36px;
    margin-top: 36px;
}

.roi-stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.roi-stat-value {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
}

.roi-stat-value.bad  { color: #D64545; }
.roi-stat-value.good { color: var(--primary); }

/* =====================
   TICKER / INSIGHTS BAR
   ===================== */
.insights-bar {
    background: var(--primary);
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
}

.ticker-wrap {
    display: flex;
    white-space: nowrap;
    animation: ticker 35s linear infinite;
}

.ticker-item {
    padding: 0 48px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}

.ticker-link { color: inherit; text-decoration: none; }
.ticker-link:hover { opacity: 1; }

@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
    background: var(--text);
    color: rgba(255,255,255,0.75);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    margin-bottom: 18px;
}

.footer-brand .dot { background: var(--accent); }

.footer-about { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.55); }

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-newsletter-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 18px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    padding: 13px 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0 20px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0.06em;
}

.newsletter-form button:hover { background: #bf7248; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

.admin-trigger {
    font-family: monospace;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.2) !important;
}

/* =====================
   MODAL ADMIN
   ===================== */
.auth-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,252,248,0.97);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.auth-box {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: var(--radius);
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(45,58,69,0.15);
}

.auth-box h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.auth-box > p { font-size: 0.88rem; margin-bottom: 28px; }

.auth-input {
    width: 100%;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    text-align: center;
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--text);
    outline: none;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.auth-input:focus { border-color: var(--primary); }

.auth-feedback {
    display: none;
    color: #D64545;
    font-size: 0.82rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.auth-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.auth-cancel {
    padding: 13px;
    background: var(--bg-alt);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.auth-cancel:hover { background: var(--border); }

.auth-confirm {
    padding: 13px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.auth-confirm:hover { background: var(--primary-dk); }

/* =====================
   STATUS NEWSLETTER
   ===================== */
.news-status {
    display: none;
    font-size: 0.78rem;
    margin-top: 10px;
    font-weight: 600;
}

/* =====================
   NAV RIGHT WRAPPER
   ===================== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--bg-card);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.mobile-nav-toggle:hover {
    border-color: var(--primary);
    background: var(--bg-alt);
}

.mobile-nav-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 58, 69, 0.38);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1200;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 360px);
    height: 100vh;
    background: var(--bg-card);
    box-shadow: -12px 0 40px rgba(45, 58, 69, 0.16);
    z-index: 1300;
    padding: 24px 22px 32px;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-panel.open { transform: translateX(0); }

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-nav-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: var(--text);
}

.mobile-nav-close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--text);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-links a {
    display: block;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: var(--bg-alt);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text);
}

.mobile-nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
}

/* =====================
   LANG SWITCHER
   ===================== */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    padding: 6px 12px;
    transition: background 0.2s, border-color 0.2s;
    line-height: 1;
}

.lang-btn:hover {
    background: var(--bg-alt);
    border-color: var(--primary);
}

.lang-flag { font-size: 1rem; line-height: 1; }

.lang-code { letter-spacing: 0.04em; }

.lang-chevron {
    width: 10px; height: 10px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.2s;
    opacity: 0.6;
}

.lang-switcher.open .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 32px rgba(45, 58, 69, 0.12);
    min-width: 155px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.18s, transform 0.18s;
    z-index: 200;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    transition: background 0.15s;
    text-decoration: none;
}

.lang-option:hover { background: var(--bg-alt); }

.lang-option.active {
    background: rgba(74, 143, 163, 0.08);
    color: var(--primary);
    font-weight: 700;
}

.lang-option .lang-flag { font-size: 1.1rem; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .journal-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    section { padding: 70px 0; }

    .nav-links { display: none; }
    .site-header { padding: 14px 0; }
    .nav-inner { padding: 0 20px; }
    .nav-right { gap: 12px; }
    .brand-logo { font-size: 1.25rem; }
    .lang-btn { padding: 6px 10px; }
    .lang-code { font-size: 0.75rem; }
    .mobile-nav-toggle { display: inline-flex; }

    .hero { min-height: 90vh; padding-top: 80px; }
    .hero-badges { gap: 12px; }

    .products-grid { grid-template-columns: 1fr; }
    .journal-grid  { grid-template-columns: 1fr; }

    .journal-header { flex-direction: column; gap: 16px; }

    .roi-box { padding: 32px 24px; }
    .roi-revenue { font-size: 2.2rem; }
    .roi-stats { grid-template-columns: 1fr; gap: 16px; }

    .newsletter-form { flex-direction: column; gap: 10px; overflow: visible; }
    .newsletter-form input {
        border-right: 1px solid rgba(255,255,255,0.15);
        border-radius: var(--radius-sm);
    }
    .newsletter-form button {
        border-radius: var(--radius-sm);
        min-height: 46px;
    }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px 18px; }
}
