:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #E6F0FF;
    --dark: #1A1A2E;
    --gray-900: #2D2D3F;
    --gray-700: #4A4A5E;
    --gray-500: #8E8E9E;
    --gray-200: #E8E8EE;
    --gray-100: #F5F5F8;
    --white: #FFFFFF;
    --success: #10B981;
    --red: #EF4444;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    padding: 20px 0;
    display: none;
    border-top: 3px solid var(--primary);
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
}

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

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-cookie-accept {
    background: var(--primary);
    color: var(--white);
}

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

.btn-cookie-settings {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-cookie-settings:hover {
    background: var(--primary-light);
}

.btn-cookie-reject {
    background: var(--gray-200);
    color: var(--gray-700);
}

.btn-cookie-reject:hover {
    background: var(--gray-500);
    color: var(--white);
}

/* Pulsante riapri cookie */
.cookie-reopen {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9998;
    width: 44px;
    height: 44px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cookie-reopen:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.cookie-reopen.show {
    display: flex;
}

/* ==================== MODALS ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-500);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--gray-100);
    color: var(--dark);
}

.modal h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.modal h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal p,
.modal ul {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 12px;
}

.modal ul {
    padding-left: 20px;
}

.modal ul li {
    margin-bottom: 6px;
}

/* ==================== LANGUAGE SWITCHER (legacy - non più usato) ==================== */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    padding: 4px;
    max-width: 95vw;
}

.lang-switcher button {
    padding: 6px 12px;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s;
    color: var(--gray-700);
    font-family: 'Inter', sans-serif;
}

.lang-switcher button.active {
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 480px) {
    .lang-switcher {
        top: 10px;
        right: 10px;
        padding: 2px;
    }
    .lang-switcher button {
        padding: 4px 8px;
        font-size: 10px;
    }
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

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

/* ==================== HEADER / NAV ==================== */
header {
    padding: 16px 0;
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--gray-200);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: var(--primary-dark);
}

/* ==================== LANGUAGE DROPDOWN ==================== */
.lang-dropdown {
    position: relative;
    flex-shrink: 0;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    white-space: nowrap;
}

.lang-dropdown-toggle:hover {
    border-color: var(--primary);
}

.lang-dropdown-toggle .flag {
    font-size: 16px;
}

.lang-dropdown-toggle .arrow {
    font-size: 10px;
    transition: transform 0.3s;
    color: var(--gray-500);
}

.lang-dropdown.open .lang-dropdown-toggle .arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    max-height: 320px;
    overflow-y: auto;
    z-index: 200;
    display: none;
    padding: 8px 0;
}

.lang-dropdown.open .lang-dropdown-menu {
    display: block;
}

.lang-dropdown-menu button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.lang-dropdown-menu button:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.lang-dropdown-menu button.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
}

.lang-dropdown-menu button .flag {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.lang-dropdown-menu button .lang-name {
    flex: 1;
}

.lang-dropdown-menu button .lang-code {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 400;
}

/* ==================== HERO ==================== */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    z-index: -1;
}

.pre-headline {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary-light);
    z-index: -1;
    border-radius: 4px;
}

.hero > .container > p {
    font-size: 18px;
    color: var(--gray-700);
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
    background: var(--primary-light);
}

.micro-copy {
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-500);
}

/* ==================== SECTION TITLES ==================== */
.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-title p {
    color: var(--gray-700);
    font-size: 18px;
}

/* ==================== SITE SERVICE BANNER ==================== */
.site-service {
    background: var(--primary-light);
    padding: 32px 0;
    text-align: center;
}

.site-service-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.site-service-icon {
    font-size: 28px;
    color: var(--primary);
}

.site-service p {
    font-size: 16px;
    color: var(--gray-900);
    margin: 0;
}

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

/* ==================== COMPARISON ==================== */
.comparison {
    padding: 80px 0;
    background: var(--gray-100);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
}

.comparison-card.negative {
    border: 2px solid #FEE2E2;
    background: #FFF5F5;
}

.comparison-card.positive {
    border: 2px solid #D1FAE5;
    background: #F0FDF4;
    position: relative;
}

.comparison-card.positive::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -16px;
    right: 24px;
    background: var(--success);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.comparison-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.comparison-card.negative h3 {
    color: #DC2626;
}

.comparison-card.positive h3 {
    color: #059669;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-card.negative li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #EF4444;
}

.comparison-card.positive li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #10B981;
}

/* ==================== FEATURES GRID ==================== */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--gray-700);
    font-size: 14px;
}

/* ==================== NATIVE FEATURES ==================== */
.native-features {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
}

.native-features .section-title h2 {
    color: var(--white);
}

.native-features .section-title p {
    color: #A0A0B0;
}

.native-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.native-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}

.native-card .feature-icon {
    background: rgba(0,102,255,0.3);
    margin: 0 auto 16px;
    color: var(--white);
}

.native-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.native-card p {
    color: #A0A0B0;
    font-size: 14px;
}

/* ==================== CASE STUDIES ==================== */
.cases {
    padding: 80px 0;
}

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

.case-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 40px;
    border-left: 4px solid var(--primary);
}

.case-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.case-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.case-card p {
    color: var(--gray-700);
    font-size: 15px;
}

/* ==================== PROCESS ==================== */
.process {
    padding: 80px 0;
    background: var(--gray-100);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.step {
    text-align: center;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    color: var(--gray-700);
    font-size: 14px;
}

/* ==================== FAQ ==================== */
.faq {
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    background: var(--white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}

.faq-answer.open {
    padding: 0 24px 20px;
    max-height: 500px;
}

/* ==================== CONTACT ==================== */
.contact {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
}

.contact .section-title h2 {
    color: var(--white);
}

.contact .section-title p {
    color: #A0A0B0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s;
}

.contact-method:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-method-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

.contact-method-text span {
    font-size: 13px;
    color: #A0A0B0;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    color: var(--dark);
}

.contact-form-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--gray-900);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-700);
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 14px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.btn-submit:disabled {
    background: var(--gray-500);
    cursor: not-allowed;
}

.form-note {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 8px;
    text-align: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    color: var(--success);
    font-weight: 600;
}

.form-success.show {
    display: block;
}

/* ==================== FOOTER ==================== */
footer {
    padding: 60px 0 30px;
    background: var(--dark);
    color: #A0A0B0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    margin-bottom: 8px;
    line-height: 1.7;
}

.footer-col a {
    color: #A0A0B0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li i {
    color: var(--primary);
    margin-right: 8px;
    width: 16px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
}

.footer-af-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white) !important;
    font-weight: 600;
}

.footer-af-link:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom a {
    color: #A0A0B0;
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.3s;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    footer {
        padding: 40px 0 20px;
    }
}

/* ==================== LANGUAGE DISPLAY FIX ==================== */
main[lang] {
    display: none;
}

main[lang].active {
    display: block;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (max-width: 768px) {
    /* Hero */
    .hero {
        padding: 60px 0 50px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero > .container > p {
        font-size: 16px;
    }

    /* Section titles */
    .section-title h2 {
        font-size: 28px;
    }
    .section-title p {
        font-size: 16px;
    }

    /* Comparison */
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    /* Cases */
    .cases-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Nav */
    nav {
        gap: 12px;
    }
    .nav-right {
        gap: 10px;
    }
    .logo {
        font-size: 18px;
    }
    .nav-cta {
        padding: 8px 14px;
        font-size: 12px;
    }
    .lang-dropdown-toggle {
        padding: 6px 10px;
        font-size: 12px;
    }
    .lang-dropdown-menu {
        right: -20px;
        min-width: 160px;
    }
}

@media (max-width: 480px) {

#nav-cta {display:none    }
    /* Hero */
    .hero h1 {
        font-size: 28px;
    }
    .hero > .container > p {
        font-size: 15px;
    }
    .cta-group {
        flex-direction: column;
    }
    .btn-primary,
    .btn-secondary {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    /* Header */
    header {
        padding: 12px 0;
    }
    .logo {
        font-size: 16px;
    }
    .nav-cta {
        padding: 6px 12px;
        font-size: 11px;
    }
    .lang-dropdown-toggle {
        padding: 5px 8px;
        font-size: 11px;
        gap: 4px;
    }
    .lang-dropdown-toggle .flag {
        font-size: 14px;
    }
    .lang-dropdown-menu {
        right: -10px;
        min-width: 150px;
        max-height: 250px;
    }
    .lang-dropdown-menu button {
        padding: 8px 12px;
        font-size: 12px;
    }
}

.urgency {
  font-size: 14px;
  color: #F59E0B;
  font-weight: 500;
  margin-top: 8px;
}

.urgency-form {
  font-size: 13px;
  color: #F59E0B;
  font-weight: 500;
  margin-bottom: 12px;
}

/* ==================== GOOGLE ANALYTICS CONSENT ==================== */
.ga-consent-hidden {
    display: none !important;
}