/* ===========================
   GLOBAL RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F9FAFB;
    color: #1A1A1A;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.section-padding {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===========================
   NAVBAR STYLES
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #0B6E4F;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-menu {
    display: none;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #0B6E4F;
}

.desktop-cta {
    display: none;
}

.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.btn-demo {
    background-color: #25D366;
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 15px;
}

.btn-demo:hover {
    background-color: #1EBE5D;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: #1A1A1A;
    cursor: pointer;
    padding: 8px;
}

.hamburger-icon {
    display: inline-block;
}

.close-icon {
    display: none;
}

.close-icon.active {
    display: inline-block;
}

.hamburger-icon.hidden {
    display: none;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid #E5E7EB;
    background-color: #FFFFFF;
}

.mobile-menu.active {
    display: flex;
}

.nav-link-mobile {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #1A1A1A;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-link-mobile:hover {
    color: #0B6E4F;
}

.btn-mobile {
    width: 100%;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }

    .desktop-cta {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}

/* ===========================
   HERO SECTION STYLES
   =========================== */
.hero {
    padding: 128px 1rem 80px;
    background-color: #F9FAFB;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 0.6s ease-out;
}

.hero-headline {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.hero-subheadline {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #6B7280;
    margin: 1rem 0 1.5rem;
}

/* Pain Points */
.pain-points {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pain-point {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.check-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0B6E4F;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.pain-point span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #1A1A1A;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    background-color: #0B6E4F;
    color: #FFFFFF;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #095a40;
}

.btn-secondary {
    background-color: transparent;
    color: #0B6E4F;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background-color: rgba(11, 110, 79, 0.05);
}

.play-icon {
    font-size: 12px;
}

.trust-line {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #6B7280;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    margin: 2rem auto 0;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.phone-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 110, 79, 0.1), rgba(37, 211, 102, 0.1));
    border-radius: 40px;
    filter: blur(60px);
}

.phone-mockup {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 1.25rem;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: rotate(0deg);
}

.whatsapp-ui {
    background: linear-gradient(to bottom, #075E54, #128C7E);
    border-radius: 30px;
    padding: 1.5rem;
    aspect-ratio: 10/16;
}

/* WhatsApp Header */
.whatsapp-header {
    background-color: #075E54;
    border-radius: 24px 24px 0 0;
    padding: 1rem;
    margin-bottom: 1rem;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
}

.header-text {
    flex: 1;
}

.contact-name {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.status {
    color: #25D366;
    font-size: 12px;
    margin: 0;
}

/* Chat Messages */
.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.message {
    border-radius: 8px;
    padding: 0.75rem;
    max-width: 80%;
}

.message-customer {
    background-color: #FFFFFF;
    border-radius: 8px 8px 8px 0;
    align-self: flex-start;
}

.message-bot {
    background-color: #DCF8C6;
    border-radius: 8px 8px 0 8px;
    align-self: flex-end;
    margin-left: auto;
}

.message-text {
    font-size: 14px;
    color: #1F2937;
    margin: 0;
}

.message-price {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0.25rem 0;
}

.message-stock {
    font-size: 12px;
    color: #4B5563;
    margin: 0;
}

.message-total {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0.25rem 0 0;
}

.order-details {
    color: #374151;
    margin-top: 0.25rem;
}

.message-time {
    font-size: 11px;
    color: #6B7280;
    margin: 0.5rem 0 0;
    text-align: right;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content {
        text-align: left;
    }

    .hero-headline {
        font-size: 44px;
    }

    .pain-point {
        justify-content: flex-start;
    }

    .cta-buttons {
        justify-content: flex-start;
    }
}

/* ===========================
   SHARED SECTION HEADER
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #0B6E4F;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #1A1A1A;
    margin: 10px 0 1rem;
    line-height: 1.3;
}

.section-subtext {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 32px;
    }
}

/* ===========================
   PROBLEM SECTION STYLES
   =========================== */
.problems {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.problem-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    color: #0B6E4F;
    margin-bottom: 1rem;
}

.problem-icon svg {
    width: 28px;
    height: 28px;
}

.problem-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.problem-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
}

.emphasis-block {
    background-color: #0B6E4F;
    color: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-top: 40px;
}

.emphasis-block p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 639px) {
    .problem-card {
        padding: 16px;
        text-align: center;
    }

    .problem-icon {
        display: flex;
        justify-content: center;
    }
}

/* ===========================
   SOLUTION SECTION STYLES
   =========================== */
.solution {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 3rem;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-block {
    padding-left: 1rem;
    border-left: 3px solid #0B6E4F;
    transition: all 0.3s ease;
}

.feature-block:hover {
    transform: translateX(8px);
    border-left-color: #25D366;
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
}

.solution-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-container {
    position: relative;
    max-width: 350px;
    width: 100%;
}

.mockup-gradient {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(11, 110, 79, 0.08), rgba(37, 211, 102, 0.08));
    border-radius: 30px;
    filter: blur(40px);
    z-index: 0;
}

.mockup-phone {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 0.75rem;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.mockup-screen {
    background: linear-gradient(to bottom, #075E54, #128C7E);
    border-radius: 24px;
    padding: 1rem;
    min-height: 500px;
}

.mockup-header {
    background-color: #075E54;
    border-radius: 20px 20px 0 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mockup-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
}

.mockup-name {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.mockup-status {
    color: #25D366;
    font-size: 12px;
    margin: 0;
}

.mockup-chat {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-bubble {
    border-radius: 8px;
    padding: 0.75rem;
    max-width: 85%;
}

.bot-bubble {
    background-color: #DCF8C6;
    align-self: flex-end;
    border-radius: 8px 8px 0 8px;
}

.customer-bubble {
    background-color: #FFFFFF;
    align-self: flex-start;
    border-radius: 8px 8px 8px 0;
}

.bubble-text {
    font-size: 13px;
    color: #1F2937;
    margin: 0 0 0.25rem 0;
}

.bubble-time {
    font-size: 10px;
    color: #6B7280;
    text-align: right;
    margin: 0.5rem 0 0 0;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0.75rem 0;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 0.5rem;
    border-radius: 6px;
}

.product-name {
    font-size: 13px;
    color: #1F2937;
    margin: 0;
}

.product-price {
    font-size: 13px;
    font-weight: 600;
    color: #0B6E4F;
    margin: 0;
}

.order-summary {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 6px;
}

.summary-line {
    font-size: 13px;
    color: #1F2937;
    margin: 0 0 0.25rem 0;
}

.summary-total {
    font-size: 14px;
    font-weight: 600;
    color: #0B6E4F;
    margin: 0.5rem 0;
}

.checkout-btn {
    width: 100%;
    background-color: #0B6E4F;
    color: #FFFFFF;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.checkout-btn:hover {
    background-color: #095a40;
}

/* Flow Strip */
.flow-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0 2rem;
    padding: 1.5rem;
    background-color: #F9FAFB;
    border-radius: 12px;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.flow-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-color: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.flow-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #6B7280;
    margin: 0;
}

.flow-arrow {
    font-size: 20px;
    color: #0B6E4F;
    font-weight: 700;
}

.solution-emphasis {
    background-color: #F0FDF4;
    border: 1px solid #D1FAE5;
    color: #1A1A1A;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-top: 40px;
}

.solution-emphasis p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
    color: #0B6E4F;
}

@media (min-width: 1024px) {
    .solution-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .mockup-container {
        max-width: 400px;
    }
}

@media (max-width: 1023px) {
    .solution-visual {
        order: -1;
    }

    .flow-strip {
        gap: 0.5rem;
    }

    .flow-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .flow-arrow {
        font-size: 16px;
    }
}

/* ===========================
   DEMO SECTION STYLES
   =========================== */
.demo {
    padding: 80px 0;
    background-color: #F9FAFB;
}

.demo-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem auto;
    padding: 0.5rem;
    background-color: #E5E7EB;
    border-radius: 50px;
    max-width: 400px;
}

.toggle-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: transparent;
    color: #6B7280;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background-color: #0B6E4F;
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(11, 110, 79, 0.3);
}

.toggle-btn:hover:not(.active) {
    color: #0B6E4F;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 3rem;
}

.demo-video-block {
    display: block;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: #000000;
}

.video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background-color: #1A1A1A;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.video-thumbnail {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-content {
    text-align: center;
}

.thumbnail-icon {
    font-size: 64px;
    margin-bottom: 1rem;
}

.thumbnail-text {
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: #25D366;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.play-button svg {
    margin-left: 4px;
}

.video-caption {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6B7280;
    text-align: center;
    margin-top: 1rem;
}

.demo-simulator-block {
    display: none;
}

.simulator-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.simulator-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.simulator-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6B7280;
}

.simulator-container {
    display: flex;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(11, 110, 79, 0.05), rgba(37, 211, 102, 0.05));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.simulator-phone {
    background-color: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    max-width: 380px;
    width: 100%;
}

.simulator-screen {
    background: linear-gradient(to bottom, #075E54, #128C7E);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 600px;
}

.simulator-header-bar {
    background-color: #075E54;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sim-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
}

.sim-name {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.sim-status {
    color: #25D366;
    font-size: 11px;
    margin: 0;
}

.simulator-chat {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sim-message {
    border-radius: 8px;
    padding: 0.75rem;
    max-width: 80%;
}

.sim-bot {
    background-color: #DCF8C6;
    align-self: flex-end;
    border-radius: 8px 8px 0 8px;
}

.sim-customer {
    background-color: #FFFFFF;
    align-self: flex-start;
    border-radius: 8px 8px 8px 0;
}

.sim-text {
    font-size: 13px;
    color: #1F2937;
    margin: 0.25rem 0;
    line-height: 1.4;
}

.sim-time {
    font-size: 10px;
    color: #6B7280;
    text-align: right;
    margin-top: 0.5rem;
}

.sim-menu {
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sim-menu-item {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 13px;
    color: #1F2937;
}

.sim-order-box {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 0.75rem;
    border-radius: 6px;
}

.sim-total {
    font-size: 14px;
    font-weight: 700;
    color: #0B6E4F;
    margin: 0.5rem 0;
}

.sim-checkout {
    width: 100%;
    background-color: #0B6E4F;
    color: #FFFFFF;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background-color 0.2s;
}

.sim-checkout:hover {
    background-color: #095a40;
}

.simulator-input {
    background-color: #F0F2F5;
    padding: 0.75rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.simulator-input input {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 20px;
    background-color: #FFFFFF;
    font-size: 14px;
    outline: none;
}

.sim-send {
    background-color: #25D366;
    color: #FFFFFF;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background-color 0.2s;
}

.sim-send:hover {
    background-color: #1fb854;
}

.quick-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0 2rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.benefit-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1A1A1A;
    margin: 0;
}

.demo-social-proof {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0B6E4F;
    text-align: center;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .quick-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 639px) {
    .play-button {
        width: 60px;
        height: 60px;
    }

    .thumbnail-icon {
        font-size: 48px;
    }

    .thumbnail-text {
        font-size: 16px;
    }

    .simulator-screen {
        height: 500px;
    }
}

/* ===========================
   FEATURES SECTION STYLES
   =========================== */
.features {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

/* Feature Card */


.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
    border-color: #D1FAE5;
}

.feature-card-icon {
    width: 44px;
    height: 44px;
    background-color: #F0FDF4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B6E4F;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    background-color: #0B6E4F;
    color: #FFFFFF;
}



/* Feature Highlight Strip */
.feature-highlight-strip {
    background-color: #0B6E4F;
    color: #FFFFFF;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    margin-top: 40px;
}

.feature-highlight-strip p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    margin: 0;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 639px) {
    .feature-card {
        padding: 16px;
    }

    .feature-highlight-strip p {
        font-size: 16px;
    }
}

/* ===========================
   WHO IT'S FOR SECTION
   =========================== */
.who-its-for {
    padding: 80px 0;
    background-color: #F9FAFB;
}

/* Cards Grid */
.wif-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

/* Individual Card */
.wif-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.wif-card.wif-animate {
    animation: wifFadeIn 0.5s ease forwards;
}

@keyframes wifFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wif-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(11, 110, 79, 0.1);
    border-color: #D1FAE5;
}

/* Card top row: icon + tag */
.wif-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

/* Icon wrapper */
.wif-icon-wrap {
    width: 48px;
    height: 48px;
    background-color: #F0FDF4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B6E4F;
    flex-shrink: 0;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.wif-card:hover .wif-icon-wrap {
    background-color: #0B6E4F;
    color: #FFFFFF;
}

/* Industry tag pill */
.wif-tag {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #0B6E4F;
    background-color: #ECFDF5;
    border: 1px solid #A7F3D0;
    border-radius: 50px;
    padding: 3px 10px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Card heading */
.wif-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1A1A1A;
    line-height: 1.3;
    margin: 0;
}

/* Card body text */
.wif-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #6B7280;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* Feature badges row */
.wif-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.wif-badge {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    background-color: #F3F4F6;
    border-radius: 6px;
    padding: 4px 10px;
}

/* Bottom CTA Strip */
.wif-cta-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #0B6E4F 0%, #0d8a64 100%);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
}

.wif-cta-text {
    color: #FFFFFF;
}

.wif-cta-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #FFFFFF;
    margin: 0 0 6px;
}

.wif-cta-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.wif-cta-btn {
    background-color: #25D366;
    color: #FFFFFF;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

.wif-cta-btn:hover {
    background-color: #1EBE5D;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Responsive */
@media (min-width: 640px) {
    .wif-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .wif-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .wif-cta-strip {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (max-width: 639px) {
    .wif-card {
        padding: 20px;
    }

    .wif-cta-heading {
        font-size: 18px;
    }
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing {
    padding: 96px 0;
    background-color: #F9FAFB;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
    align-items: start;
}

/* Base card */
.pricing-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(11, 110, 79, 0.08);
}

/* Featured card */
.pricing-card--featured {
    border: 2px solid #0B6E4F;
    box-shadow: 0 8px 32px rgba(11, 110, 79, 0.15);
}

.pricing-card--featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(11, 110, 79, 0.2);
}

/* Most Popular badge */
.pricing-badge {
    display: inline-block;
    background-color: #0B6E4F;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 18px;
    width: fit-content;
}

/* Plan name */
.pricing-plan {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1A1A1A;
    margin: 0 0 14px;
}

/* Price row */
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
}

.pricing-amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 52px;
    color: #0B6E4F;
    line-height: 1;
}

.pricing-amount--custom {
    font-size: 38px;
}

.pricing-period {
    font-size: 16px;
    color: #6B7280;
    font-weight: 500;
}

/* Feature list */
.pricing-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0 0 32px;
    flex: 1;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #374151;
    line-height: 1.5;
}

.pricing-check {
    color: #0B6E4F;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-check--light {
    color: #25D366;
}

/* CTA button */
.pricing-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: #F3F4F6;
    color: #1A1A1A;
    border: 1.5px solid #E5E7EB;
    margin-top: auto;
}

.pricing-cta:hover {
    background-color: #E5E7EB;
    transform: translateY(-1px);
}

.pricing-cta--featured {
    background-color: #0B6E4F;
    color: #FFFFFF;
    border-color: #0B6E4F;
}

.pricing-cta--featured:hover {
    background-color: #095a40;
    box-shadow: 0 6px 20px rgba(11, 110, 79, 0.3);
}

/* Trust / ROI footer */
.pricing-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
}

.pricing-trust {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

.pricing-roi {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #9CA3AF;
    font-style: italic;
    margin: 0;
}

/* Responsive */
@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }

    .pricing-card--featured {
        transform: scale(1.04);
        z-index: 1;
    }

    .pricing-card--featured:hover {
        transform: scale(1.04) translateY(-6px);
    }
}

@media (max-width: 767px) {
    .pricing-card {
        padding: 28px 24px;
    }

    .pricing-amount {
        font-size: 42px;
    }
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    padding: 96px 0;
    background-color: #F9FAFB;
}

.contact-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-left {
    background-color: #0B6E4F;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

.contact-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.contact-perks {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-perk {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: #FFFFFF;
    font-weight: 500;
}

.contact-perk-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #25D366;
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-right {
    background-color: #FFFFFF;
    padding: 48px 40px;
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.form-required {
    color: #EF4444;
}

.form-optional {
    font-weight: 400;
    color: #9CA3AF;
}

.form-input {
    padding: 12px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #1A1A1A;
    background-color: #F9FAFB;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    border-color: #0B6E4F;
    box-shadow: 0 0 0 3px rgba(11, 110, 79, 0.1);
    background-color: #FFFFFF;
}

.form-textarea {
    padding: 12px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #1A1A1A;
    background-color: #F9FAFB;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: vertical;
    min-height: 110px;
}

.form-textarea:focus {
    border-color: #0B6E4F;
    box-shadow: 0 0 0 3px rgba(11, 110, 79, 0.1);
    background-color: #FFFFFF;
}

.form-submit {
    background-color: #25D366;
    color: #FFFFFF;
    border: none;
    padding: 16px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    letter-spacing: 0.2px;
}

.form-submit:hover {
    background-color: #1EBE5D;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .contact-card {
        flex-direction: row;
    }

    .contact-left {
        width: 38%;
    }

    .contact-right {
        flex: 1;
    }
}

/* ===========================
   STATS SECTION
   =========================== */
.stats {
    padding: 64px 0;
    background-color: #FFFFFF;
    border-top: 1px solid #F3F4F6;
    border-bottom: 1px solid #F3F4F6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #0B6E4F;
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
    position: relative;
    padding: 96px 0;
    background-color: #0B6E4F;
    overflow: hidden;
    text-align: center;
}

/* Faint WhatsApp bubble decorations */
.cta-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.15);
    font-family: 'Inter', sans-serif;
    pointer-events: none;
    white-space: nowrap;
}

.cta-bubble--tl { top: 48px; left: 6%; }
.cta-bubble--tr { top: 72px; right: 5%; }
.cta-bubble--bl { bottom: 56px; left: 4%; }
.cta-bubble--br { bottom: 40px; right: 7%; }

/* Inner container */
.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.cta-banner-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.25;
}

.cta-banner-sub {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0;
    line-height: 1.75;
}

.cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.cta-banner-btn {
    padding: 16px 28px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-banner-btn--primary {
    background-color: #25D366;
    color: #FFFFFF;
    border: 2px solid #25D366;
}

.cta-banner-btn--primary:hover {
    background-color: #1EBE5D;
    border-color: #1EBE5D;
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.cta-banner-btn--secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-banner-btn--secondary:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

.cta-play-icon {
    font-size: 11px;
}

/* Trust checklist */
.cta-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-trust span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #D1D5DB;
}

/* Conversion trigger box */
.cta-trigger-box {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px 24px;
    max-width: 500px;
    width: 100%;
}

.cta-trigger-box p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.6;
}

/* Urgency line */
.cta-urgency {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #9CA3AF;
    margin: 0;
}

@media (min-width: 640px) {
    .cta-banner-heading {
        font-size: 40px;
    }

    .cta-trust {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background-color: #0F172A;
    padding: 64px 0 0;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 280px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #FFFFFF;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social:hover {
    background-color: #25D366;
    color: #FFFFFF;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
}

.footer-col-heading {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 16px;
}

.footer-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #25D366;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    text-align: center;
}

.footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
    }

    .footer-links {
        grid-template-columns: repeat(4, 1fr);
        flex: 1;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}


/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.floating-wa:hover { transform: scale(1.1) rotate(5deg); }

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 639px) {
    .floating-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

.feature-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    /* CHANGE: Remove opacity: 0 and transform to make them visible immediately */
    opacity: 1; 
    transform: none;
    display: block; /* Ensure they aren't accidentally hidden */
}

/* Ensure these classes match your HTML exactly */
.feature-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.feature-card-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* Pricing tier name pill */
.pricing-tier-name {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0B6E4F;
    background-color: #ECFDF5;
    border: 1px solid #A7F3D0;
    border-radius: 50px;
    padding: 3px 12px;
    margin-bottom: 12px;
    width: fit-content;
}
.pricing-tier-name--light {
    color: #D1FAE5;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}
/* Target audience line */
.pricing-target {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #9CA3AF;
    margin: 0 0 20px;
    line-height: 1.4;
}
.pricing-target--light {
    color: rgba(255, 255, 255, 0.6);
}
/* Setup fee note */
.pricing-setup-fee {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #9CA3AF;
    margin: -20px 0 20px;
    font-style: italic;
}
