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

:root {
    --blue: #2563eb;
    --green: #10b981;
    --gold: #f59e0b;
    --text: #333;
    --text-light: #666;
    --bg: #f9fafb;
    --white: #ffffff;
    --border: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.25rem;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.3s ease;
    z-index: 0;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue) 60%, var(--gold) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--white);
    color: var(--blue);
    border: 2px solid var(--blue);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.btn-secondary:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-cta {
    background: linear-gradient(135deg, var(--blue) 0%, var(--gold) 100%);
    color: var(--white);
    padding: 11px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-cta:active {
    transform: translateY(-1px);
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover {
    color: var(--blue);
}

.nav-menu .nav-link.active {
    color: var(--blue);
    border-bottom-color: var(--blue);
    font-weight: 600;
}

/* Auth Navigation */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.btn-login {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    border: 2px solid transparent;
}

.btn-login:hover {
    color: var(--blue);
    background: rgba(37, 99, 235, 0.05);
}

.btn-signup {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--gold) 100%);
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

#navLoggedIn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

#navLoggedIn .btn-text {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

#navLoggedIn .btn-text:hover {
    color: var(--blue);
}

.user-menu {
    position: relative;
}

.user-menu-btn {
    background: var(--white);
    border: 2px solid var(--border);
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.user-menu-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(37, 99, 235, 0.05);
}

.user-menu-btn svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.user-menu-btn.active svg {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    z-index: 1000;
    overflow: hidden;
}

.user-dropdown a {
    display: block;
    padding: 12px 16px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.user-dropdown a:hover {
    background: var(--bg);
    color: var(--blue);
    padding-left: 18px;
}

.user-dropdown a:first-child {
    border-radius: 12px 12px 0 0;
}

.user-dropdown a:last-of-type {
    border-bottom: 1px solid var(--border);
}

.user-dropdown hr {
    margin: 4px 0;
    border: none;
    border-top: 1px solid var(--border);
}

.logout-btn {
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    color: #e74c3c;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 0 0 12px 12px;
    font-size: 0.95rem;
}

.logout-btn:hover {
    background: #ffe6e6;
    padding-left: 18px;
}

/* Hero */
.hero {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    line-height: 1.1;
    animation: fadeInDown 0.8s ease-out;
}

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

.highlight {
    color: var(--blue);
    font-weight: 800;
}

.hero-text > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.35);
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 2rem;
}

.trust-item {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.trust-item:nth-child(1) {
    animation-delay: 0.6s;
}

.trust-item:nth-child(2) {
    animation-delay: 0.8s;
}

.hero-visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 380px;
    overflow: hidden;
    animation: slideUp 0.6s ease-out;
}

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

.chat-header {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.online-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.chat-messages {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 200px;
}

.msg {
    padding: 10px 15px;
    border-radius: 12px;
    word-wrap: break-word;
    animation: fadeInMsg 0.5s ease-out forwards;
    opacity: 0;
}

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

.animate-msg-1 {
    animation-delay: 0.2s;
}

.animate-msg-2 {
    animation-delay: 0.8s;
}

.animate-msg-3 {
    animation-delay: 1.4s;
}

.msg.user {
    background: var(--blue);
    color: var(--white);
    margin-left: auto;
    width: fit-content;
    max-width: 85%;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.msg.user:hover {
    transform: translateX(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.msg.bot {
    background: #f0f0f0;
    color: var(--text);
    margin-right: auto;
    width: fit-content;
    max-width: 85%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.msg.bot:hover {
    background: #e8e8e8;
    transform: translateX(2px);
}

.chat-input-placeholder {
    padding: 1rem 1.5rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: text;
    transition: all 0.3s;
}

.chat-input-placeholder:hover {
    background: #f5f5f5;
}

/* Integrations */
.integrations {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.integrations-header {
    text-align: center;
    margin-bottom: 3rem;
}

.integrations-header h2 {
    color: var(--blue);
}

.integrations-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.integration-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.integration-card:hover {
    border-color: var(--blue);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
}

.integration-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.integration-card h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.integration-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.integration-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-active {
    background: rgba(16, 185, 129, 0.2);
    color: var(--green);
}

.status-coming {
    background: rgba(245, 158, 11, 0.2);
    color: var(--gold);
}

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

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

.feature {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.feature:hover {
    border-color: var(--blue);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.feature .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
}

/* How It Works */
.how-it-works {
    padding: 60px 0;
    background: var(--bg);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.step {
    padding: 2rem;
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--gold) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--text);
}

.step p {
    color: var(--text-light);
}

/* Stats */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue) 50%, var(--gold) 100%);
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    color: var(--white);
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials h2 {
    text-align: center;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

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

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-color: var(--blue);
    transform: scale(1.02);
}

.testimonial-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

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

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--text);
    font-size: 0.95rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Trust Section */
.trust-section {
    padding: 40px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

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

/* Footer Social */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    color: var(--white);
    background: var(--blue);
    transform: translateY(-2px);
}

/* Scroll Animations */
.feature,
.pricing-card,
.faq-item,
.testimonial-card,
.trust-badge,
.integration-card,
.step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature.animate-in,
.pricing-card.animate-in,
.faq-item.animate-in,
.testimonial-card.animate-in,
.trust-badge.animate-in,
.integration-card.animate-in,
.step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays */
.feature:nth-child(2),
.pricing-card:nth-child(2),
.testimonial-card:nth-child(2),
.trust-badge:nth-child(2),
.integration-card:nth-child(2),
.step:nth-child(2) {
    transition-delay: 0.1s;
}

.feature:nth-child(3),
.pricing-card:nth-child(3),
.testimonial-card:nth-child(3),
.trust-badge:nth-child(3),
.integration-card:nth-child(3),
.step:nth-child(3) {
    transition-delay: 0.2s;
}

.feature:nth-child(4),
.trust-badge:nth-child(4),
.step:nth-child(4) {
    transition-delay: 0.3s;
}

.feature:nth-child(5) {
    transition-delay: 0.4s;
}

.feature:nth-child(6) {
    transition-delay: 0.5s;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.plan {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.plan:hover {
    border-color: var(--blue);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.plan.featured {
    border-color: var(--blue);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    transform: scale(1.05);
}

.popular {
    background: linear-gradient(135deg, var(--blue) 0%, var(--gold) 100%);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.plan h3 {
    color: var(--blue);
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 1.5rem;
}

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

.plan ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

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

/* FAQ */
.faq {
    padding: 60px 0;
    background: var(--bg);
}

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

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-title {
    width: 100%;
    padding: 1.5rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: all 0.3s;
    font-size: 1rem;
}

.faq-title:hover {
    background: var(--bg);
    color: var(--blue);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    display: none;
}

.faq-item:hover p {
    display: block;
}

/* CTA Final */
.cta-final {
    padding: 80px 0;
    background: var(--blue);
    color: var(--white);
    text-align: center;
}

.cta-final h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-final > .container > p:first-of-type {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta-white {
    background: var(--white);
    color: var(--blue);
    padding: 12px 32px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    margin: 0 auto 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-cta-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.1);
    transition: left 0.3s ease;
    z-index: 0;
}

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

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-cta-white:active {
    transform: translateY(-1px);
}

.cta-note {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--text);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-grid p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-grid h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-grid a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-grid a:hover {
    color: var(--white);
}

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

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-trust {
        gap: 0.5rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan.featured {
        transform: scale(1);
    }

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

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

    .trust-badges {
        gap: 1.5rem;
    }

    .trust-badge {
        font-size: 0.85rem;
    }
}

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

    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.25rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .stats .container {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}
