/* ===================================
   PixelCut Pro — Modern Landing Page v2
   =================================== */

:root {
    --primary: #7C3AED;
    --primary-dark: #6D28D9;
    --primary-light: #A78BFA;
    --primary-glow: rgba(124, 58, 237, 0.25);
    --accent: #C026D3;
    --bg: #FAFAFE;
    --bg-dark: #0F0A1A;
    --surface: #FFFFFF;
    --surface-alt: #F8F6FF;
    --text: #0F172A;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --border: #E2E8F0;
    --border-light: #F1F0F7;
    --green: #22C55E;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --shadow: 0 4px 12px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.02);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(124, 58, 237, 0.15);
    --shadow-xl: 0 20px 60px rgba(124, 58, 237, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* === Scroll Animations === */
.animate-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-hidden[data-animate="fade-right"] { transform: translateX(-40px); }
.animate-hidden[data-animate="fade-left"] { transform: translateX(40px); }

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) !important;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.4);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.25);
}

.nav-cta:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === Hero Section === */
.hero {
    padding: 130px 24px 80px;
    background: linear-gradient(180deg, #F5F3FF 0%, #EDE9FE 30%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(124, 58, 237, 0.12);
    top: -200px;
    right: -150px;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(192, 38, 211, 0.08);
    bottom: -100px;
    left: -100px;
    animation: orbFloat 20s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(20, 184, 166, 0.06);
    top: 40%;
    left: 30%;
    animation: orbFloat 18s ease-in-out infinite 5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge, .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 100px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 20px;
    color: var(--text);
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--primary), #9333EA);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15));
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(124, 58, 237, 0.45);
}

.hero-cta:hover::before { opacity: 1; }
.hero-cta svg { width: 20px; height: 20px; }

.hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
}

.hero-secondary:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.stat { display: flex; flex-direction: column; }

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* Hero Visual */
.hero-visual { position: relative; z-index: 2; }
.hero-image-wrapper { position: relative; }

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-2xl);
    filter: drop-shadow(0 20px 60px rgba(124, 58, 237, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 3;
}

.floating-icon { font-size: 16px; }

.card-top {
    top: 15%;
    right: -10px;
    animation-delay: 0s;
}

.card-bottom {
    bottom: 20%;
    left: -10px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* === Social Proof === */
.social-proof {
    padding: 40px 24px;
    border-bottom: 1px solid var(--border-light);
}

.proof-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.proof-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.proof-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.proof-badge {
    padding: 8px 18px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.proof-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: rgba(124, 58, 237, 0.15);
}

/* === Showcase (Before/After) === */
.showcase {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-badge { display: inline-flex; margin-bottom: 16px; }

.showcase-text h2, .templates-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.showcase-text p, .templates-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.showcase-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.list-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #16A34A;
    flex-shrink: 0;
}

.showcase-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-image img:hover { transform: scale(1.03) rotate(0.5deg); }

/* === Features === */
.features {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 56px;
}

.section-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(124, 58, 237, 0.15);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === Templates Section === */
.templates-section {
    padding: 100px 24px;
    background: var(--surface-alt);
}

.templates-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.templates-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.templates-image img:hover { transform: scale(1.03); }

.template-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-chip {
    padding: 8px 16px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.2s;
    cursor: default;
}

.category-chip:hover {
    background: rgba(124, 58, 237, 0.12);
    transform: translateY(-2px);
}

/* === Languages Section === */
.languages-section {
    padding: 80px 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.lang-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 14px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.lang-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(124, 58, 237, 0.2);
}

/* === Reviews Section === */
.reviews-section {
    padding: 100px 24px;
    background: var(--surface-alt);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 64px;
    font-family: 'Poppins', serif;
    color: rgba(124, 58, 237, 0.08);
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    color: #F59E0B;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.review-name {
    font-weight: 600;
    font-size: 14px;
}

.review-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* === FAQ Section === */
.faq-section {
    padding: 100px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item[open] {
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
}

.faq-item summary {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s;
    user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.06);
    border-radius: 50%;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
    background: rgba(124, 58, 237, 0.12);
}

.faq-item summary:hover { color: var(--primary); }

.faq-item p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === Pricing === */
.pricing {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--bg) 0%, #F5F3FF 50%, var(--bg) 100%);
}

.pricing-container-wide {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    align-items: start;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(180deg, #FEFBFF, #FFFFFF);
    transform: scale(1.04);
    z-index: 2;
}

.pricing-card.popular:hover { transform: scale(1.04) translateY(-6px); }

.pricing-card.popular::before {
    content: '⭐ Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), #9333EA);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.pricing-card.yearly {
    border: 2px solid var(--green);
    background: linear-gradient(180deg, #F0FFF4, #FFFFFF);
}

.pricing-save-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #16A34A, #22C55E);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.pricing-header { margin-bottom: 16px; }
.pricing-emoji { font-size: 36px; margin-bottom: 8px; }
.pricing-name { font-size: 20px; font-weight: 700; }

.pricing-price {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.price-decimal { font-size: 28px; }

.pricing-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-btn {
    display: block;
    padding: 14px 24px;
    background: var(--surface-alt);
    color: var(--text);
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid var(--border);
    transition: all 0.3s;
    margin-bottom: 24px;
}

.pricing-btn:hover { background: var(--border-light); }

.pricing-btn.primary {
    background: linear-gradient(135deg, var(--primary), #9333EA);
    color: white;
    border: none;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.pricing-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.pricing-features { list-style: none; padding: 0; text-align: left; }

.pricing-features li {
    padding: 7px 0;
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li.included::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-features li.excluded {
    color: var(--text-muted);
    opacity: 0.6;
}

.pricing-features li.excluded::before {
    content: '✕';
    color: #EF4444;
    font-weight: 600;
    font-size: 12px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-features li.highlight {
    color: var(--green);
    font-weight: 700;
}

/* === CTA Section === */
.cta-section {
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.1), transparent 70%);
    z-index: 0;
}

.cta-logo {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.25);
    transition: transform 0.3s;
}

.cta-logo:hover { transform: scale(1.05) rotate(-3deg); }

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.cta-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* === Footer === */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 24px 32px;
    background: var(--surface);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 24px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

/* === Legal Pages === */
.legal-page {
    padding: 100px 24px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.legal-page .last-updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--text);
}

.legal-page p, .legal-page li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-page ul { padding-left: 20px; }

.legal-page a {
    color: var(--primary);
    text-decoration: none;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-description { margin: 0 auto 28px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { max-width: 400px; margin: 0 auto; }

    .showcase-container,
    .templates-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }

    .hero-floating-card { display: none; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 0;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -12px 0 40px rgba(0,0,0,0.1);
    }

    .nav-links.active { right: 0; }

    .nav-link {
        display: block !important;
        padding: 14px 0;
        font-size: 16px;
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-link::after { display: none; }

    .nav-cta {
        margin-top: 16px;
        width: 100%;
        justify-content: center;
    }

    .hero { padding: 110px 20px 50px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-cards-3 { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }

    .languages-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-actions { flex-direction: column; }

    .showcase, .features, .templates-section, .pricing, .cta-section, .reviews-section, .faq-section {
        padding: 60px 20px;
    }

    .section-title h2,
    .showcase-text h2,
    .templates-text h2 {
        font-size: 28px;
    }

    .cta-section h2 { font-size: 28px; }
}