/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #070B14;
    --bg-card: #0D1424;
    --bg-section: #0A0F1C;
    --blue-primary: #2563EB;
    --blue-light: #3B82F6;
    --blue-glow: rgba(37, 99, 235, 0.15);
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;
    --border: rgba(148, 163, 184, 0.1);
    --radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--blue-light);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--text-white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === NAV === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo:hover {
    color: var(--text-white);
}

.logo-icon {
    color: var(--blue-primary);
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-white);
}

/* === HERO === */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.12) 0%, transparent 60%);
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--blue-glow);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-light);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: var(--blue-primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background: var(--blue-light);
    color: var(--text-white);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

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

.btn-outline:hover {
    color: var(--text-white);
    border-color: rgba(148, 163, 184, 0.3);
}

/* === SECTIONS === */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-section);
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    text-align: center;
}

.section h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

/* === CARDS (SERVICES) === */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: border-color 0.3s, transform 0.2s;
}

.card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === STEPS (HOW IT WORKS) === */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--blue-glow);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-light);
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* === ABOUT === */
.about-content {
    max-width: 720px;
    margin: 0 auto;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 16px;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}

.about-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-item strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue-light);
}

.about-item span {
    color: var(--text-main);
    font-size: 0.95rem;
}

/* === CONTACT === */
.contact-grid {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-item strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue-light);
}

.contact-item a,
.contact-item span {
    color: var(--text-main);
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--blue-light);
}

/* === SMS BANNER === */
.sms-banner {
    padding: 48px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.sms-banner h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.sms-banner p {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 800px;
    line-height: 1.7;
}

.sms-banner a {
    color: var(--blue-light);
}

/* === FOOTER === */
.footer {
    padding: 60px 0 32px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand p {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 4px;
}

.footer-links a,
.footer-links span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

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

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .hero {
        padding: 130px 0 70px;
    }

    .section {
        padding: 70px 0;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .steps {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        gap: 16px;
        font-size: 0.8rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .about-details {
        grid-template-columns: 1fr;
    }
}

/* === LEGAL PAGES === */
.legal-page {
    padding: 120px 0 80px;
}

.legal-page h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.legal-page .legal-date {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 36px 0 12px;
    text-align: left;
}

.legal-page p,
.legal-page li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    margin-bottom: 6px;
}

.legal-page a {
    color: var(--blue-light);
}

.legal-page strong {
    color: var(--text-main);
}

.legal-back {
    display: inline-block;
    margin-top: 48px;
    color: var(--blue-light);
    font-weight: 600;
}
