:root {
    --bg-main: #F8FAFC;
    --bg-card: #FFFFFF;
    --bg-card-subtle: #F1F5F9;
    --primary: #C69A43;
    --primary-hover: #B08535;
    --primary-light: #FFFBEB;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --border-hover: #CBD5E1;
    --font-title: 'Manrope', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

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

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

/* Background Orbs */
.background-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
}

.orb-one {
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(198, 154, 67, 0.12) 0%, transparent 70%);
}

.orb-two {
    bottom: -150px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
}

.page {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

/* Logos */
.site-logo {
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.header-logo {
    height: 80px;
    max-height: 100px;
}

.footer-logo {
    height: 70px;
    max-height: 90px;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-card);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.status i {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

/* Alerts */
.alert {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.alert.success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.alert.error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0;
}

.eyebrow {
    font-family: var(--font-title);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-copy h1 {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.hero-copy h1 span {
    color: var(--primary);
}

.hero-copy p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--primary);
    color: #FFFFFF;
    border: 1px solid var(--primary);
    box-shadow: 0 4px 12px rgba(198, 154, 67, 0.25);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(198, 154, 67, 0.35);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--bg-card-subtle);
    border-color: var(--border-hover);
}

.mini-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(198, 154, 67, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(198, 154, 67, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(198, 154, 67, 0); }
}

/* Visual Card Graphic */
.visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1/1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
}

.card-top, .card-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.card-center {
    text-align: center;
}

.card-center .dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.card-center strong {
    font-family: var(--font-title);
    font-size: 2.25rem;
    line-height: 1;
    letter-spacing: 2px;
    color: var(--text-main);
}

/* Video Player */
.video-player {
    margin: 1rem 0 4rem;
}

.video-player-frame {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.video-player-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-player-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 100%);
    color: #FFFFFF;
}

.badge-free {
    background: var(--primary);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.video-player-title {
    font-family: var(--font-title);
    font-size: 1.35rem;
    margin-top: 0.5rem;
}

.video-player-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border);
    color: var(--text-main);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.video-player-nav:hover {
    background: var(--primary);
    color: #FFFFFF;
    border-color: var(--primary);
}

.video-player-nav.prev { left: 1rem; }
.video-player-nav.next { right: 1rem; }

.video-player-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.player-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-hover);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.player-dot.active {
    background: var(--primary);
    width: 26px;
    border-radius: 10px;
}

/* Section Quote */
.quote-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3.5rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-md);
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
}

.section-heading h2 {
    font-family: var(--font-title);
    font-size: 2.25rem;
    color: var(--text-main);
    margin: 0.5rem 0 1rem;
}

.section-heading p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field.full {
    grid-column: span 2;
}

.field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
}

.field input, .field select, .field textarea {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.field input:focus, .field select:focus, .field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(198, 154, 67, 0.15);
}

.field select option {
    background: var(--bg-card);
    color: var(--text-main);
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.form-footer small {
    color: var(--text-muted);
}

/* Newsletter */
.newsletter {
    background: var(--primary-light);
    border: 1px solid rgba(198, 154, 67, 0.25);
    border-radius: 20px;
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-sm);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(198, 154, 67, 0.15);
}

.newsletter-form button {
    background: var(--primary);
    color: #FFFFFF;
    border: none;
    padding: 0 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-hover);
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contacts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contacts li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
}

.footer-contacts .icon {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .visual {
        display: none;
    }

    .quote-section, .newsletter {
        padding: 2rem;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .field.full {
        grid-column: span 1;
    }

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

    .footer {
        flex-direction: column;
        gap: 2rem;
    }
}