html {
  scroll-behavior: smooth;
}

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

body {
    background: #243143;
    color: #ffffff;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: white;
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: float 20s infinite ease-in-out;
}

.animated-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 1.5rem 5rem;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom : 3rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

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

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce2 2s infinite;
}

@keyframes bounce2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-section .title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero-section .subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-section .subtitle .separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.steps-container {
    /* padding: 3rem 0 2rem; */
    /* padding-bottom: 2rem; */
}


.step-card {
    background: #243143;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.1) 0%, rgba(52, 152, 219, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #0ef;
    box-shadow: 0 20px 60px #0ef;
}

.step-card:hover::before {
    opacity: 1;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(26, 188, 156, 0.4);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #667eea;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.step-icon {
    font-size: 2rem;
    color: #667eea;
    margin-left: auto;
}

.step-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.step-image {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.step-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border: 2px solid #0ef;
    transition: transform 0.3s ease;
}

.step-card:hover .step-image img {
    transform: scale(1.05);
}

.feature-badge {
    display: inline-block;
    background: rgba(26, 188, 156, 0.2);
    border: 1px solid #0ef;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #667eea;
    margin-top: 0.5rem;
    font-weight: 600;
}



/* Footer Contact Section */
.footer-contact {
    background: #243143;
    padding: 4rem 1.5rem 2rem;
    /* margin-top: 3rem; */
    position: relative;
    overflow: hidden;
}

.footer-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ef, #243143, #0ef);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-info {
    color: #fff;
}

.footer-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0ef;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 238, 255, 0.3);
}

.footer-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 238, 255, 0.1);
    border: 2px solid #0ef;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.contact-email:hover {
    background: rgba(0, 238, 255, 0.2);
    transform: translateX(10px);
    box-shadow: 0 0 30px rgba(0, 238, 255, 0.3);
}

.contact-email i {
    font-size: 1.5rem;
    color: #0ef;
}

.contact-email a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(0, 238, 255, 0.1);
    border: 2px solid #0ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ef;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0ef;
    color: #243143;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 238, 255, 0.4);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 238, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.contact-form-wrapper h4 {
    font-size: 1.5rem;
    color: #0ef;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(0, 238, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0ef;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(0, 238, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #0ef, #00c8cc);
    border: none;
    border-radius: 10px;
    color: #243143;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 238, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(0, 238, 255, 0.1);
    margin-top: 3rem;
}

/* Mobile Responsive for Footer */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info h3 {
        font-size: 1.6rem;
    }

    .contact-email {
        flex-direction: column;
        text-align: center;
    }

    .contact-email:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .footer-contact {
        padding: 3rem 1rem 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .footer-info h3 {
        font-size: 1.4rem;
    }

    .footer-info p {
        font-size: 1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem 4rem;
    }

    .hero-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero-section .title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-section .subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }



    .step-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 20px;
    }

    .step-header {
        gap: 0.8rem;
    }

    .step-number {
        min-width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.2rem;
        flex: 1 1 100%;
    }

    .step-icon {
        font-size: 1.5rem;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

    .step-content {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .step-image img {
        border-radius: 15px;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-section .title {
        font-size: 1.5rem;
    }

    .hero-section .subtitle {
        font-size: 0.9rem;
    }

    .step-card {
        padding: 1.2rem;
    }

    .step-number {
        min-width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step-title {
        font-size: 1.1rem;
    }
}

.fade-item {
    opacity: 0;
    /* invisible au départ */
}

.animate__animated {
    opacity: 1;
}

/*   PRICE   */


:root {
    --brand-dark: #243143;
    --brand-accent: #00eeff;
    /* #0ef */
    --brand-white: #ffffff;
}

/* Card container centré */
.price-card-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    /* background: linear-gradient(180deg, var(--brand-white) 0%, #f5f8fb 100%); */
}

/* Style personnalisé de la card */
.price-card {
    width: 100%;
    max-width: 640px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(36, 49, 67, 0.12);
    border: 1px solid rgba(36, 49, 67, 0.06);
}

.price-card .card-header {
    background: linear-gradient(90deg, var(--brand-dark), rgba(36, 49, 67, 0.85));
    color: var(--brand-white);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.price-card .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-badge {
    background: linear-gradient(90deg, var(--brand-accent), #55f7ff);
    color: var(--brand-dark);
    font-weight: 700;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0, 238, 255, 0.14);
}

.price-card .card-content {
    padding: 1.6rem;
    background: var(--brand-white);
}

.price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.per-week {
    font-size: 0.95rem;
    color: #5a6b7b;
    font-weight: 600;
}

.small-asterisk {
    font-size: 0.7rem;
    color: #8b98a6;
    vertical-align: super;
    margin-left: 0.15rem;
}

.muted-note {
    font-size: 0.82rem;
    color: #6c7a88;
    margin-top: 0.9rem;
}

.footnote {
    font-size: 0.78rem;
    color: #475662;
    margin-top: 1.25rem;
    border-top: 1px dashed rgba(36, 49, 67, 0.06);
    padding-top: 0.8rem;
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.footnote .asterisk-mark {
    color: var(--brand-dark);
    font-weight: 700;
}

/* CTA */
.btn-subscribe {
    background: linear-gradient(90deg, var(--brand-dark), #2b3b50);
    color: var(--brand-white);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(36, 49, 67, 0.12);
}

/* Responsive tweak */
@media (max-width:420px) {
    .price {
        font-size: 1.9rem;
    }
}


/* -------------------------------------- Limited Offer Section ------------------------------------ */


.offer-section {
    padding: 3rem 1rem;
}

.offer-card {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 188, 156, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.offer-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.decoration-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 50px;
    right: 50px;
    animation: rotate 20s linear infinite;
}

.decoration-circle:nth-child(2) {
    width: 250px;
    height: 250px;
    top: 25px;
    right: 25px;
    animation: rotate 15s linear infinite reverse;
}

.decoration-circle:nth-child(3) {
    width: 300px;
    height: 300px;
    top: 0;
    right: 0;
    animation: rotate 25s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #16a085;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.offer-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.offer-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.offer-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.offer-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.offer-feature i {
    font-size: 1.5rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 50%;
}

.offer-cta {
    background: #fff;
    color: #16a085;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.offer-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f8f8f8;
}

.offer-cta i {
    transition: transform 0.3s ease;
}

.offer-cta:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .offer-section {
        padding: 2rem 1rem;
    }

    .offer-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .offer-title {
        font-size: 1.6rem;
    }

    .offer-description {
        font-size: 1.05rem;
    }

    .offer-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .offer-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .offer-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .offer-card {
        padding: 1.5rem 1.2rem;
    }

    .offer-title {
        font-size: 1.4rem;
    }

    .offer-description {
        font-size: 1rem;
    }

    .offer-feature {
        font-size: 1rem;
    }
}