:root {
    --bg-color: #f8fafc;
    --panel-bg: rgba(255, 255, 255, 0.85);
    --panel-border: rgba(74, 107, 255, 0.12);
    --accent-primary: #4a6bff;
    --accent-secondary: #7c4dff;
    --accent-glow: rgba(74, 107, 255, 0.08);
    --text-main: #0f172a;
    --text-muted: #475569;
    --success: #059669;
    --success-glow: rgba(5, 150, 105, 0.08);
    --warning: #f59e0b;
    --danger: #ef4444;
    --card-hover-border: rgba(74, 107, 255, 0.35);
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-family);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== HEADER ===== */
header.site-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--panel-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(74, 107, 255, 0.03);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-box {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 4px 10px var(--accent-glow);
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--accent-primary) 40%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

nav.nav-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
}

nav.nav-links a:hover,
nav.nav-links a.active {
    color: var(--accent-primary);
}

nav.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transition: width 0.2s ease;
}

nav.nav-links a:hover::after,
nav.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 900px) {
    nav.nav-links { display: none; }
    .header-actions { display: none; }
    .menu-toggle { display: flex; }
    nav.nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        padding: 1.5rem 2rem;
        border-bottom: 1px solid var(--panel-border);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        gap: 0.5rem;
    }
    nav.nav-links.mobile-open a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--panel-border);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    white-space: nowrap;
    font-family: var(--font-family);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(74, 107, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(74, 107, 255, 0.35);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline:hover {
    background: rgba(74, 107, 255, 0.05);
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
}

.btn-white {
    background: #fff;
    color: var(--accent-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: #fff;
    padding: 3.5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
    color: #fff;
}

.hero-text p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mockup Card */
.mockup-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: var(--text-main);
}

.mockup-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1rem;
}

.mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #eab308; }
.mockup-dot:nth-child(3) { background: #22c55e; }

.mockup-line {
    height: 6px;
    background: rgba(74, 107, 255, 0.08);
    border-radius: 3px;
    margin-bottom: 8px;
}

.mockup-line.short { width: 60%; }
.mockup-line.medium { width: 80%; }
.mockup-line.long { width: 100%; }

.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}

.mockup-item {
    background: var(--bg-color);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    border: 1px solid var(--panel-border);
}

.mockup-item i {
    font-size: 1.25rem;
    color: var(--accent-primary);
    margin-bottom: 4px;
}

.mockup-item span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-text h1 { font-size: 2rem; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-cta-group { justify-content: center; }
    .mockup-container { margin-top: 1.5rem; }
}

/* ===== SECTIONS ===== */
.site-section {
    padding: 3rem 0;
    text-align: center;
}

.site-section + .site-section {
    border-top: 1px solid rgba(74, 107, 255, 0.06);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* ===== CARDS ===== */
.card-grid {
    display: grid;
    gap: 1.25rem;
}

.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.u-card {
    background: #ffffff;
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(74, 107, 255, 0.02);
    transition: all 0.3s ease;
}

.u-card:hover {
    border-color: var(--card-hover-border);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(74, 107, 255, 0.07);
}

.u-card-icon {
    color: var(--accent-primary);
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.75rem;
    display: block;
}

.u-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.u-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

/* Bullet list variant */
.u-card ul {
    padding: 0;
    margin: 1rem 0 0;
    text-align: left;
}

.u-card ul li {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    padding: 0.35rem 0 0.35rem 1.4rem;
    position: relative;
}

.u-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 0.7rem;
    top: 0.55rem;
}

.u-card ul li.unavailable::before {
    content: '\f00d';
    color: var(--text-muted);
}

/* ===== PAGE HEADER ===== */
.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #0f172a 40%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-header p a {
    color: var(--accent-primary);
    font-weight: 600;
}

.page-header p a:hover { text-decoration: underline; }

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(74, 107, 255, 0.02);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--card-hover-border);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(74, 107, 255, 0.07);
}

.pricing-card.popular {
    border-color: var(--accent-primary);
    box-shadow: 0 10px 40px rgba(74, 107, 255, 0.12);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #fff;
    padding: 4px 16px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
    line-height: 1;
}

.pricing-card .price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-card .period {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    border-bottom: 1px solid rgba(74, 107, 255, 0.06);
    color: var(--text-main);
    font-size: 0.9rem;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--success);
    position: absolute;
    left: 0;
    font-size: 0.75rem;
}

.pricing-features li.unavailable {
    color: var(--text-muted);
}

.pricing-features li.unavailable::before {
    content: '\f00d';
    color: var(--text-muted);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* ===== ABOUT ===== */
.about-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.about-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.about-hero p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content { padding: 0 0 3rem; }

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.about-card {
    text-align: center;
    padding: 1.5rem;
}

.about-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 6px 20px var(--accent-glow);
}

.about-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.team-section {
    background: rgba(74, 107, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--panel-border);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.team-member {
    text-align: center;
    background: #ffffff;
    padding: 1.25rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--panel-border);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 107, 255, 0.07);
    border-color: var(--card-hover-border);
}

.team-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin: 0 auto 0.75rem;
}

.team-member h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.team-member .role {
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.8rem;
}

.team-member p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.45;
}

/* ===== FAQ ===== */
.faq { padding: 2.5rem 0; }

.faq-grid {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-item.active {
    border-color: var(--accent-primary);
    box-shadow: 0 2px 12px rgba(74, 107, 255, 0.08);
}

.faq-question {
    padding: 1rem 1.25rem;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.faq-question:hover { background: rgba(74, 107, 255, 0.02); }

.faq-question .faq-icon {
    width: 24px;
    height: 24px;
    background: rgba(74, 107, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 12px;
    transition: all 0.3s ease;
    color: var(--accent-primary);
    font-size: 0.75rem;
}

.faq-item.active .faq-question .faq-icon {
    background: var(--accent-primary);
    color: #fff;
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
}

.faq-answer a {
    color: var(--accent-primary);
    font-weight: 600;
}

.faq-answer a:hover { text-decoration: underline; }

/* ===== CONTACT ===== */
.contact { padding: 2.5rem 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.method-icon {
    width: 40px;
    height: 40px;
    background: rgba(74, 107, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-primary);
    font-size: 1rem;
}

.method-info h4 {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
    font-size: 0.9rem;
}

.method-info p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.contact-form-container {
    background: #ffffff;
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid var(--panel-border);
    box-shadow: 0 4px 20px rgba(74, 107, 255, 0.02);
}

.contact-form-container h3 {
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-family);
    background: #ffffff;
    transition: all 0.2s ease;
    color: var(--text-main);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.captcha-input {
    width: 100px;
    padding: 10px 14px;
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-family);
    background: #ffffff;
    transition: all 0.2s ease;
    color: var(--text-main);
    -moz-appearance: textfield;
}

.captcha-input::-webkit-outer-spin-button,
.captcha-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.captcha-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ===== FORM VALIDATION ===== */
.form-group input.error,
.form-group select.error,
.form-group textarea.error,
.captcha-input.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid,
.captcha-input.valid {
    border-color: var(--success);
}

.field-error {
    color: var(--danger);
    font-size: 0.78rem;
    margin-top: 4px;
    display: none;
    align-items: center;
    gap: 4px;
}

.field-error.show {
    display: flex;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: #fff;
    padding: 3.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    position: relative;
}

.cta-section p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    position: relative;
}

.cta-section .hero-cta-group {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== AUTH PAGES ===== */
.auth-page {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.auth-page .container {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.auth-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(74, 107, 255, 0.02);
    border: 1px solid var(--panel-border);
    display: flex;
    flex-direction: column;
}

.auth-form h1 {
    margin-bottom: 6px;
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
}

.auth-form .subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.forgot-password {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.forgot-password:hover { color: var(--accent-primary); }

.error-message {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
}

.terms {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.terms input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--accent-primary);
}

.terms label {
    font-size: 0.85rem;
    line-height: 1.5;
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.auth-footer a {
    color: var(--accent-primary);
    font-weight: 600;
}

.auth-footer a:hover { text-decoration: underline; }

.referral-notice {
    background-color: #fffbeb;
    border-left: 4px solid var(--warning);
    padding: 10px 14px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    border-radius: 0 8px 8px 0;
    color: #92400e;
}

.auth-side {
    background: rgba(74, 107, 255, 0.04);
    border-radius: 16px;
    padding: 2rem;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--panel-border);
}

.auth-side h2 {
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
}

.benefits {
    flex: 1;
}

.benefits li {
    margin-bottom: 1rem;
    padding-left: 0;
    position: relative;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.benefits li .benefit-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    color: #fff;
}

.benefits li .benefit-text {
    flex: 1;
}

.benefits li .benefit-text strong {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.benefits li .benefit-text span {
    opacity: 0.8;
    font-size: 0.82rem;
}

.benefits li::before {
    content: none;
}

.referral-help {
    margin-top: 1.25rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid var(--panel-border);
}

.referral-help h3 {
    margin-bottom: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.referral-help p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.referral-help a {
    color: var(--accent-primary);
    font-weight: 600;
}

/* ===== FOOTER ===== */
footer.site-footer {
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid var(--panel-border);
    padding: 2.5rem 1.5rem 1.5rem;
    margin-top: auto;
    box-shadow: 0 -4px 20px rgba(74, 107, 255, 0.02);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo-section {
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.55;
    max-width: 300px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 34px;
    height: 34px;
    background: rgba(74, 107, 255, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.social-links a:hover {
    background: var(--accent-primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--accent-primary); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(74, 107, 255, 0.08);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.25rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover { color: var(--accent-primary); }

/* ===== LEGAL ===== */
.legal-page { padding: 2rem 0; }

.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.75rem 0 0.75rem;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.legal-content ul {
    margin: 0 0 0.75rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-content li {
    margin-bottom: 0.35rem;
    padding-left: 14px;
    position: relative;
    list-style: disc;
    font-size: 0.9rem;
}

.legal-content a {
    color: var(--accent-primary);
    font-weight: 600;
}

.legal-content a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    .container { padding: 0 1rem; }
    .hero-section { padding: 3rem 0 2.5rem; }
    .hero-text h1 { font-size: 1.8rem; }
    .hero-text p { font-size: 0.9rem; }
    .site-section { padding: 2rem 0; }
    .section-title { font-size: 1.5rem; }
    .card-grid.cols-3 { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-4px); }
    .team-section { padding: 1.5rem 1rem; }
    .team-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .contact-form-container { padding: 1.25rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .page-header h1 { font-size: 1.6rem; }
    .cta-section { padding: 2.5rem 0; }
    .cta-section h2 { font-size: 1.5rem; }
    .about-hero h1 { font-size: 1.8rem; }
    .auth-page .container { grid-template-columns: 1fr; }
}
