* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0f;
    color: #eef2ff;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(20, 20, 35, 1) 0%, #07070a 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800" opacity="0.1"><path fill="none" stroke="%23ffffff" stroke-width="0.5" d="M100 100 L700 100 M100 200 L700 200 M100 300 L700 300 M100 400 L700 400 M100 500 L700 500 M100 600 L700 600 M100 700 L700 700 M200 100 L200 700 M300 100 L300 700 M400 100 L400 700 M500 100 L500 700 M600 100 L600 700 M700 100 L700 700"/></svg>');
    background-repeat: repeat;
    opacity: 0.2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge {
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    display: inline-block;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b9c3e6;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary, .btn-outline {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #f5af19, #f12711);
    color: #0a0a0f;
    box-shadow: 0 8px 20px rgba(241, 39, 17, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(241, 39, 17, 0.5);
}

.btn-outline {
    border: 1.5px solid #f6d365;
    color: #f6d365;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(246, 211, 101, 0.1);
    transform: translateY(-3px);
}

.trust-badges {
    display: flex;
    gap: 32px;
    font-size: 0.9rem;
    color: #a5b4fc;
}

/* Sales message */
.sales-message {
    padding: 100px 0;
    background: #111116;
}

.sales-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
}

.sales-icon {
    font-size: 5rem;
    background: rgba(255, 180, 60, 0.1);
    padding: 32px;
    border-radius: 60px;
}

.sales-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.accent {
    color: #fda085;
}

.sales-list {
    margin-top: 24px;
    list-style: none;
}

.sales-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* Audience */
.audience {
    padding: 100px 0;
    background: #0a0a0f;
}

.audience h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 56px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.card {
    background: #13131a;
    padding: 32px 24px;
    border-radius: 28px;
    border: 1px solid #262633;
    transition: all 0.25s;
}

.card:hover {
    border-color: #f6d365;
    transform: translateY(-6px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card p {
    color: #bcbcdf;
}

/* Training */
.training {
    padding: 100px 0;
    background: linear-gradient(120deg, #0e0e16, #07070c);
}

.training-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.training h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.training-lead {
    font-size: 1.2rem;
    color: #cdd9ff;
    margin-bottom: 56px;
}

.training-points {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.point {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    padding: 32px 24px;
    width: 260px;
    border: 1px solid #2c2c3a;
}

.point-num {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f6d365, #fda085);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.point h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.point p {
    font-size: 0.95rem;
    color: #b9c3e6;
}

/* Register */
.register {
    padding: 100px 0;
    background: #0a0a0f;
}

.register-card {
    max-width: 600px;
    margin: 0 auto;
    background: #111116;
    padding: 48px 40px;
    border-radius: 48px;
    border: 1px solid #2a2a35;
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.5);
}

.register-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 16px 20px;
    background: #1c1c24;
    border: 1px solid #2e2e3a;
    border-radius: 28px;
    font-size: 1rem;
    color: white;
    font-family: 'Inter', sans-serif;
    transition: 0.2s;
}

input:focus {
    outline: none;
    border-color: #f6d365;
    background: #23232c;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, #f5af19, #f12711);
    border: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0a0a0f;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: scale(0.98);
    box-shadow: 0 6px 14px rgba(241,39,17,0.3);
}

.form-note {
    margin-top: 20px;
    font-size: 0.8rem;
    text-align: center;
    color: #8f9bb3;
}

.form-message {
    margin-top: 20px;
    text-align: center;
}

.success {
    color: #9eff9e;
    background: #1e3a1e;
    padding: 12px;
    border-radius: 40px;
}

.error {
    color: #ffb4a2;
    background: #3b1e1a;
    padding: 12px;
    border-radius: 40px;
}

/* Footer */
footer {
    background: #030307;
    padding: 48px 0 32px;
    border-top: 1px solid #1f1f2c;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-weight: 600;
    letter-spacing: -0.2px;
    background: linear-gradient(135deg, #eee, #b9b9ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.footer-details {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #7a85a5;
}

.copy {
    font-size: 0.75rem;
    color: #4f5a73;
}

@media (max-width: 800px) {
    h1 {
        font-size: 2.8rem;
    }
    .sales-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .container {
        padding: 0 24px;
    }
    .register-card {
        padding: 32px 24px;
    }
}