 /* === PAGE A PROPOS === */

 .rapido-header-logo {
    position: absolute;
    top: 1px;
    left: 1px;
    z-index: 100;
}


/* Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2844 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(77, 163, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(77, 163, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a2844;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.about-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4DA3FF 0%, #357ABD 100%);
    border-radius: 2px;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, 
        rgba(77, 163, 255, 0.2) 0%, 
        rgba(77, 163, 255, 0.15) 50%, 
        rgba(77, 163, 255, 0.25) 100%);
    color: #4DA3FF;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(77, 163, 255, 0.4);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(77, 163, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Texture métal brossé */
.about-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 2px,
            transparent 4px
        );
    pointer-events: none;
    z-index: 1;
}

/* Brillance animée qui traverse */
.about-badge::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transform: skewX(-25deg);
    animation: badgeShine 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }
    20% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

/* Effet hover */
.about-badge:hover {
    border-color: rgba(77, 163, 255, 0.6);
    box-shadow: 
        0 4px 12px rgba(77, 163, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.about-badge:hover::after {
    animation: badgeShine 1.5s ease-in-out infinite;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #E8EEF6;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-hero-text {
    font-size: 1.35rem;
    color: #B8C5D6;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4DA3FF;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #8896A8;
    margin-top: 5px;
}

.about-hero-image {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Française */
.about-french-section {
    background: #fafbfc;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-french-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(77, 163, 255, 0.08) 40px,
            rgba(77, 163, 255, 0.08) 42px
        );
    pointer-events: none;
}

/* Cards horizontales - 2 par ligne */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-feature-item {
    background: #ffffff;
    border: 1px solid #d1dce6;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.about-feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 16px;
    z-index: -1;
}

.about-feature-item:hover {
    background: #ffffff;
    border-color: #4DA3FF;
    box-shadow: 0 10px 35px rgba(77, 163, 255, 0.18);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 3rem;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(77, 163, 255, 0.15) 0%, rgba(77, 163, 255, 0.08) 100%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(77, 163, 255, 0.1);
}


.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2844;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: #2d3748;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.about-section-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: #2d3748;
    font-weight: 500;
    letter-spacing: 0.2px;
    max-width: 750px;
    margin: 0 auto 45px;
}



/* Responsive */
@media (max-width: 992px) {
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-feature-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
}


/* === Section Héritage === */
.about-heritage-section {
    background: linear-gradient(135deg, #1a2844 0%, #0a1628 100%);
    padding: 100px 0;
    position: relative;
}

/* En-tête centré */
.about-heritage-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-heritage-header .about-section-title {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

/* Container visuel timeline (colonne gauche) */
.about-heritage-visual {
    position: sticky;
    top: 100px;
}

.heritage-timeline-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
}

/* Années de la timeline */
.heritage-year {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4DA3FF;
    padding: 20px 35px;
    background: rgba(77, 163, 255, 0.1);
    border: 2px solid rgba(77, 163, 255, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    margin: 0;
}

.heritage-year:hover {
    background: rgba(77, 163, 255, 0.15);
    border-color: rgba(77, 163, 255, 0.5);
    transform: scale(1.05);
}

/* Lignes entre les années */
.heritage-line {
    width: 3px;
    height: 120px;
    background: linear-gradient(180deg, rgba(77, 163, 255, 0.5), rgba(77, 163, 255, 0.2));
    margin: 15px 0;
}

/* Container texte (colonne droite) */
.about-heritage-content {
    text-align: left;
}

/* Blocs de texte héritage */
.heritage-text-blocks {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.heritage-block {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #4DA3FF;
    padding: 30px;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.heritage-block:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-width: 6px;
    transform: translateX(8px);
}

.heritage-block h4 {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.heritage-block p {
    font-size: 18px;
    color: #B8C5D6;
    line-height: 1.7;
    margin: 0;
}

/* === Responsive === */

/* Tablette */
@media (max-width: 992px) {

    .about-hero-section, 
    .about-french-section, 
    .about-heritage-section, 
    .about-commitment-section, 
    .about-team-section, 
    .about-final-cta {
        padding-inline: 50px !important;
    }

    .about-heritage-section {
        padding-top: 80px;
    }

    .about-heritage-header {
        margin-bottom: 50px;
    }

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

    .about-heritage-visual {
        position: static;
        margin-bottom: 40px;
    }

    .heritage-line {
        height: 80px;
    }

    .heritage-block {
        min-height: auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-heritage-section {
        padding: 60px 0;
    }

    .about-heritage-header {
        margin-bottom: 40px;
    }

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

    .about-heritage-visual {
        display: none;
    }

    .heritage-text-blocks {
        gap: 30px;
    }

    .heritage-block {
        padding: 25px;
        position: relative;
    }

    .heritage-block h4 {
        font-size: 20px;
        color: #4DA3FF;
        margin-bottom: 12px;
    }

    .heritage-block p {
        font-size: 16px;
    }

    .heritage-block::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(180deg, #4DA3FF, rgba(77, 163, 255, 0.3));
        border-radius: 0 0 0 12px;
    }
}

/* Petit mobile */
@media (max-width: 576px) {
    .about-heritage-section {
        padding: 50px 0;
    }

    .heritage-block {
        padding: 20px;
    }

    .heritage-block h4 {
        font-size: 18px;
    }

    .heritage-block p {
        font-size: 15px;
    }
}


/* === Section Engagements === */
.about-commitment-section {
    background: #f5f8fa;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Motif de fond */
.about-commitment-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(77, 163, 255, 0.15) 2.5px, transparent 2.5px);
    background-size: 35px 35px;
    pointer-events: none;
    z-index: 0;
}

.about-commitment-section .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

/* En-tête */
.about-commitment-section .about-section-header {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-commitment-section .about-section-title {
    color: #1a2844;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-commitment-section .about-section-subtitle {
    color: #4a5568;
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Grid 2x2 en desktop avec marges pour les cercles */
.commitment-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-top: 50px;
    padding-left: 60px; 
}

/* Card individuelle avec position relative pour le numéro */
.commitment-card {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #ffffff;
    border: 2px solid rgba(77, 163, 255, 0.15);
    border-radius: 20px;
    padding: 40px 35px 40px 70px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
}

.commitment-card:hover {
    background: #ffffff;
    border-color: #4DA3FF;
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(77, 163, 255, 0.15);
}

/* Numéro À CHEVAL sur la bordure gauche */
.commitment-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #4DA3FF;
    line-height: 1;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3; /* Au-dessus de tout */
}

/* Cercle blanc de fond */
.commitment-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 50%;
    z-index: -2;
    box-shadow: 0 0 0 5px #f5f8fa; /* Halo couleur du fond */
}

/* Cercle décoratif coloré */
.commitment-number::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: linear-gradient(135deg, rgba(77, 163, 255, 0.15), rgba(77, 163, 255, 0.08));
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
    border: 2px solid rgba(77, 163, 255, 0.2);
}

.commitment-card:hover .commitment-number::before {
    background: linear-gradient(135deg, rgba(77, 163, 255, 0.25), rgba(77, 163, 255, 0.15));
    transform: scale(1.05);
    border-color: rgba(77, 163, 255, 0.4);
}

/* Contenu texte */
.commitment-content {
    flex: 1;
}

.commitment-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a2844;
    margin-bottom: 12px;
    line-height: 1.3;
}

.commitment-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* === Responsive === */

/* Large desktop */
@media (min-width: 1400px) {
    .about-commitment-section .container {
        max-width: 1600px;
    }
    
    .commitment-cards {
        gap: 40px;
        padding-left: 70px;
    }
}

/* Tablette */
@media (max-width: 992px) {
    .about-commitment-section {
        padding: 80px 0;
    }
    
    .about-commitment-section .container {
        max-width: 100%;
    }

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

    .commitment-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-left: 50px;
    }

    .commitment-number {
        font-size: 2.2rem;
        width: 85px;
        height: 85px;
        left: -42px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-commitment-section {
        padding: 60px 0;
    }

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

    .about-commitment-section .about-section-subtitle {
        font-size: 1.1rem;
    }

    .commitment-cards {
        padding-left: 0;
        padding-top: 50px;
        gap: 70px;
    }

    .commitment-card {
        flex-direction: column;
        text-align: center;
        padding: 60px 25px 35px 25px;
        gap: 25px;
        position: relative;
        margin-top: 0;
    }

    .commitment-card:first-child {
        margin-top: 0;
    }

    .commitment-number {
        font-size: 2.5rem;
        width: 90px;
        height: 90px;
        position: absolute;
        left: 50%;
        top: -45px;
        transform: translateX(-50%);
    }

    .commitment-content h3 {
        font-size: 1.25rem;
    }

    .commitment-content p {
        font-size: 0.95rem;
    }
}

/* Petit mobile */
@media (max-width: 576px) {
    .about-commitment-section {
        padding: 50px 0;
    }

    .commitment-cards {
        padding-top: 45px;
        gap: 65px;
    }

    .commitment-card {
        padding: 55px 20px 30px 20px;
    }

    .commitment-number {
        font-size: 2.2rem;
        width: 80px;
        height: 80px;
        top: -40px;
    }

    .commitment-content h3 {
        font-size: 1.15rem;
    }

    .commitment-content p {
        font-size: 0.9rem;
    }
}


/* Section Équipe */
.about-team-section {
    background: linear-gradient(135deg, #1a2844 0%, #0a1628 100%);
    padding: 100px 0;
}

.about-team-section .about-section-header {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.about-team-section .about-label {
    display: inline-block;
    background: rgba(77, 163, 255, 0.15);
    color: #4DA3FF;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-team-section .about-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
}

.team-description {
    font-size: 1.35rem;
    color: #E8EEF6;
    line-height: 1.8;
    margin-bottom: 20px;
}

.team-contact-box {
    background: rgba(77, 163, 255, 0.1);
    border: 2px solid rgba(77, 163, 255, 0.25);
    border-radius: 16px;
    padding: 35px;
}

.team-contact-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.team-contact-box > p {
    color: #E8EEF6;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.team-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.contact-method div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-method strong {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-link {
    color: #4DA3FF;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #6AB8FF;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .about-team-section .row {
        gap: 40px;
    }
    
    .team-contact-box {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .about-team-section {
        padding: 60px 0;
    }
    
    .about-team-section .about-section-title {
        font-size: 1.8rem;
    }
    
    .team-description {
        font-size: 1rem;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .contact-link {
        font-size: 1.1rem;
    }
}

/* CTA Final */
.about-final-cta {
    background: #0F1621;
    padding: 80px 0;
}

.cta-box {
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(77, 163, 255, 0.03),
            rgba(77, 163, 255, 0.03) 10px,
            rgba(77, 163, 255, 0.08) 10px,
            rgba(77, 163, 255, 0.08) 20px
        ),
        linear-gradient(135deg, rgba(232, 238, 246, 0.12) 0%, rgba(232, 238, 246, 0.08) 100%);
    border: 1px solid rgba(77, 163, 255, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.2rem;
    color: #E8EEF6;
    margin-bottom: 40px;
}

.cta-search-wrapper {
    margin-top: 40px;
}

.cta-search-container {
    margin-bottom: 20px;
}

.search-input-group {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(77, 163, 255, 0.4);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.search-input-group:focus-within {
    border-color: #4DA3FF;
    box-shadow: 0 0 0 4px rgba(77, 163, 255, 0.2), 0 6px 25px rgba(0, 0, 0, 0.2);
}

.search-input-group.success {
    border-color: #4CAF50;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2), 0 6px 25px rgba(0, 0, 0, 0.2);
}

.search-input-group.error {
    border-color: #FF5252;
    box-shadow: 0 0 0 4px rgba(255, 82, 82, 0.2), 0 6px 25px rgba(0, 0, 0, 0.2);
}

.cta-domain-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 20px 24px;
    font-size: 1.1rem;
    color: #1A2844;
    outline: none;
    font-weight: 500;
}

.cta-domain-input::placeholder {
    color: #8896A8;
}

.btn-cta-search {
    background: #4DA3FF;
    border: none;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0C0F14;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    position: relative;
}

.btn-cta-search:hover {
    background: #6AB8FF;
}

.btn-cta-search:active {
    transform: scale(0.98);
}

.btn-cta-search:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

/* Loader */
.btn-cta-search .spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(12, 15, 20, 0.3);
    border-top-color: #0C0F14;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-cta-search.loading .spinner {
    display: block;
}

.btn-cta-search.loading .btn-text {
    opacity: 0.7;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.cta-search-result {
    margin-top: 24px;
    padding: 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(77, 163, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-search-result.available {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.4);
}

.cta-search-result.unavailable {
    background: rgba(255, 152, 0, 0.15);
    border-color: rgba(255, 152, 0, 0.4);
}

.result-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.result-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.cta-search-result.available .result-icon {
    color: #4CAF50;
}

.cta-search-result.unavailable .result-icon {
    color: #FF9800;
}

.result-message {
    font-size: 1.05rem;
    font-weight: 600;
    color: #E8EEF6;
}

.btn-add-to-cart {
    width: 100%;
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    border: none;
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.3);
}

.btn-add-to-cart:active {
    transform: translateY(0);
}

.cta-help-text {
    text-align: center;
    color: #B8C5D6;
    font-size: 0.95rem;
    margin: 0;
}

.cta-link {
    color: #4DA3FF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #6AB8FF;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-box {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .search-input-group {
        flex-direction: column;
    }

    .cta-domain-input {
        border-bottom: 1px solid rgba(77, 163, 255, 0.2);
        padding: 18px 20px;
    }

    .btn-cta-search {
        justify-content: center;
        padding: 18px 30px;
    }
}
