@import "../template.css";

/* ========================================
   HERO SECTION OPTIMISATIONS
======================================== */
.hero-opti {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    background: #f8f9fa;
    overflow: hidden;
    padding: 0;
}

body.dark-theme .hero-opti {
    background: #1a1a1a;
}

.hero-opti-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.hero-opti-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-opti-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: white;
}

body.dark-theme .hero-opti-text {
    background: #1e1e1e;
}

.hero-opti-text h1 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 15px;
}

body.dark-theme .hero-opti-text h1 {
    color: #fff;
}

.hero-opti-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

body.dark-theme .hero-opti-text h2 {
    color: #fff;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

body.dark-theme .hero-description {
    color: #94a3b8;
}

.btn-primary-opti {
    background: #1e1ee2;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-primary-opti:hover {
    background: #0f4585;
    transform: translateY(-2px);
}

.btn-primary-opti.small {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.btn-primary-opti.large {
    padding: 18px 50px;
    font-size: 1.05rem;
    width: 100%;
}

/* ========================================
   STICKY PRICE BAR
======================================== */
.sticky-price-bar {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 100;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.dark-theme .sticky-price-bar {
    background: #1e1e1e;
    border-color: #334155;
}

.sticky-price-content {
    padding: 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
}

body.dark-theme .sticky-title {
    color: #fff;
}

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

.sticky-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
}

body.dark-theme .sticky-price {
    color: #fff;
}

/* ========================================
   SECTION 3 ICÔNES
======================================== */
.features-icons-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.icon-feature {
    text-align: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.dark-theme .icon-circle {
    background: #2a2a2a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.icon-circle i {
    font-size: 2rem;
    color: #1e1ee2;
}

body.dark-theme .icon-circle i {
    color: #60a5fa;
}

.icon-feature:hover .icon-circle {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(30, 30, 226, 0.2);
}

body.dark-theme .icon-feature:hover .icon-circle {
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.icon-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

body.dark-theme .icon-feature h3 {
    color: #fff;
}

.icon-feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

body.dark-theme .icon-feature p {
    color: #94a3b8;
}

/* ========================================
   SECTION PROBLÈMES
======================================== */
.problems-section {
    padding: 100px 20px;
    background: var(--background-box);
    border-radius: 16px;
}

.problems-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.problems-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hero-title);
    margin-bottom: 15px;
}

.problems-left p {
    font-size: 1.1rem;
    color: var(--hero-subtitle);
    line-height: 1.7;
}

.problems-right {
    display: flex;
    justify-content: center;
}

.problems-stat {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

body.dark-theme .problems-stat {
    background: #1e1e1e;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #1e1ee2;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Chakra Petch', sans-serif;
}

body.dark-theme .stat-number {
    color: #60a5fa;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--hero-subtitle);
    font-weight: 600;
}

.problems-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

body.dark-theme .problem-item {
    background: #1e1e1e;
}

.problem-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.dark-theme .problem-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.problem-check {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1e1ee2 0%, #0f4585 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-check i {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.problem-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hero-title);
    margin-bottom: 5px;
}

.problem-content p {
    font-size: 0.9rem;
    color: var(--hero-subtitle);
    line-height: 1.5;
}

.problems-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.problems-cta p {
    font-size: 1.05rem;
    color: var(--hero-subtitle);
    margin-bottom: 20px;
}

.problems-cta strong {
    color: var(--hero-title);
}

/* ========================================
   SECTIONS IMAGE/TEXTE ALTERNÉES
======================================== */
.image-text-section {
    background: white;
    padding: 100px 20px;
    margin: 0;
}

body.dark-theme .image-text-section {
    background: #1a1a1a;
}

.image-text-section.reverse {
    background: #f8f9fa;
}

body.dark-theme .image-text-section.reverse {
    background: #1e1e1e;
}

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

.image-side {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

body.dark-theme .image-side {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-side h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--hero-title);
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-side p {
    font-size: 1.05rem;
    color: var(--hero-subtitle);
    line-height: 1.7;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--hero-subtitle);
}

.check-list i {
    color: #1e1ee2;
    font-size: 1.3rem;
}

body.dark-theme .check-list i {
    color: #60a5fa;
}

/* ========================================
   SECTION PROCESSUS (FOND BLANC/GRIS)
======================================== */
.process-section {
    padding: 80px 40px;
    text-align: center;
    color: #000;
    margin: 0;
}

body.dark-theme .process-section {
    background: #2a2a2a;
    color: white;
}

.process-section-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

body.dark-theme .process-section-icon {
    background: rgba(255,255,255,0.15);
}

.process-section-icon i {
    font-size: 2.2rem;
    color: #1e1ee2;
}

body.dark-theme .process-section-icon i {
    color: #60a5fa;
}

.process-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

body.dark-theme .process-section h2 {
    color: white;
}

.process-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

body.dark-theme .process-section-subtitle {
    color: #94a3b8;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-feature {
    text-align: center;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

body.dark-theme .process-icon {
    background: rgba(255,255,255,0.12);
}

.process-icon i {
    font-size: 1.5rem;
    color: #1e1ee2;
}

body.dark-theme .process-icon i {
    color: #60a5fa;
}

.process-feature h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

body.dark-theme .process-feature h3 {
    color: white;
}

.process-feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

body.dark-theme .process-feature p {
    color: #94a3b8;
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing-section {
    background: #f8f9fa;
    padding: 100px 20px;
    margin: 0;
}

body.dark-theme .pricing-section {
    background: #1a1a1a;
}

.pricing-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

body.dark-theme .pricing-card {
    background: #1e1e1e;
}

.pricing-icon {
    width: 90px;
    height: 90px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

body.dark-theme .pricing-icon {
    background: #2a2a2a;
}

.pricing-icon i {
    font-size: 2.5rem;
    color: #1e1ee2;
}

body.dark-theme .pricing-icon i {
    color: #60a5fa;
}

.pricing-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

body.dark-theme .pricing-card h2 {
    color: #fff;
}

.pricing-tagline {
    font-size: 1rem;
    color: #666;
    margin-bottom: 35px;
}

body.dark-theme .pricing-tagline {
    color: #94a3b8;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.price-big {
    font-size: 4.5rem;
    font-weight: 700;
    color: #1e1ee2;
    line-height: 1;
    font-family: 'Chakra Petch', sans-serif;
}

body.dark-theme .price-big {
    color: #60a5fa;
}

.price-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
}

.price-ht {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

body.dark-theme .price-ht {
    color: #fff;
}

.price-per {
    font-size: 0.9rem;
    color: #666;
}

body.dark-theme .price-per {
    color: #94a3b8;
}

.pricing-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    text-align: left;
    margin-bottom: 40px;
    padding: 0 20px;
}

.feature-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-check i {
    color: #1e1ee2;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

body.dark-theme .feature-check i {
    color: #60a5fa;
}

.feature-check span {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

body.dark-theme .feature-check span {
    color: #cbd5e1;
}

/* ========================================
   SECTIONS STANDARDS
======================================== */
.section-white,
.section-gray {
    padding: 100px 20px;
}

.section-white {
    background: transparent;
    border-radius: 16px;
}

.section-gray {
    background: var(--background-box);
    margin: 0;
    padding: 100px 20px;
    border-radius: 16px;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro.left-aligned {
    text-align: left;
    margin-bottom: 30px;
}

.section-pretitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

body.dark-theme .section-pretitle {
    color: #60a5fa;
}

.section-intro h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--hero-title);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.section-description {
    font-size: 1.1rem;
    color: var(--hero-subtitle);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-primary {
    color: #1e1ee2;
}

body.dark-theme .text-primary {
    color: #60a5fa;
}

/* ========================================
   GRILLES DE CARDS
======================================== */
.cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

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

.simple-card {
    background: white;
    border: none;
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.dark-theme .simple-card {
    background: #1e1e1e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.simple-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

body.dark-theme .simple-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.simple-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hero-title);
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.simple-card p {
    color: var(--hero-subtitle);
    line-height: 1.7;
    font-size: 1rem;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #1e1ee2 0%, #0f4585 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Chakra Petch', sans-serif;
}

/* ========================================
   INFO BANNER
======================================== */
.info-banner {
    background: linear-gradient(135deg, #1e1ee2 0%, #0f4585 100%);
    color: white;
    padding: 25px 40px;
    border-radius: 16px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 50px auto 0;
    box-shadow: 0 10px 30px rgba(30, 30, 226, 0.3);
}

.info-banner strong {
    font-weight: 700;
}

/* ========================================
   CTA FINAL DARK
======================================== */
.cta-final-dark {
    background: linear-gradient(135deg, #0b0c2a 0%, #1e293b 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

body.dark-theme .cta-final-dark {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.cta-final-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 30, 226, 0.1) 0%, transparent 70%);
    animation: pulse-modern 15s ease-in-out infinite;
}

body.dark-theme .cta-final-dark::before {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
}

@keyframes pulse-modern {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.5; }
}

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

.cta-final-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.cta-final-content p {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.7;
}

body.dark-theme .cta-final-content p {
    color: #e0e7ff;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 992px) {
    .cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-text-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Ordre image - texte pour toutes les sections sur mobile */
    .image-text-section .image-side {
        order: 1;
    }

    .image-text-section .text-side {
        order: 2;
    }

    .image-side {
        height: 350px;
    }

    .process-grid,
    .features-icons-section {
        grid-template-columns: 1fr;
    }

    .hero-opti {
        grid-template-columns: 1fr;
    }

    .hero-opti-image {
        order: -1;
        min-height: 300px;
    }

    .hero-opti-text {
        padding: 40px 30px;
    }

    .problems-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .sticky-price-bar {
        width: calc(100% - 20px);
        top: 85px;
        border-radius: 12px;
    }

    .sticky-price-content {
        padding: 10px 16px;
        gap: 12px;
    }

    .sticky-title {
        font-size: 0.8rem;
    }

    .sticky-price-right {
        gap: 12px;
    }

    .sticky-price {
        font-size: 0.85rem;
    }

    .btn-primary-opti.small {
        padding: 8px 16px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .section-white,
    .section-gray,
    .pricing-section,
    .cta-final-dark,
    .image-text-section,
    .process-section {
        padding: 40px 16px;
    }

    .section-intro {
        margin-bottom: 35px;
    }

    .section-intro h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .hero-opti-text {
        padding: 30px 24px;
    }

    .hero-opti-text h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .features-icons-section {
        padding: 50px 16px;
        gap: 30px;
    }

    .icon-circle {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .icon-circle i {
        font-size: 1.6rem;
    }

    .icon-feature h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .icon-feature p {
        font-size: 0.9rem;
    }

    .problems-section {
        padding: 50px 16px;
    }

    .problems-header {
        margin-bottom: 40px;
    }

    .problems-left h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .problems-left p {
        font-size: 1rem;
    }

    .problems-stat {
        padding: 25px;
    }

    .stat-number {
        font-size: 2.8rem;
        margin-bottom: 8px;
    }

    .stat-text {
        font-size: 0.85rem;
    }

    .problems-list {
        gap: 12px;
        margin-bottom: 35px;
    }

    .problem-item {
        padding: 18px;
    }

    .problem-check {
        width: 26px;
        height: 26px;
    }

    .problem-check i {
        font-size: 1rem;
    }

    .problem-content h3 {
        font-size: 1rem;
    }

    .problem-content p {
        font-size: 0.85rem;
    }

    .problems-cta p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .text-side h2 {
        font-size: 1.9rem;
        margin-bottom: 15px;
    }

    .text-side p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .check-list {
        margin-top: 20px;
    }

    .check-list li {
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .check-list i {
        font-size: 1.15rem;
    }

    .image-side {
        height: 280px;
    }

    .process-section-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .process-section-icon i {
        font-size: 1.8rem;
    }

    .process-section h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .process-section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .process-icon i {
        font-size: 1.3rem;
    }

    .process-feature h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .process-feature p {
        font-size: 0.9rem;
    }

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

    .pricing-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .pricing-icon i {
        font-size: 2rem;
    }

    .pricing-card h2 {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }

    .pricing-tagline {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .pricing-amount {
        margin-bottom: 30px;
    }

    .price-big {
        font-size: 3.2rem;
    }

    .pricing-features {
        grid-template-columns: 1fr;
        gap: 12px 30px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .feature-check {
        gap: 10px;
    }

    .feature-check i {
        font-size: 1.1rem;
    }

    .feature-check span {
        font-size: 0.9rem;
    }

    .cards-grid-2,
    .cards-grid-3,
    .problems-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .simple-card {
        padding: 20px 18px;
    }

    .card-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .simple-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .simple-card p {
        font-size: 0.95rem;
    }

    .info-banner {
        padding: 18px 20px;
        font-size: 0.9rem;
        margin-top: 35px;
    }

    .cta-final-content h2 {
        font-size: 1.9rem;
        margin-bottom: 18px;
    }

    .cta-final-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-opti-text h1 {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .hero-opti-text h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .btn-primary-opti {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .section-white,
    .section-gray,
    .pricing-section,
    .cta-final-dark,
    .image-text-section,
    .process-section {
        padding: 35px 16px;
    }

    .section-intro {
        margin-bottom: 30px;
    }

    .section-intro h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .section-pretitle {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .features-icons-section {
        padding: 40px 16px;
        gap: 25px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .icon-circle i {
        font-size: 1.4rem;
    }

    .icon-feature h3 {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }

    .icon-feature p {
        font-size: 0.88rem;
    }

    .problems-section {
        padding: 40px 16px;
    }

    .problems-header {
        margin-bottom: 30px;
    }

    .problems-left h2 {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }

    .problems-left p {
        font-size: 0.95rem;
    }

    .problems-stat {
        padding: 20px;
    }

    .stat-number {
        font-size: 2.4rem;
        margin-bottom: 6px;
    }

    .stat-text {
        font-size: 0.8rem;
    }

    .problems-list {
        gap: 10px;
        margin-bottom: 30px;
    }

    .problem-item {
        padding: 15px;
        gap: 12px;
    }

    .problem-check {
        width: 24px;
        height: 24px;
    }

    .problem-check i {
        font-size: 0.9rem;
    }

    .problem-content h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .problem-content p {
        font-size: 0.82rem;
    }

    .problems-cta p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .image-side {
        height: 240px;
    }

    .text-side h2 {
        font-size: 1.65rem;
        margin-bottom: 12px;
    }

    .text-side p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .check-list {
        margin-top: 18px;
    }

    .check-list li {
        margin-bottom: 10px;
        font-size: 0.9rem;
        gap: 10px;
    }

    .check-list i {
        font-size: 1.05rem;
    }

    .process-section-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .process-section-icon i {
        font-size: 1.6rem;
    }

    .process-section h2 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .process-section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .process-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 12px;
    }

    .process-icon i {
        font-size: 1.2rem;
    }

    .process-feature h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .process-feature p {
        font-size: 0.85rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }

    .pricing-icon i {
        font-size: 1.8rem;
    }

    .pricing-card h2 {
        font-size: 1.55rem;
        margin-bottom: 10px;
    }

    .pricing-tagline {
        font-size: 0.9rem;
        margin-bottom: 22px;
    }

    .pricing-amount {
        margin-bottom: 25px;
    }

    .price-big {
        font-size: 2.8rem;
    }

    .price-ht {
        font-size: 0.95rem;
    }

    .price-per {
        font-size: 0.85rem;
    }

    .pricing-features {
        gap: 10px 25px;
        margin-bottom: 25px;
        padding: 0 5px;
    }

    .feature-check {
        gap: 8px;
    }

    .feature-check i {
        font-size: 1rem;
    }

    .feature-check span {
        font-size: 0.88rem;
    }

    .btn-primary-opti.large {
        padding: 15px 40px;
        font-size: 1rem;
    }

    .simple-card {
        padding: 18px 16px;
    }

    .card-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .simple-card h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .simple-card p {
        font-size: 0.9rem;
    }

    .info-banner {
        padding: 16px 18px;
        font-size: 0.88rem;
        margin-top: 30px;
    }

    .cta-final-content h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .cta-final-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
}