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

:root {
    /* GestorPet Brand Colors */
    --primary-purple: #6938EF;
    --primary-dark: #101828;
    --primary-light: #8b5cf6;
    --primary-orange: #FFA012;

    /* Text Colors */
    --text-dark: #101828;
    --text-medium: #4a5568;
    --text-light: #718096;
    --text-lighter: #a0aec0;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #F9F7F4;
    --bg-lighter: #F0EDE8;

    /* Accent Colors */
    --accent-yellow: #ffd74e;
    --accent-pink: #ff6b9d;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 500px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 24px;
}

.nav-logo .logo {
    height: 36px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

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

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

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-purple);
    color: white;
    box-shadow: 0 4px 14px rgba(105, 56, 239, 0.3);
}

.btn-primary:hover {
    background: #5a2cd8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(105, 56, 239, 0.4);
}

.btn-nav {
    padding: 0.65rem 1.5rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 16px;
}

.btn-xl {
    padding: 1.2rem 3rem;
    font-size: 17px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: var(--bg-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-purple);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1.5px solid rgba(99, 102, 241, 0.2);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-purple);
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    margin-bottom: 2.5rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 14px;
    color: var(--text-light);
}

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

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 0.4rem;
}

.hero-image {
    position: relative;
}

/* Image Placeholders */
.image-placeholder {
    background: var(--bg-lighter);
    border: 2px dashed var(--text-lighter);
    border-radius: var(--radius-lg);
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    border-color: var(--primary-purple);
    background: rgba(105, 56, 239, 0.05);
}

.placeholder-content {
    text-align: center;
    color: var(--text-lighter);
}

.placeholder-content svg {
    margin-bottom: 1rem;
    opacity: 0.6;
}

.placeholder-content p {
    font-size: 14px;
    font-weight: 500;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.problem-card {
    background: var(--bg-white);
    border: 2px solid var(--bg-lighter);
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.problem-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.problem-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.problem-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.problem-cta {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

.problem-cta strong {
    color: var(--primary-purple);
    font-weight: 700;
}

/* Solution Section */
.solution-section {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 40px;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.benefit-row:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.benefit-row.reverse {
    direction: ltr;
}

.benefit-row.reverse .benefit-content {
    order: 2;
}

.benefit-row.reverse .benefit-image {
    order: 1;
}

.benefit-row.featured {
    background: linear-gradient(135deg, rgba(105, 56, 239, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    border: 2px solid var(--primary-purple);
    position: relative;
    box-shadow: 0 10px 30px rgba(105, 56, 239, 0.15);
}

.benefit-badge {
    display: inline-block;
    background: var(--primary-purple);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    display: block;
}

.benefit-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.benefit-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.benefit-list li {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    padding-left: 0;
    line-height: 1.6;
}

.benefit-image .image-placeholder {
    aspect-ratio: 4/3;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: block;
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--bg-white);
    border: 2px solid var(--bg-lighter);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-purple);
}

.testimonial-stars {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.author-business {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.1rem;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--bg-lighter);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-purple);
}

.pricing-card.featured {
    border: 3px solid var(--primary-purple);
    background: linear-gradient(135deg, rgba(105, 56, 239, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 10px 30px rgba(105, 56, 239, 0.15);
}

.pricing-card.featured:hover {
    box-shadow: 0 25px 50px rgba(105, 56, 239, 0.25);
    transform: translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-purple) 0%, #5a2cd8 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(105, 56, 239, 0.4);
}

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

.pricing-plan-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2.5rem;
}

.price-strike {
    display: block;
    font-size: 1.2rem;
    color: var(--text-lighter);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.main-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1;
}

.period {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-medium);
}

.billing-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.75rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
    padding-left: 0;
}

.pricing-features li strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.btn-outline {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(105, 56, 239, 0.3);
}

.pricing-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.pricing-guarantee {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(105, 56, 239, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-purple);
    box-shadow: 0 4px 16px rgba(105, 56, 239, 0.1);
}

.pricing-guarantee p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-light) 100%);
    padding: 60px 50px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary-purple);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-box .btn-primary:hover {
    background: var(--bg-lighter);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 15px;
}

.check {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.guarantee-box {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(105, 56, 239, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    border: 2px solid var(--primary-purple);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(105, 56, 239, 0.12);
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.guarantee-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--bg-white);
    border: 2px solid var(--bg-lighter);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-purple);
}

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

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

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

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.75rem 2rem;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1d2e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.final-cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.final-cta-section .btn {
    position: relative;
    z-index: 1;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-trust {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
}

.trust-icon {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-grid,
    .benefit-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefit-row.reverse .benefit-content,
    .benefit-row.reverse .benefit-image {
        order: 0;
    }

    .benefit-row {
        margin-bottom: 60px;
        padding: 30px 20px;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-stats {
        gap: 1.5rem;
    }

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

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

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

    .cta-box {
        padding: 40px 30px;
    }

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

    .final-cta-title {
        font-size: 2.2rem;
    }

    .final-cta-text {
        font-size: 1.1rem;
    }

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

    .footer-trust {
        justify-content: center;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

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

    .btn-large {
        padding: 0.9rem 2rem;
        font-size: 15px;
    }

    .btn-xl {
        padding: 1rem 2.5rem;
        font-size: 16px;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
    }

    .amount {
        font-size: 3rem;
    }

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-image {
    animation: float 6s ease-in-out infinite;
}
