/* ==========================================
   RESET & BASE STYLES - ADVERTISE X STYLE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #1a202c;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 70px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ==========================================
   TYPOGRAPHY - ADVERTISE X STYLE
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.625rem;
    font-weight: 700;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

ul {
    list-style: none;
}

/* ==========================================
   CONTAINER - ADVERTISE V1 STYLE
   ========================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ==========================================
   BUTTONS - ADVERTISE X STYLE
   ========================================== */
.btn {
    display: inline-block;
    padding: 22px 48px;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #FF9D7A 0%, #F4886B 50%, #E94F3D 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(233, 79, 61, 0.25);
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF8661 0%, #E86E54 50%, #d43d2d 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 79, 61, 0.35);
}

.btn-secondary {
    background: #ffffff;
    color: #283A57;
    border: 2px solid #283A57;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #F5F7FA;
    border-color: #1f2d42;
    color: #1f2d42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 58, 87, 0.15);
}

.btn-large {
    padding: 24px 56px;
    font-size: 1.25rem;
    font-weight: 700;
    min-width: 280px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
}

.btn-large.btn-secondary {
    padding: 22px 54px;
}

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

/* ==========================================
   HEADER - ADVERTISE X STYLE
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px 0;
    width: 100%;
}

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

.logo-text {
    font-size: 2.25rem;
    font-weight: 700;
    color: #283A57;
    margin-bottom: 0;
    line-height: 1;
}

.tagline {
    font-size: 1rem;
    color: #A6AFCE;
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

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

.nav a {
    font-weight: 600;
    font-size: 1.25rem;
    color: #6B7A99;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #E94F3D;
}

.header .btn {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 20px 40px;
}

/* ==========================================
   HERO SECTION - ADVERTISE V1 STYLE
   ========================================== */
.hero {
    background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);
    padding: 120px 0 120px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #1a202c;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-title-sub {
    font-size: 2rem;
    font-weight: 600;
    display: block;
    margin-top: 12px;
    color: #6B7A99;
}

.hero-subtitle {
    font-size: 1.375rem;
    font-weight: 600;
    color: #E94F3D;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.0625rem;
    color: #6B7A99;
    margin-bottom: 48px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-benefits {
    display: flex;
    gap: 20px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 32px;
    height: 32px;
}

.benefit-item span {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1a202c;
}

.hero-cta {
    margin-top: 0;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.cta-subtitle {
    margin-top: 24px;
    font-size: 0.9375rem;
    color: #6B7A99;
    text-align: left;
}

.hero-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-illustration img {
    width: 80%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}


/* ==========================================
   COMPARISON SECTION - ADVERTISE V1 STYLE
   ========================================== */
.comparison {
    padding: 120px 0 120px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FA 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 24px;
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #6B7A99;
    margin-bottom: 64px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 40px;
    border: 2px solid #E5E9F0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-card:hover {
    border-color: #D0D7E3;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.comparison-businesstart,
.comparison-highlight {
    border-color: #F4A63E;
    background: linear-gradient(135deg, #FFFBF7 0%, #FFF8F0 50%, #FFFFFF 100%);
    box-shadow: 0 10px 30px rgba(244, 166, 62, 0.15);
}

.comparison-businesstart:hover,
.comparison-highlight:hover {
    border-color: #E94F3D;
    box-shadow: 0 20px 50px rgba(244, 166, 62, 0.25);
}

.badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #F4A63E;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(244, 166, 62, 0.4);
}

.comparison-illustration {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 32px;
}

.comparison-illustration svg {
    width: 100%;
    height: auto;
}

.comparison-card h3 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
}

.service-formula {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #E94F3D;
    margin-top: 8px;
}

.comparison-card .service-icon-container {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.comparison-card .service-icon-container svg {
    width: 80px;
    height: 80px;
}

.comparison-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #283A57;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.comparison-card .service-link:hover {
    color: #E94F3D;
    transform: translateX(4px);
}

.comparison-card .btn {
    margin-top: 24px;
    width: 100%;
}

.comparison-card p {
    font-size: 1.125rem;
    color: #6B7A99;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: center;
    flex-grow: 1;
}

.comparison-list {
    margin-bottom: 36px;
}

.comparison-list li {
    padding: 14px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.7;
}

.comparison-negative::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
    font-size: 20px;
}

.comparison-positive::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 22px;
}

/* ==========================================
   SERVICES SECTION - ADVERTISE V1 STYLE
   ========================================== */
.services {
    padding: 120px 0 120px;
    background: linear-gradient(180deg, #F5F7FA 0%, #FFFFFF 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 72px;
}

/* Home V3 - 3 cards grid */
.services-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 0;
}

/* Home V2 - 2 cards grid */
.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card-v3 {
    background: #ffffff;
    border-radius: 24px;
    padding: 56px 44px;
    border: 2px solid #E5E9F0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 420px;
}

.service-card-v3:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #283A57;
}

.service-icon-container {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
}

.service-icon-container svg {
    width: 80px;
    height: 80px;
}

.itaa-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    padding: 20px;
    background: #ffffff;
    border-radius: 50%;
    border: 4px solid #D0D7E3;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-v3:hover .itaa-logo {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    border-color: #283A57;
}

.service-card-v3 h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.25;
    text-align: center;
    width: 100%;
}

.service-card-v3 p {
    color: #6B7A99;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 28px;
    flex-grow: 1;
    text-align: center;
    width: 100%;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #283A57;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.service-link:hover {
    color: #1f2d42;
    transform: translateX(4px);
}

/* Business Plan Simple - Discreet secondary service */
.business-plan-simple {
    margin-top: 72px;
    padding-top: 48px;
    text-align: center;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    border-top: 2px solid #D0D7E3;
}

.business-plan-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.business-plan-text {
    font-size: 1.0625rem;
    color: #6B7A99;
    margin-bottom: 20px;
    line-height: 1.6;
}

.business-plan-simple .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #283A57;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.business-plan-simple .service-link:hover {
    color: #1f2d42;
    transform: translateX(4px);
}

/* ==========================================
   AVANTAGES SECTION - ADVERTISE V1 STYLE
   ========================================== */
.avantages {
    padding: 120px 0 120px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FA 100%);
}

/* ==========================================
   EXPERTISE SECTION - ADVERTISE V1 STYLE
   ========================================== */
.expertise {
    padding: 120px 0 120px;
    background: linear-gradient(135deg, #F5F7FA 0%, #EDF0F5 100%);
}

.expertise-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.expertise-logo-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.itaa-logo-large {
    width: 220px;
    height: 220px;
    object-fit: contain;
    padding: 32px;
    background: #ffffff;
    border-radius: 50%;
    border: 5px solid #F4A63E;
    box-shadow: 0 12px 40px rgba(244, 166, 62, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.itaa-logo-large:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 50px rgba(244, 166, 62, 0.35);
    border-color: #E94F3D;
}

.expertise-illustration {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 48px;
}

.expertise-illustration svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.05));
}

.expertise-description {
    font-size: 1.25rem;
    color: #6B7A99;
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.expertise-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 16px;
    text-align: left;
    border: 2px solid #E5E9F0;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    border-color: #D0D7E3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateX(8px);
}

.expertise-item span {
    font-weight: 600;
    font-size: 1.125rem;
    color: #1a202c;
    line-height: 1.6;
}

.expertise-note {
    font-size: 1.125rem;
    color: #283A57;
    font-weight: 700;
    margin-bottom: 0;
}

/* ==========================================
   CTA FINAL SECTION - ADVERTISE V1 STYLE
   ========================================== */
.cta-final {
    padding: 120px 0 120px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF4E8 50%, #FFE8D6 100%);
    color: #283A57;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-final-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    color: #283A57;
    font-size: 3.5rem;
    margin-bottom: 24px;
    font-weight: 800;
    text-align: center;
    line-height: 1.15;
}

.cta-final p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #283A57;
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-final .btn-primary {
    background: #283A57;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(40, 58, 87, 0.3);
    margin: 0 auto;
    display: inline-block;
}

.cta-final .btn-primary:hover {
    background: #1f2d42;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(40, 58, 87, 0.4);
}

.cta-reassurance {
    margin-top: 24px;
    font-size: 0.9375rem;
    color: #283A57;
    text-align: center;
}

/* ==========================================
   FOOTER - ADVERTISE X STYLE
   ========================================== */
.footer {
    background: #283A57;
    color: #E5E9F0;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 28px;
}

.footer-brand h3 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #A6AFCE;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.footer-column a {
    color: #A6AFCE;
    font-size: 0.9375rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #F4A63E;
}

.footer-bottom {
    border-top: 1px solid rgba(166, 175, 206, 0.2);
    padding-top: 16px;
    text-align: center;
}

.footer-bottom p {
    color: #A6AFCE;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ==========================================
   FLOATING CTA - ADVERTISE X STYLE
   ========================================== */
.floating-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 99;
}

.floating-cta .btn {
    box-shadow: 0 10px 40px rgba(233, 79, 61, 0.4);
    animation: pulse 2s infinite;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 22px 48px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(233, 79, 61, 0.4);
    }
    50% {
        box-shadow: 0 10px 50px rgba(233, 79, 61, 0.6);
    }
}

/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-title-sub {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1.375rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .cta-subtitle {
        text-align: center;
    }

    .hero-benefits {
        justify-content: center;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .services-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-grid-v2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .business-plan-simple {
        margin-top: 56px;
        padding-top: 40px;
    }

    .nav {
        display: none;
    }

    .section-title {
        font-size: 2.5rem;
    }

.section-subtitle {
        margin-bottom: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
}

/* ==========================================
   RESPONSIVE - MOBILE
   ========================================== */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .container {
        padding: 0 20px;
    }

    .header {
        padding: 14px 0;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.75rem;
    }

    .hero {
        padding: 48px 0 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title-sub {
        font-size: 1.375rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1.0625rem;
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.0625rem;
        margin-bottom: 28px;
    }

    .comparison,
    .services,
    .avantages,
    .expertise,
    .cta-final {
        padding: 48px 0 40px;
    }

    .comparison-card,
    .service-card {
        padding: 20px 18px;
    }

    .service-card-v3 {
        padding: 32px 24px;
        min-height: auto;
    }

    .services-grid-v3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-grid-v2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .business-plan-simple {
        margin-top: 40px;
        padding-top: 32px;
    }

    .business-plan-label {
        font-size: 1.125rem;
    }

    .business-plan-text {
        font-size: 0.9375rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 16px 36px;
        font-size: 1.0625rem;
    }

    .cta-final h2 {
        font-size: 2.25rem;
    }

    .cta-final p {
        font-size: 1.0625rem;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .floating-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 54px;
    }

    .container {
        padding: 0 16px;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .hero {
        padding: 48px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        margin-bottom: 28px;
    }

    .comparison,
    .services,
    .avantages,
    .expertise,
    .cta-final {
        padding: 48px 0 40px;
    }

    .comparison-card,
    .service-card {
        padding: 18px 14px;
    }

    .service-card-v3 {
        padding: 28px 20px;
        min-height: auto;
    }
}

/* ==========================================
   PREVENT HORIZONTAL SCROLL
   ========================================== */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
