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

body {
    font-family: 'Poppins', sans-serif !important;
    color: #000;
    overflow-x: hidden;
    background: #fff;
}

* {
    font-family: 'Poppins', sans-serif !important;
}

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

/* ===== NAVBAR ===== */
.navbar {
    background: linear-gradient(90deg, #72dcfc 0%, #d8f5cf 100%);
    padding: 1rem 4rem;
    width: 100%;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    height: 42px;
    width: auto;
    display: block;
}

.logo-text {
    height: 32px;
    width: auto;
    display: block;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    padding: 0.5rem 1.25rem;
    color: #000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.btn-login {
    padding: 0.5rem 1.25rem;
    color: #000;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
}

.btn-join {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: #6ad8fc;
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 216, 252, 0.4);
}

/* ===== HERO ===== */
.hero {
    background:
        radial-gradient(circle at top right, #ffffff 0%, transparent 40%),
        linear-gradient(180deg, #caf8ff 0%, #e8f9ff 100%);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-confetti {
    position: absolute;
    top: 60%;
    right: 10%;
    width: 50%;
    height: 80%;
    transform: translateY(-50%);
    pointer-events: none;
    background-image: url('assetspart2/2 5.png');
    background-size: 75%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 0;
}

.hero-grid {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    z-index: 2;
    padding-bottom: 0;
}

.hero-left {
    flex: 1;
    padding-top: 40px;
    min-width: 600px;
    position: relative;
    z-index: 4;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 32px;
    color: #000;
}

.hero-buttons {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-hero {
    background: linear-gradient(90deg, #fae8a4 0%, #ffffff 100%);
    border: none;
    padding: 16px 50px;
    border-radius: 35px;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    color: #000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hero-link {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    text-decoration: underline;
    transition: opacity 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.hero-link:hover {
    opacity: 0.7;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    z-index: 0;
}

.hero-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(0deg, #ffffff 0%, #ffffff 15%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-img {
    width: 160%;
    max-width: 950px;
    height: auto;
    position: relative;
    z-index: 0;
}

.hero-fade-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200px;
    background: linear-gradient(0deg, #ffffff 0%, #ffffff 20%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ===== SOLUTION SECTION ===== */
.solution {
    background: #ffffff;
    padding: 80px 0 0px;
    position: relative;
}

.solution-wave-wrapper {
    position: relative;
    width: 100%;
    margin-top: 80px;
    display: block;
}

.solution-wave-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.85) 100%);
    pointer-events: none;
    z-index: 10;
}

.solution-wave {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.solution-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 50px;
    color: #000;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 60px;
}

.solution-heading em {
    font-style: italic;
    font-weight: 500;
}

.solution-heading strong {
    font-weight: 700;
}

.solution-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 2400px;
    margin: 0 auto;
    padding: 0 80px;
    margin-left: auto;
    margin-right: -100px;
}

.solution-left {
    flex: 3;
    display: flex;
    justify-content: center;
    margin-left: -200px;
}

.solution-img {
    width: 130%;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.solution-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    padding-left: 20px;
}

.bubble-container {
    position: relative;
    width: 100%;
    max-width: 960px;
}

.bubble-container.bubble-bottom {
    max-width: 1100px;
}

.bubble-bg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(106, 216, 252, 0.25));
}

.bubble-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.35;
    color: #000;
    margin: 0;
    text-align: center;
    width: 75%;
}

.bubble-top .bubble-text {
    left: 48%;
}

.bubble-character {
    position: absolute;
    width: 150px;
    height: 150px;
    object-fit: contain;
    z-index: 5;
}

.character-top-left {
    top: -25px;
    left: -40px;
}

.character-bottom-right {
    bottom: 5px;
    right: -40px;
}

/* ===== HOW IT WORKS ===== */
.how-works {
    background: linear-gradient(90deg, #d8f5cf 0%, #dff7d9 20%, #e6f9e3 40%, #ecfbed 60%, #f2fcf1 80%, #f8fdf7 100%);
    padding: 90px 0 110px;
    position: relative;
    overflow: hidden;
}

.works-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 6000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.works-left {
    flex: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.works-heading {
    text-align: center;
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 60px;
    line-height: 1.3;
    color: #000;
    position: relative;
    z-index: 1;
}

.works-heading .highlight {
    font-weight: 700;
    padding: 6px 16px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.works-heading .highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -4px;
    right: -4px;
    bottom: -2px;
    background: #fae8a4;
    transform: rotate(-2deg);
    border-radius: 16px;
    z-index: -1;
}

.video-container {
    width: 100%;
    max-width: 4000px;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.webinar-text {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #000;
    text-align: center;
}

.btn-reserve {
    display: inline-block;
    background: linear-gradient(90deg, #ffb3d9 0%, #ffffff 100%);
    color: #000;
    padding: 22px 60px;
    border-radius: 35px;
    font-size: 24px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 179, 217, 0.5);
}

.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 179, 217, 0.4);
}

.works-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.works-bubble {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.works-bubble-1 {
    align-self: flex-start;
}

.works-bubble-2 {
    align-self: flex-end;
}

/* ===== FLOW SECTION ===== */
.flow-section {
    background: linear-gradient(90deg, #d8f5cf 0%, #dff7d9 20%, #e6f9e3 40%, #ecfbed 60%, #f2fcf1 80%, #f8fdf7 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 800px;
}

.flow-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.flow-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1600px;
    height: auto;
    opacity: 1;
}

.flow-container-custom {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    height: 700px;
}

.flow-item {
    position: absolute;
}

/* Step 1: Top Left - higher and to the left a lot */
.flow-item-1 {
    top: -40px;
    left: 20px;
    max-width: 380px;
}

/* Step 2: Center Left - down and to the right a lot */
.flow-item-2 {
    top: 420px;
    left: 250px;
    max-width: 380px;
}

.flow-item-2 .step-badge {
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
    margin-top: 15px;
}

/* Step 3a: Top Right - down and to the left a lot */
.flow-item-3a {
    top: 100px;
    right: 250px;
    max-width: 380px;
}

/* Step 4: Bottom Right - down and to the right a lot */
.flow-item-3b {
    top: 480px;
    right: -40px;
    max-width: 380px;
}

.flow-item-3b .step-badge {
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
    margin-top: 15px;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: #72dcfc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 500;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(114, 220, 252, 0.5);
}

.step-label {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
}

.step-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .flow-container-custom {
        padding: 0 40px;
    }

    .flow-item-1 {
        left: 40px;
        max-width: 320px;
    }

    .flow-item-2 {
        left: 80px;
        max-width: 320px;
    }

    .flow-item-3a {
        right: 80px;
        max-width: 320px;
    }

    .flow-item-3b {
        right: 40px;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .flow-section {
        padding: 60px 0 80px;
        min-height: auto;
    }

    .flow-container-custom {
        position: relative;
        height: auto;
        padding: 0 20px;
    }

    .flow-item {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        max-width: 100% !important;
        margin-bottom: 40px;
    }

    .flow-item-1,
    .flow-item-2,
    .flow-item-3a,
    .flow-item-3b {
        position: relative;
    }

    .step-badge {
        gap: 12px;
        margin-bottom: 12px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .step-label {
        font-size: 16px;
    }

    .flow-decoration {
        opacity: 0.5;
    }

    .flow-item-2 .step-badge,
    .flow-item-3b .step-badge {
        flex-direction: row;
        margin-bottom: 12px;
        margin-top: 0;
    }
}

/* ===== YELLOW SECTION ===== */
.yellow-content {
    background: #fae8a4;
    padding: 80px 0;
}

.yellow-img {
    width: 100%;
    height: auto;
}

/* ===== CHARACTER SECTION ===== */
.character {
    background: #fff;
    padding: 90px 0;
}

.character-content {
    text-align: center;
}

.character-img {
    width: 110px;
    height: auto;
    margin: 0 auto 40px;
}

.bubbles {
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-bottom: 35px;
}

.bubbles img {
    width: 30%;
    max-width: 320px;
    height: auto;
}

.character-caption {
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
}

/* ===== READY SECTION ===== */
.ready {
    background: linear-gradient(180deg, #caf8ff 0%, #fff 100%);
    padding: 90px 0;
}

.ready-content {
    text-align: center;
}

.ready h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
}

.ready-phone {
    max-width: 350px;
    width: 100%;
    height: auto;
    transform: rotate(-4deg);
    filter: drop-shadow(0 20px 35px rgba(0,0,0,0.12));
}

/* ===== PRICING ===== */
.pricing {
    background: #fff;
    padding: 90px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 55px;
}

.pricing-header h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-header p {
    font-size: 16px;
    color: #666;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.price-card {
    background: #fff;
    border: 3px solid;
    border-radius: 18px;
    padding: 26px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 580px;
}

.price-card:nth-child(1) {
    border-color: #caf8ff;
}

.price-card:nth-child(2) {
    border-color: #fae8a4;
}

.price-card:nth-child(3) {
    border-color: #d8f5cf;
}

.price-card:nth-child(4) {
    border-color: #ffc7d6;
}

.price-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 13px;
}

.price {
    margin-bottom: 16px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.price-month {
    font-size: 19px;
    font-weight: 600;
    color: #666;
}

.price-divider {
    border: none;
    border-top: 2px solid #000;
    margin: 20px 0;
}

.price-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.55;
}

.price-features {
    list-style: none;
    margin-bottom: auto;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.price-features img {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-price {
    width: 100%;
    padding: 13px 20px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 18px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #000;
    color: #000;
}

.btn-cyan {
    background: #72dcfc;
    border: none;
    color: #000;
}

.price-popular {
    transform: scale(1.04);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #fffc9e 0%, #72dcfc 100%);
    padding: 6px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

/* ===== WHO SECTION ===== */
.who {
    background: linear-gradient(180deg, #d8f5cf 0%, #fff 100%);
    padding: 90px 0;
}

.who h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
}

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

.who-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.who-item img {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.who-item span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

/* ===== CTA BLUE ===== */
.cta-blue {
    background: linear-gradient(180deg, #72dcfc 0%, #caf8ff 100%);
    padding: 90px 0;
}

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

.cta-blue h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 38px;
    line-height: 1.2;
}

.btn-cta-dark {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 38px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* ===== FAQ ===== */
.faq {
    background: #fff;
    padding: 0px 0 90px;
    position: relative;
}

.faq-wave-wrapper {
    position: relative;
    width: 100%;
    transform: scaleY(-1);
}

.faq-wave-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.85) 100%);
    pointer-events: none;
    z-index: 10;
}

.faq-wave {
    width: 100%;
    height: auto;
    display: block;
}

.faq h2 {
    text-align: center;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 50px;
    padding-top: 60px;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-item.active {
    border-color: #72dcfc;
}

.faq-q {
    width: 100%;
    background: #fff;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}

.faq-plus {
    font-size: 24px;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.2s;
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-a {
    max-height: 300px;
}

.faq-a p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.65;
}

/* ===== FOOTER ===== */
.footer {
    background: #f6f6f6;
    padding: 50px 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
}

.footer h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer p {
    font-size: 13px;
    color: #888;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}

.footer-links a {
    text-decoration: none;
    color: #888;
    font-size: 13px;
    font-weight: 500;
}

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

    .price-popular {
        transform: scale(1);
    }
}

@media (max-width: 900px) {
    .hero-grid,
    .solution-grid {
        flex-direction: column;
        gap: 50px;
    }

    .hero-left h1 {
        font-size: 42px;
    }

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

    .phones-flex {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .phones-flex img {
        width: 65%;
    }
}

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

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .solution-right h2,
    .how-works h2,
    .ready h2,
    .pricing-header h2,
    .who h2,
    .cta-blue h2,
    .faq h2 {
        font-size: 34px;
    }

    .flow-bubble {
        width: 35%;
    }
}

@media (max-width: 480px) {
    .nav-text {
        display: none;
    }

    .hero-left h1 {
        font-size: 28px;
    }

    .bubbles {
        flex-direction: column;
        align-items: center;
    }

    .bubbles img {
        width: 70%;
    }
}

/* ===== READY SECTION ===== */
.ready-section {
    background: linear-gradient(90deg, #d8f5cf 0%, #dff7d9 20%, #e6f9e3 40%, #ecfbed 60%, #f2fcf1 80%, #f8fdf7 100%);
    padding: 0 0 60px;
    margin-top: -100px;
    position: relative;
    overflow: hidden;
}

.ready-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0.95) 100%);
    pointer-events: none;
    z-index: 0;
}

.ready-container {
    max-width: 2400px;
    margin: 0 auto;
    margin-left: 200px;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 0px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.ready-left {
    flex: 2;
    padding-left: 80px;
}

.ready-heading {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #2c5f8d;
    margin-bottom: 40px;
}

.ready-heading strong {
    font-weight: 700;
}

.ready-bubbles {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.bubble-wrapper {
    position: relative;
    width: 100%;
}

.bubble-wrapper:first-child {
    max-width: 500px;
    margin-left: -20px;
}

.bubble-wrapper:last-child {
    max-width: 600px;
    margin-left: -20px;
    margin-top: -20px;
}

.ready-bubble-img {
    width: 100%;
    height: auto;
    display: block;
}

.bubble-memoji {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border: 4px solid #a8a8a8;
    border-radius: 50%;
    background: transparent;
    z-index: 2;
}

.ready-right {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.ready-phone {
    width: 100%;
    max-width: 900px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    margin-top: 40px;
    margin-left: -450px;
}

.ready-features {
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.ready-feature {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 80px;
    padding: 45px 50px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.feature-emoji-img {
    width: 55px;
    height: 55px;
    position: absolute;
    top: -27px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: none;
}

.ready-feature p {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .ready-container {
        flex-direction: column;
        gap: 50px;
    }

    .ready-left {
        padding-left: 0;
    }

    .ready-heading {
        font-size: 40px;
        text-align: center;
    }

    .ready-bubbles {
        align-items: center;
    }

    .ready-phone {
        max-width: 600px;
    }

    .bubble-wrapper:first-child,
    .bubble-wrapper:last-child {
        margin-left: 0;
    }

    .bubble-memoji {
        width: 60px;
        height: 60px;
        border: 3px solid #a8a8a8;
    }
}

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

    .ready-container {
        padding: 0 30px;
    }

    .ready-heading {
        font-size: 32px;
    }

    .bubble-wrapper:first-child,
    .bubble-wrapper:last-child {
        max-width: 100%;
    }

    .bubble-memoji {
        width: 50px;
        height: 50px;
        top: -30px;
        border: 2px solid #a8a8a8;
    }

    .ready-features {
        padding: 0 30px;
        gap: 15px;
    }

    .ready-feature {
        padding: 45px 25px 15px;
        border: 2px solid #d0d0d0;
    }

    .feature-emoji-img {
        width: 36px;
        height: 36px;
        top: -18px;
    }

    .ready-feature p {
        font-size: 13px;
    }
}

/* ===== WHO IT WORKS FOR SECTION ===== */
.who-section {
    background: linear-gradient(90deg, #d8f5cf 0%, #dff7d9 20%, #e6f9e3 40%, #ecfbed 60%, #f2fcf1 80%, #f8fdf7 100%);
    padding: 80px 0 100px;
    position: relative;
}

.who-heading {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 60px;
    color: #000;
    position: relative;
    z-index: 2;
}

.highlight-yellow {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-yellow::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -8px;
    right: -8px;
    bottom: -6px;
    background: #fae8a4;
    transform: rotate(-2deg);
    border-radius: 20px;
    z-index: -1;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
    box-shadow: none;
}

.who-item {
    background: transparent;
    text-align: left;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    box-shadow: none;
    border: none;
}

.who-icon-circle {
    background: #2c5f8d;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.who-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.who-text {
    flex: 1;
    box-shadow: none;
    border: none;
    outline: none;
}

.who-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin: 0 0 10px 0;
    text-shadow: none;
}

.who-item p {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin: 0;
    text-shadow: none;
}

.who-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.who-logo {
    width: 400px;
    height: auto;
    margin-bottom: 10px;
}

.who-cta-text {
    font-size: 36px;
    font-weight: 500;
    color: #000;
    margin: 0;
    white-space: nowrap;
}

.who-cta-text strong {
    font-weight: 700;
}

.btn-reserve-who {
    background: linear-gradient(90deg, #ffb3d9 0%, #ffffff 100%);
    padding: 20px 55px;
    font-size: 22px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(255, 179, 217, 0.4);
}

.btn-reserve-who:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 179, 217, 0.6);
}

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

    .who-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

    .who-item {
        flex-direction: row;
    }

    .who-icon-circle {
        width: 32px;
        height: 32px;
    }

    .who-icon {
        width: 18px;
        height: 18px;
    }

    .who-logo {
        width: 280px;
    }

    .who-cta-text {
        font-size: 24px;
    }

    .btn-reserve-who {
        padding: 16px 40px;
        font-size: 18px;
    }
}

/* ===== PRICING SECTION (from index.html) ===== */
.pricing-section {
    background: #fff;
    padding: 6rem 5rem 10rem;
    position: relative;
    overflow: visible;
}

.pricing-container {
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.pricing-header {
    text-align: center;
    margin-bottom: 5rem;
}

.pricing-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.pricing-header p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(280px, 340px));
    gap: 1.75rem;
    margin-bottom: 6rem;
    position: relative;
    justify-content: center;
}

.pricing-card {
    background: #fff;
    border: 3px solid #caf8ff;
    border-radius: 20px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 700px;
    transition: all 0.3s ease;
}

.card-kickstart {
    border-color: #caf8ff;
    box-shadow: 0px 6px 30px 0px rgba(114, 220, 252, 0.5);
}

.card-kickstart:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 40px 0px rgba(114, 220, 252, 0.65);
}

.card-build {
    border-color: #fae8a4;
    transform: scale(1.02);
    box-shadow: 0px 6px 30px 0px rgba(250, 232, 164, 0.5);
}

.card-build:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0px 8px 40px 0px rgba(250, 232, 164, 0.65);
}

.card-pro {
    border-color: #d8f5cf;
    box-shadow: 0px 6px 30px 0px rgba(126, 211, 33, 0.35);
}

.card-pro:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 40px 0px rgba(126, 211, 33, 0.5);
}

.card-elite {
    border-color: #ffc7d6;
    box-shadow: 0px 6px 30px 0px rgba(255, 105, 180, 0.4);
}

.card-elite:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 40px 0px rgba(255, 105, 180, 0.55);
}

.popular-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #fffc9e 0%, #72dcfc 100%);
    padding: 0.7rem 2rem;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.85rem;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.emoji {
    width: 45px;
    height: 45px;
    display: inline-block;
    flex-shrink: 0;
}

.price {
    margin-bottom: 1.5rem;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.price .period {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
}

.divider {
    height: 2px;
    background: #000;
    margin: 1.35rem 0;
}

.card-description {
    flex: 1;
}

.description-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.55;
    margin-bottom: 1.6rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    margin-bottom: 0.85rem;
    font-size: 1rem;
    line-height: 1.5;
}

.check-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
    display: block;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 1rem 1.75rem;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.8rem;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2.5px solid #000;
    color: #000;
}

.btn-outline:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.btn-primary {
    background: #72dcfc;
    border: none;
    color: #000;
}

.btn-primary:hover {
    background: #5cc9ed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(114, 220, 252, 0.4);
}

.wave-decoration {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    max-width: 1800px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.65;
}

.wave-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== FOOTER (from index.html) ===== */
.footer {
    background: #fff;
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-logo-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
    opacity: 1;
    border: none;
    outline: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 100;
}

.footer-brand h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #000;
    text-decoration: underline;
}

/* ===== RESPONSIVE ADDITIONS FOR PRICING & FOOTER ===== */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .card-build {
        transform: scale(1);
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .footer {
        padding: 6rem 3rem 4rem;
        min-height: 400px;
    }

    .footer-background {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70%;
        height: 70%;
    }

    .footer-logo-bg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        opacity: 0.9;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 2rem 6rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pricing-card {
        min-height: auto;
    }

    .pricing-header {
        margin-bottom: 3rem;
    }

    .pricing-header h2 {
        font-size: 2.25rem;
    }

    .pricing-header p {
        font-size: 0.95rem;
    }

    .footer {
        padding: 4rem 2rem 3rem;
        min-height: auto;
    }

    .footer-background {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        height: 75%;
    }

    .footer-logo-bg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        opacity: 0.85;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }

    .footer-links {
        gap: 0.85rem;
        text-align: right;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 3rem 1.5rem 5rem;
    }

    .pricing-header h2 {
        font-size: 1.875rem;
    }

    .pricing-card {
        padding: 1.25rem;
    }

    .card-header h3 {
        font-size: 1rem;
    }

    .price .amount {
        font-size: 2.25rem;
    }

    .footer {
        padding: 3rem 1.5rem 2.5rem;
        min-height: auto;
    }

    .footer-background {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95%;
        height: 85%;
    }

    .footer-logo-bg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        opacity: 1;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 1.5rem;
    }

    .footer-links {
        text-align: right;
        font-size: 0.75rem;
    }

    .footer-brand h3 {
        font-size: 1rem;
    }

    .footer-brand p {
        font-size: 0.75rem;
    }
}

/* ===== ANIMATIONS & KEYFRAMES ===== */

/* Page Load Animation */
body {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

body.loaded {
    opacity: 1;
}

/* Image Loading Animation */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded,
img[src] {
    opacity: 1;
}

/* Keyframe Definitions */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

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

/* Hero Section Animations */
.hero-left {
    animation: slideInLeft 0.8s ease-out;
}

.hero-right {
    animation: slideInRight 0.8s ease-out;
}

.hero-img {
    animation: float 3s ease-in-out infinite;
}

/* Scroll-triggered animations */
.animate-on-scroll {
    animation: slideUp 0.6s ease-out;
}

.fade-in-scroll {
    animation: fadeIn 0.8s ease-out;
}

/* Flow Items Sequential Animation */
.flow-item {
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

.flow-item-1 {
    animation-delay: 0.1s;
}

.flow-item-2 {
    animation-delay: 0.3s;
}

.flow-item-3a {
    animation-delay: 0.5s;
}

.flow-item-3b {
    animation-delay: 0.7s;
}

/* Ready Section Feature Pills Animation */
.ready-feature {
    opacity: 0;
    animation: scaleIn 0.5s ease-out forwards;
}

.ready-feature:nth-child(1) {
    animation-delay: 0.2s;
}

.ready-feature:nth-child(2) {
    animation-delay: 0.3s;
}

.ready-feature:nth-child(3) {
    animation-delay: 0.4s;
}

.ready-feature:nth-child(4) {
    animation-delay: 0.5s;
}

.ready-feature:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Pricing Cards Sequential Animation */
.pricing-card {
    opacity: 0;
}

.pricing-card.animate-on-scroll {
    animation: slideUp 0.6s ease-out forwards;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Who Section Items Animation */
.who-item {
    opacity: 0;
}

.who-item.animate-on-scroll {
    animation: slideUp 0.6s ease-out forwards;
}

.who-item:nth-child(1) {
    animation-delay: 0.1s;
}

.who-item:nth-child(2) {
    animation-delay: 0.2s;
}

.who-item:nth-child(3) {
    animation-delay: 0.3s;
}

.who-item:nth-child(4) {
    animation-delay: 0.4s;
}

.who-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* FAQ Items Animation */
.faq-item {
    opacity: 0;
}

.faq-item.animate-on-scroll {
    animation: slideUp 0.5s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }
.faq-item:nth-child(5) { animation-delay: 0.25s; }
.faq-item:nth-child(6) { animation-delay: 0.3s; }
.faq-item:nth-child(7) { animation-delay: 0.35s; }
.faq-item:nth-child(8) { animation-delay: 0.4s; }
.faq-item:nth-child(9) { animation-delay: 0.45s; }
.faq-item:nth-child(10) { animation-delay: 0.5s; }

/* Button Hover Enhancements */
.btn-hero {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(114, 220, 252, 0.4);
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-reserve,
.btn-reserve-who {
    position: relative;
    overflow: hidden;
}

.btn-reserve::after,
.btn-reserve-who::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-reserve:hover::after,
.btn-reserve-who:hover::after {
    width: 400px;
    height: 400px;
}

/* Ripple Effect for Buttons */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    animation: ripple 0.6s ease-out;
}

/* Bubble Animations in Solution Section */
.bubble-container {
    transition: transform 0.3s ease;
}

.bubble-container:hover {
    transform: scale(1.05);
}

/* Step Badge Hover */
.step-badge {
    transition: all 0.3s ease;
}

.flow-item:hover .step-badge {
    transform: scale(1.05);
}

.step-number {
    transition: all 0.3s ease;
}

.flow-item:hover .step-number {
    transform: rotate(360deg);
    background: #5cc9ed;
}

/* Works Bubble Animations */
.works-bubble {
    transition: transform 0.3s ease;
}

.works-bubble:hover {
    transform: scale(1.05);
}

/* Icon Circle Pulse on Hover */
.who-icon-circle {
    transition: all 0.3s ease;
}

.who-item:hover .who-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

/* Navbar Scroll Effect */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

/* Footer Links Hover Animation */
.footer-links a {
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Smooth scrolling for whole page */
html {
    scroll-behavior: smooth;
}

/* Reduce animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
