/* ========================================
   RESET E VARIABILI GLOBALI
   ======================================== */

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

:root {
    --primary-color: #0052A3;
    --primary-dark: #003d7a;
    --secondary-color: #00A3E0;
    --accent-green: #2ECC71;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-light: #e0e0e0;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

@media (max-width: 1100px) {
    .header .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

.cta-button-nav {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.cta-button-nav:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

@media (max-width: 768px) {
    .nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-text {
        display: none;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-title strong {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

.hero-note {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 60ch;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: white;
}

.cta-button.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.cta-button.primary-large {
    padding: 16px 40px;
    font-size: 17px;
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.hero-box {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

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

.box-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.hero-box p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

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

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        gap: 12px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ========================================
   SEZIONI GENERICHE
   ======================================== */

section {
    padding: 80px 0;
}

section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 32px;
    }

    .section-intro {
        font-size: 16px;
    }
}

/* ========================================
   PROBLEM SECTION
   ======================================== */

.problem-section {
    background-color: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.problem-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    margin-bottom: 16px;
}

.problem-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits-section {
    background-color: var(--bg-white);
}

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

.benefit-item {
    padding: 32px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: inline-block;
}

.benefit-item h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    background-color: var(--bg-light);
}

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

.feature-block {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    padding-left: 70px;
}

.feature-block:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.feature-number {
    position: absolute;
    left: 28px;
    top: 28px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.feature-block h3 {
    margin-bottom: 12px;
}

.feature-block p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   COMPLIANCE SECTION
   ======================================== */

.compliance-section {
    background-color: var(--bg-white);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.compliance-card {
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 32px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: var(--transition);
}

.compliance-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.compliance-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.compliance-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.compliance-note {
    background: linear-gradient(135deg, rgba(0, 52, 163, 0.05), rgba(0, 163, 224, 0.05));
    border-left: 4px solid var(--primary-color);
    padding: 24px;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.compliance-note strong {
    color: var(--text-dark);
}

/* ========================================
   CLIENTS SECTION
   ======================================== */

.clients-section {
    background-color: var(--bg-light);
}

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

.client-card {
    background: white;
    padding: 28px;
    text-align: center;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

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

.client-icon {
    font-size: 44px;
    margin-bottom: 16px;
    display: inline-block;
}

.client-card h3 {
    margin-bottom: 12px;
}

.client-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   WHY US SECTION
   ======================================== */

.why-us-section {
    background: linear-gradient(135deg, var(--bg-light), white);
}

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

.why-item {
    padding: 28px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    display: flex;
    gap: 16px;
}

.why-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.why-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-green);
    flex-shrink: 0;
    width: 40px;
}

.why-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.faq-item {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-section {
    background: linear-gradient(135deg, var(--bg-light), white);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 16px;
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 52, 163, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 24px;
    background-color: var(--border-light);
    color: var(--text-gray);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-badge.featured-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.pricing-card h3 {
    font-size: 24px;
    margin-top: 8px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 16px 0;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-currency {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.price-period {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
}

.price-custom {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    min-height: 45px;
}

.pricing-features {
    list-style: none;
    flex-grow: 1;
    margin: 24px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-radius: 50%;
    flex-shrink: 0;
}

.pricing-features li:has(✓)::before {
    background-color: var(--accent-green);
    width: 4px;
    height: 4px;
}

.pricing-button {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 15px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.pricing-card .cta-button.primary {
    background-color: var(--primary-color);
    color: white;
}

.pricing-card .cta-button.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.pricing-card .cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.pricing-card .cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.pricing-note {
    background: linear-gradient(135deg, rgba(0, 52, 163, 0.08), rgba(0, 163, 224, 0.08));
    border-left: 4px solid var(--primary-color);
    padding: 24px;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.pricing-note strong {
    color: var(--text-dark);
}

@media (max-width: 1024px) {
    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .price-amount {
        font-size: 42px;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-section .cta-button {
    background-color: white;
    color: var(--primary-color);
}

.cta-section .cta-button:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-section p {
        font-size: 16px;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.form-contact-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 1fr);
    gap: 60px;
    align-items: start;
}

.form-wrapper {
    min-width: 0;
}

.form-wrapper .sib-form,
.form-wrapper .sib-form-container {
    width: 100%;
}

.form-wrapper #sib-form-container {
    max-width: 100% !important;
}

.form-wrapper #sib-container {
    max-width: 100% !important;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.contact-info-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 24px 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.form-content h2 {
    text-align: left;
    font-size: 32px;
    margin-bottom: 12px;
}

.form-content > p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 52, 163, 0.1);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-group.checkbox input {
    margin-top: 4px;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.form-group.checkbox label {
    font-weight: 400;
    margin: 0;
}

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

.form-group.checkbox a:hover {
    text-decoration: underline;
}

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

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

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-item > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .form-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-wrapper {
        padding: 32px 24px;
    }

    .form-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px 24px;
    }

    .form-content h2 {
        font-size: 26px;
    }
}

/* ========================================
   RESOURCE SECTION
   ======================================== */

.resource-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 80px 0;
    color: white;
}

.resource-section h2 {
    color: white;
    margin-bottom: 16px;
}

.resource-section .section-intro {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-size: 18px;
}

.resource-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-content {
    max-width: 700px;
    width: 100%;
}

.resource-card {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.resource-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

.resource-icon {
    font-size: 56px;
    flex-shrink: 0;
    min-width: 70px;
    text-align: center;
}

.resource-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: white;
}

.resource-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.6;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid white;
}

.resource-link:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    transform: translateX(4px);
}

.link-icon {
    display: inline-block;
    font-size: 18px;
    transition: var(--transition);
}

.resource-link:hover .link-icon {
    transform: translateY(2px);
}

@media (max-width: 768px) {
    .resource-section {
        padding: 60px 0;
    }

    .resource-card {
        flex-direction: column;
        padding: 32px;
        text-align: center;
        align-items: center;
    }

    .resource-icon {
        font-size: 48px;
    }

    .resource-section h2 {
        font-size: 32px;
    }

    .resource-info h3 {
        font-size: 20px;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

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

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    section h2 {
        font-size: 28px;
    }
}
