/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #9B72D6;
    --primary-dark: #43226C;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray: #666;
    --shadow: 0 10px 40px rgba(67, 34, 108, 0.1);
    --shadow-lg: 0 20px 60px rgba(67, 34, 108, 0.15);
}

html, body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
        0 4px 24px rgba(155, 114, 214, 0.1),
        inset 0 -1px 0 rgba(155, 114, 214, 0.1);
    z-index: 1000;
    animation: slideDown 0.5s ease;
    border-bottom: 1px solid rgba(155, 114, 214, 0.08);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Buttons - Modern Design */
.btn-primary {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 0.9rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 15px rgba(155, 114, 214, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(155, 114, 214, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    background: linear-gradient(135deg, #a77ee6, var(--primary), var(--primary-dark));
    background-size: 200% 200%;
    color: var(--white);
    padding: 1.4rem 3.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 35px rgba(155, 114, 214, 0.35),
        0 4px 10px rgba(155, 114, 214, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    animation: gradientMove 3s ease infinite, pulse 2s infinite ease-in-out;
    overflow: hidden;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-large:hover::before {
    left: 100%;
}

.btn-large:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 15px 45px rgba(155, 114, 214, 0.5),
        0 6px 15px rgba(155, 114, 214, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: gradientMove 3s ease infinite;
}

.btn-large:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-large svg {
    transition: transform 0.3s ease;
}

.btn-large:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background:
        radial-gradient(ellipse at top right, rgba(155, 114, 214, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(67, 34, 108, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #faf8ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(155, 114, 214, 0.12) 0%, rgba(155, 114, 214, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    filter: blur(60px);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(67, 34, 108, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
    filter: blur(40px);
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-50px, 50px) scale(1.1);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Phone Mockup */
.hero-image {
    position: relative;
    z-index: 2;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, var(--primary-dark), #2d1550);
    border-radius: 32px;
    padding: 18px;
    box-shadow:
        0 25px 60px rgba(67, 34, 108, 0.4),
        0 10px 30px rgba(67, 34, 108, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    animation: floatPhone 6s infinite ease-in-out;
    border: 3px solid rgba(155, 114, 214, 0.3);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: rgba(155, 114, 214, 0.5);
    border-radius: 10px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8F5E9 0%, #F3E5F5 100%);
    border-radius: 24px;
    padding: 40px 20px;
    overflow: hidden;
}

.chat-bubble {
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideIn 1s ease;
}

.chat-bubble p {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.chat-bubble p:last-child {
    margin-bottom: 0;
}

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

/* Animations */
.fade-in {
    animation: fadeIn 1s ease;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease 0.4s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease 0.6s both;
}

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

/* Pulse animation for buttons */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(155, 114, 214, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(155, 114, 214, 0.6);
    }
}

/* Bounce animation for icons */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Gradient animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Scale in animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    margin: 1.5rem auto 0;
    border-radius: 3px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2.8rem;
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(155, 114, 214, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(155, 114, 214, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(155, 114, 214, 0.2),
        0 10px 20px rgba(155, 114, 214, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(155, 114, 214, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    animation: bounce 0.6s ease;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background:
        radial-gradient(ellipse at top left, rgba(155, 114, 214, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(67, 34, 108, 0.04) 0%, transparent 50%),
        linear-gradient(to bottom, #ffffff 0%, #faf8ff 100%);
    position: relative;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 2.5rem 1.8rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(155, 114, 214, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(155, 114, 214, 0.15);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.step:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(155, 114, 214, 0.2),
        0 10px 20px rgba(155, 114, 214, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(155, 114, 214, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 25px rgba(155, 114, 214, 0.35),
        0 4px 10px rgba(155, 114, 214, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow:
        0 12px 35px rgba(155, 114, 214, 0.5),
        0 6px 15px rgba(155, 114, 214, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.step:hover .step-number::after {
    opacity: 0.6;
}

.step h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    padding-top: 4rem;
    margin-top: 2rem;
    box-shadow:
        0 10px 40px rgba(155, 114, 214, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(155, 114, 214, 0.15);
}

.pricing-card:hover::after {
    display: none;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(155, 114, 214, 0.25),
        0 10px 25px rgba(155, 114, 214, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -5px 0 var(--primary);
    border-color: rgba(155, 114, 214, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    background-size: 200% 200%;
    color: var(--white);
    transform: scale(1.05);
    border: none;
    animation: gradientShift 3s ease infinite;
    position: relative;
    padding-top: 2.5rem;
    margin-top: 2rem;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 3s infinite;
    transform: rotate(30deg);
    pointer-events: none;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow:
        0 6px 20px rgba(255, 215, 0, 0.4),
        0 2px 8px rgba(255, 165, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    animation: badgePulse 2s infinite ease-in-out;
    z-index: 10;
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow:
            0 6px 20px rgba(255, 215, 0, 0.4),
            0 2px 8px rgba(255, 165, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow:
            0 8px 25px rgba(255, 215, 0, 0.6),
            0 4px 12px rgba(255, 165, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card.featured h3 {
    color: var(--white);
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

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

.period {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    color: var(--gray);
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.savings {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 0.8rem;
    letter-spacing: 0.5px;
    box-shadow:
        0 4px 15px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: savingsPulse 3s infinite ease-in-out;
}

@keyframes savingsPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 4px 15px rgba(255, 255, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow:
            0 6px 20px rgba(255, 255, 255, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(155, 114, 214, 0.1);
    color: var(--gray);
}

.pricing-card.featured .pricing-features li {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-pricing {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    background-size: 200% 200%;
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 6px 20px rgba(155, 114, 214, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.btn-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s;
}

.btn-pricing:hover::before {
    left: 100%;
}

.pricing-card.featured .btn-pricing {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow:
        0 6px 20px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-pricing:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 10px 30px rgba(155, 114, 214, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background-position: 100% 50%;
}

.pricing-card.featured .btn-pricing:hover {
    box-shadow:
        0 10px 30px rgba(255, 255, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.payment-info {
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
    margin-top: 2rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f5ff 0%, #ffffff 100%);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow:
        0 4px 20px rgba(155, 114, 214, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(155, 114, 214, 0.1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 4px 4px 0;
}

.faq-item:hover::before {
    height: 100%;
}

.faq-item:hover {
    box-shadow:
        0 8px 30px rgba(155, 114, 214, 0.15),
        0 4px 12px rgba(155, 114, 214, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateX(8px);
    border-color: rgba(155, 114, 214, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark), #2d1550);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

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

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta .btn-large {
    background: var(--white);
    color: var(--primary-dark);
    position: relative;
    z-index: 2;
}

.cta .btn-large:hover {
    background: var(--gray-light);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-image {
    height: 60px;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.8;
    margin-top: 0.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        z-index: 1;
        margin-top: 3rem;
    }

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

    .phone-mockup {
        width: 250px;
        height: 500px;
        padding: 14px;
        border-width: 2px;
        border-radius: 28px;
    }

    .phone-mockup::before {
        width: 60px;
        height: 5px;
        top: 10px;
    }

    .phone-screen {
        border-radius: 20px;
        padding: 30px 15px;
    }

    .step-arrow {
        display: none;
    }

    .steps {
        flex-direction: column;
    }
}

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

    .nav {
        padding: 0.8rem 1rem;
        gap: 0.5rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .logo-image {
        height: 36px;
    }

    .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

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

    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .pricing-card {
        min-width: auto;
        max-width: 100%;
        width: 100%;
        padding: 2.5rem 1.5rem;
        padding-top: 2.5rem;
        margin-top: 1rem;
    }

    .pricing-card.featured {
        transform: scale(1);
        padding-top: 3rem;
        margin-top: 1.5rem;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo .logo-image {
        margin: 0 auto;
    }
}

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

    .nav {
        padding: 0.7rem 0.8rem;
    }

    .logo-image {
        height: 28px;
    }

    .btn-primary {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        border-radius: 10px;
    }

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

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .phone-mockup {
        width: 180px;
        height: 360px;
        padding: 10px;
        border-width: 2px;
        border-radius: 22px;
    }

    .phone-mockup::before {
        width: 45px;
        height: 4px;
        top: 8px;
    }

    .phone-screen {
        border-radius: 16px;
        padding: 25px 10px;
    }

    .chat-bubble {
        padding: 10px;
        margin-bottom: 10px;
    }

    .chat-bubble p {
        font-size: 0.65rem;
    }

    .pricing-card {
        min-width: auto;
        width: 100%;
        padding: 2rem 1rem;
        padding-top: 2rem;
    }

    .pricing-card.featured {
        padding-top: 2.5rem;
        margin-top: 1.5rem;
    }

    .badge {
        padding: 0.4rem 1.2rem;
        font-size: 0.65rem;
        top: -14px;
    }

    .amount {
        font-size: 3rem;
    }
}

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

    .nav {
        padding: 0.6rem 0.5rem;
    }

    .logo-image {
        height: 26px;
    }

    .btn-primary {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }

    .pricing-card {
        min-width: 240px;
        padding: 2rem 1rem;
        padding-top: 2.5rem;
    }

    .pricing-card.featured {
        padding-top: 3rem;
    }
}
