﻿/* ===== CSS Variables ===== */
:root {
    --primary: #7C3AED;
    --primary-dark: #5B21B6;
    --primary-light: #FFF1F7;
    --secondary: #00B8FF;
    --secondary-light: #ECFEFF;
    --brand-pink: #FF4D8D;
    --brand-blue: #00B8FF;
    --brand-green: #21C784;
    --brand-warn: #FFB020;
    --dark: #111827;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --light: #F9FAFB;
    --white: #FFFFFF;
    --danger: #EF4444;
    --warning: #F59E0B;
    --radius: 8px;
    --radius-lg: 8px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 18px 44px rgba(20,31,55,.10);
    --shadow-md: 0 12px 28px rgba(20,31,55,.10);
    --shadow-lg: 0 22px 54px rgba(20,31,55,.12);
    --shadow-xl: 0 30px 70px rgba(20,31,55,.16);
    --glass: rgba(255,255,255,.82);
    --glass-strong: rgba(255,255,255,.92);
    --line: rgba(15,23,42,.08);
    --brand-gradient: linear-gradient(135deg,#ff4d8d,#7c3aed 50%,#00b8ff);
    --section-gradient: linear-gradient(135deg,#fff8fb 0%,#f3fbff 35%,#f8fff5 70%,#fff9e8 100%);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--dark);
    background: var(--section-gradient);
    line-height: 1.6;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Layout ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    box-shadow: none;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
}

.btn-primary {
    background: var(--brand-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 14px 32px rgba(124,58,237,.22);
}

.btn-primary:hover {
    background: var(--brand-gradient);
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(124,58,237,.28);
}

.btn-outline {
    background: rgba(255,255,255,.72);
    color: var(--primary);
    border-color: rgba(124,58,237,.24);
}

.btn-outline:hover {
    background: #fff;
    color: #be185d;
    border-color: rgba(255,77,141,.34);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* ===== Navbar ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.74);
    backdrop-filter: blur(18px) saturate(1.25);
    border-bottom: 1px solid rgba(15,23,42,.08);
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    width: 92px;
    min-height: 40px;
}

.logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #be185d;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(15,23,42,.1);
    border-radius: var(--radius);
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn:hover {
    border-color: rgba(255,77,141,.34);
    color: #be185d;
    background: #fff;
}

.user-greeting {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 0 0.25rem;
}

.nav-cta {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

/* ===== Hero Section ===== */
.hero {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg,rgba(255,255,255,.22),rgba(255,241,247,.52) 32%,rgba(235,252,255,.58) 66%,rgba(248,255,238,.44));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg,rgba(255,77,141,.08),rgba(0,184,255,.06) 45%,rgba(33,199,132,.05));
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Product Screenshot Carousel */
.product-screenshot-carousel {
    position: relative;
    background: var(--glass);
    border: 1px solid rgba(255,255,255,.78);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    backdrop-filter: blur(18px) saturate(1.25);
}

.product-screenshot-carousel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    z-index: 2;
    background: linear-gradient(90deg,#ff4d8d,#ffb020,#21c784,#00b8ff,#7c3aed);
}

.carousel-viewport {
    position: relative;
    aspect-ratio: 1194 / 875;
    overflow: hidden;
    background: linear-gradient(135deg,rgba(255,255,255,.9),rgba(246,249,252,.72));
}

.carousel-track {
    position: absolute;
    inset: 0;
    width: 100%;
}

.product-screenshot-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    display: none;
    align-items: center;
    justify-content: center;
}

.product-screenshot-slide.active {
    display: flex;
}

.product-screenshot-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
}

.carousel-control {
    position: absolute;
    top: 50%;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(15,23,42,.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #be185d;
    font-size: 1.6rem;
    line-height: 1;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 0.2s ease;
}

.carousel-control:hover {
    background: var(--brand-gradient);
    color: var(--white);
}

.carousel-control-prev {
    left: 0.8rem;
}

.carousel-control-next {
    right: 0.8rem;
}

.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 0.75rem;
    display: flex;
    gap: 0.45rem;
    padding: 0.35rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-sm);
    transform: translateX(-50%);
}

.carousel-dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--gray-300);
    cursor: pointer;
}

.carousel-dot.active {
    width: 1.35rem;
    background: var(--brand-gradient);
}

/* ===== Features Section ===== */
.features {
    padding: 5rem 0;
    background: rgba(255,255,255,.36);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg,rgba(255,255,255,.9),rgba(255,247,251,.7));
    border: 1px solid rgba(15,23,42,.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(20,31,55,.06);
    transition: all 0.3s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg,var(--brand-pink),var(--brand-warn),var(--brand-green),var(--brand-blue));
}

.feature-card:hover {
    border-color: rgba(255,77,141,.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.feature-icon {
    --feature-icon: url("/images/icons/analytics.svg");
    width: 3.25rem;
    height: 3.25rem;
    display: grid;
    place-items: center;
    margin-bottom: 1.15rem;
    border: 1px solid rgba(124,58,237,.14);
    border-radius: 14px;
    background:
        linear-gradient(145deg,rgba(255,255,255,.95),rgba(243,251,255,.72)),
        radial-gradient(circle at 20% 18%,rgba(255,77,141,.14),transparent 42%);
    box-shadow: 0 10px 22px rgba(20,31,55,.08);
}

.feature-icon::before {
    content: "";
    width: 1.8rem;
    height: 1.8rem;
    display: block;
    background: var(--brand-gradient);
    -webkit-mask: var(--feature-icon) center / contain no-repeat;
    mask: var(--feature-icon) center / contain no-repeat;
}

.feature-icon-analytics {
    --feature-icon: url("/images/icons/analytics.svg");
}

.feature-icon-diagnosis {
    --feature-icon: url("/images/icons/diagnosis.svg");
}

.feature-icon-reports {
    --feature-icon: url("/images/icons/reports.svg");
}

.feature-icon-copywriting {
    --feature-icon: url("/images/icons/copywriting.svg");
}

.feature-icon-translation {
    --feature-icon: url("/images/icons/translation.svg");
}

.feature-icon-assistant {
    --feature-icon: url("/images/icons/assistant.svg");
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 5rem 0;
    background: rgba(255,255,255,.56);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--brand-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.step-card p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== Social Proof ===== */
.social-proof {
    padding: 4rem 0;
    background: rgba(255,255,255,.34);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: var(--brand-gradient);
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 4rem 0;
    background: rgba(255,255,255,.58);
}

.contact-info {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.contact-item {
    padding: 0.75rem 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ===== Footer ===== */
.footer {
    background: #111827;
    color: var(--gray-400);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-brand .logo {
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-links ul li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: var(--gray-400);
}

.footer-legal-links a:hover {
    color: var(--white);
}

/* ===== Pricing Page ===== */
.pricing-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg,rgba(255,255,255,.3),rgba(255,241,247,.58) 42%,rgba(235,252,255,.52));
}

.pricing-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.toggle-label {
    font-size: 0.95rem;
    color: var(--gray-500);
    font-weight: 500;
}

.toggle-label.active {
    color: var(--dark);
    font-weight: 600;
}

.save-badge {
    background: var(--secondary-light);
    color: var(--secondary);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--gray-300);
    border-radius: 26px;
    transition: 0.3s;
}

.toggle-slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--brand-gradient);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(22px);
}

/* Pricing Cards */
.pricing-section {
    padding: 2rem 0 5rem;
}

.pricing-section .container {
    max-width: 1320px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    overflow: hidden;
    background: linear-gradient(145deg,rgba(255,255,255,.92),rgba(255,247,251,.7));
    border: 1px solid rgba(15,23,42,.08);
    border-radius: var(--radius-lg);
    padding: 1.65rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: rgba(255,77,141,.32);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: rgba(124,58,237,.34);
    box-shadow: var(--shadow-xl);
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg,#ff4d8d,#ffb020,#21c784,#00b8ff,#7c3aed);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-gradient);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.pricing-header {
    min-height: 5.25rem;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.pricing-price {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
}

.usage-amount {
    display: inline-block;
    max-width: 100%;
    font-size: 1.72rem;
    line-height: 1.12;
    word-break: keep-all;
    white-space: nowrap;
}

.price-period {
    font-size: 0.95rem;
    color: var(--gray-500);
}

.pricing-features {
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.92rem;
    color: var(--gray-700);
}

.pricing-features li.disabled {
    color: var(--gray-400);
}

.pricing-card .btn-block {
    margin-top: auto;
}

/* FAQ */
.faq-section {
    padding: 4rem 0;
    background: rgba(255,255,255,.42);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,.82);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.faq-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===== Payment Modal ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-500);
    line-height: 1;
}

.modal-body {
    padding: 1.5rem;
}

.selected-plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.plan-name {
    font-weight: 600;
    color: var(--primary);
}

.plan-price {
    font-weight: 700;
    color: var(--dark);
}

.payment-maintenance {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.maintenance-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.payment-maintenance h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.payment-maintenance p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.maintenance-zh {
    color: var(--gray-500);
    font-size: 0.85rem;
    font-style: italic;
}

.maintenance-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    text-align: left;
}

.maintenance-info p {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.maintenance-info a {
    color: var(--primary);
    text-decoration: underline;
}

/* ===== Legal Pages ===== */
.legal-page {
    padding: 4rem 0;
    background: rgba(255,255,255,.58);
}

.legal-container {
    max-width: 800px;
}

.legal-container h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
    list-style: disc;
}

.legal-content ul li {
    font-size: 0.93rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0.3rem;
}

.refund-highlight {
    background: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.refund-highlight h3 {
    color: #92400E;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.refund-highlight p {
    color: #92400E;
    margin-bottom: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 760px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}


