.announcement-bar {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 600;
    position: fixed; 
    width: 100%; 
    top: 0; 
    left: 0; 
    z-index: 1001;
}

.announcement-text {
    display: inline-block;
    position: relative;
    padding: 0 1rem;
}

.announcement-text::before,
.announcement-text::after {
    content: '★';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    opacity: 0.8;
}

.announcement-text::before {
    left: -5px;
}

.announcement-text::after {
    right: -5px;
}

:root {
    --primary: #7c3aed;
    --secondary: #4c1d95;
    --text: #1f2937;
    --light: #f5f3ff;
    --background: #ffffff;
    --accent: #f472b6;
}

/* Header Navigation - Updated responsive styles */
.header-nav {
    position: fixed;
    top: 0; 
    left: 0;
    right: 0;
    background: var(--background);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
    transform: translateY(42px); 
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

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

.logo-image {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(124, 58, 237, 0.2));
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: rotate(15deg);
}

.logo-text {
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(124, 58, 237, 0.1);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

/* Mobile menu styles - Enhanced */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: center;
        border-radius: 0.5rem;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .nav-link:hover {
        background-color: var(--light);
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-image {
        width: 32px;
        height: 32px;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 76px; 
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0 50 Q 25 0 50 50 T 100 50' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='2'/%3E%3C/svg%3E") repeat;
    opacity: 0.2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.1));
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 114, 182, 0.4);
}

.cta-button:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.cta-button.secondary {
    background: var(--light);
}

.cta-button.large {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
}

/* How it Works - Updated */
.how-it-works {
    padding: 4rem 0;
    background: var(--light);
    position: relative;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.1);
}

.step::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    z-index: 1;
}

.step:nth-child(1)::before { content: '1'; }
.step:nth-child(2)::before { content: '2'; }
.step:nth-child(3)::before { content: '3'; }
.step:nth-child(4)::before { content: '4'; }

.step-icon {
    font-size: 3.5rem;
    margin: 2rem 0 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.step:hover .step-icon {
    transform: scale(1.1);
}

.step h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step p {
    color: var(--text);
    opacity: 0.9;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: left;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.additional-features {
    text-align: left;
    margin: 2rem 0;
}

.additional-features h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.additional-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.additional-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

/* Benefits */
.benefits {
    padding: 4rem 0;
    background: var(--light);
}

.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

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

.benefit {
    background: var(--background);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.benefit h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit p {
    color: var(--text);
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 280px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .benefit h3 {
        font-size: 1.2rem;
    }
    
    .benefit p {
        font-size: 1rem;
    }
}

/* Pricing */
.pricing {
    padding: 4rem 0;
    background: var(--light);
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.single-price-card {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--background);
    padding: 3rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
    border: 3px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.single-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0;
}

.price span {
    font-size: 1.5rem;
    opacity: 0.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Product Intro Section */
.product-intro {
    padding: 4rem 0;
    background: var(--light);
    position: relative;
    overflow: hidden;
}

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

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text);
}

.flow-options {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.flow-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--background);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.flow-option:hover {
    transform: translateY(-2px);
}

.flow-option .emoji {
    font-size: 2rem;
}

.flow-option.negative {
    border-left: 4px solid var(--accent);
}

.flow-option.positive {
    border-left: 4px solid var(--primary);
}

.value-points {
    display: grid;
    gap: 1.5rem;
}

.value-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    color: var(--primary);
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
}

.value-point h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.phone-frame {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 9/19;
    border-radius: 40px;
    padding: 15px;
    background: #1a1a1a;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    max-width: 100%;
}

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-content {
        order: 1;
    }

    .intro-visual {
        order: 2;
        width: 100%;
        max-width: 280px;
        margin: 2rem auto;
    }

    .phone-frame {
        aspect-ratio: auto;
        width: 100%;
        max-width: 260px;
        padding: 10px;
        border-radius: 30px;
        height: auto;
        min-height: 450px;
    }
    
    .phone-screen {
        border-radius: 25px;
    }

    .phone-screen img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .intro-visual {
        max-width: 240px;
        margin: 1rem auto;
    }

    .phone-frame {
        max-width: 220px;
        padding: 8px;
        border-radius: 25px;
        min-height: 400px;
    }

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

.comparison-section {
    padding: 4rem 0;
    background: var(--light);
    position: relative;
}

.comparison-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

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

.comparison-card {
    background: var(--background);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.comparison-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.problem .comparison-icon {
    background: rgba(244, 114, 182, 0.1);
    color: var(--accent);
}

.solution .comparison-icon {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.problem .comparison-item svg {
    color: var(--accent);
}

.solution .comparison-item svg {
    color: var(--primary);
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-card {
        padding: 2rem;
    }
    
    .comparison-header {
        margin-bottom: 1.5rem;
    }
    
    .comparison-title {
        font-size: 1.3rem;
    }
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: var(--light);
    position: relative;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.testimonial-container {
    position: relative;
    max-width: 100%;
    margin: 3rem auto;
}

.testimonial-slider {
    overflow: hidden;
    border-radius: 1rem;
    padding: 1rem 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.4s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 2rem);
    margin: 0 1rem;
    padding: 2rem;
    background: var(--background);
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(124, 58, 237, 0.15);
}

.testimonial-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 10px rgba(124, 58, 237, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--text);
    line-height: 1.6;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text::before {
    top: -10px;
    left: -5px;
}

.testimonial-text::after {
    bottom: -20px;
    right: -5px;
}

.star-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin: 1rem 0;
}

.testimonial-author strong {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.metric strong {
    display: block;
    color: var(--primary);
    font-size: 1.5rem;
}

.metric span {
    font-size: 0.9rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: var(--primary);
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.nav-button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    opacity: 1;
}

.nav-button.prev {
    left: 10px;
}

.nav-button.next {
    right: 10px;
}

@media (max-width: 1024px) {
    .testimonial-card {
        padding: 1.5rem;
        flex: 0 0 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 2rem);
    }
    
    .nav-button {
        width: 40px;
        height: 40px;
    }
}

/* FAQ */
.faq {
    padding: 4rem 0;
    background: var(--light);
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--background);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 15px rgba(124, 58, 237, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    font-size: 1.1rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    border-bottom: 1px solid #ccc;
    transition: all 0.3s ease;
    line-height: 1.6;
    opacity: 0;
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
    opacity: 1;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
    }
}

/* Contact */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-method h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-method p {
    opacity: 0.9;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-content: start;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: white;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    transform: translateY(-2.5rem);
    font-size: 0.875rem;
    color: white;
}

.contact-form .cta-button {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 1rem;
    background: var(--accent);
    border: none;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-container {
        padding: 1rem;
    }
}

.contact-container.contact-centered {
    display: flex;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25D366 !important;
    border: none !important;
    width: 100%;
    margin-top: 1rem;
    font-size: 1rem;
    padding: 1.25rem 2.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #128C7E !important;
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .whatsapp-button {
        font-size: 1rem;
        padding: 1.25rem 2.5rem;
        width: 100%;
        margin: 1rem auto 0;
    }
    
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        font-size: 1rem;
        padding: 1.25rem 2.5rem;
    }
}

/* Footer */
footer {
    padding: 2rem 0;
    background: var(--text);
    color: white;
    text-align: center;
}

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

@media (max-width: 768px) {
    .single-price-card {
        padding: 2rem 1.5rem;
    }
    
    .price {
        font-size: 2.8rem;
    }
    
    .nav-button {
        width: 40px;
        height: 40px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        padding: 8px;
    }
    
    .benefit h3 {
        font-size: 1.2rem;
    }
    
    .benefit p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .flow-option {
        padding: 1rem;
    }
}

/* Update all section h2 headings to match presentation style */
@media (max-width: 768px) {
    .how-it-works h2,
    .benefits h2,
    .testimonials h2,
    .pricing h2,
    .faq h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .how-it-works h2,
    .benefits h2,
    .testimonials h2,
    .pricing h2,
    .faq h2 {
        font-size: 1.8rem;
    }
}

/* Responsive adjustments for announcement bar */
@media (max-width: 480px) {
    .announcement-bar {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .announcement-text::before,
    .announcement-text::after {
        display: none; /* Hide stars on mobile */
    }
    
    .header-nav {
        transform: translateY(34px); /* Adjusted for smaller announcement bar on mobile */
    }
    
    .hero {
        margin-top: 68px; /* Adjusted for smaller heights on mobile */
    }
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    line-height: 1.5;
}

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

/* Product CTA Section */
.product-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.product-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M0 50 Q 25 0 50 50 T 100 50' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='2'/%3E%3C/svg%3E") repeat;
    opacity: 0.2;
}

.product-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.product-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-cta .cta-button {
    background: var(--accent);
    border: 2px solid white;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .product-cta {
        padding: 2rem 1rem;
    }
    
    .product-cta h2 {
        font-size: 2rem;
    }
    
    .product-cta p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .product-cta .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .product-cta h2 {
        font-size: 1.8rem;
    }
    
    .product-cta p {
        font-size: 1rem;
    }
}