:root {
    --bg: #f5f5f7;
    --bg-alt: #edf0f5;
    --bg-contrast: #1f2937;
    --text: #111827;
    --text-soft: #4b5563;
    --text-invert: #f9fafb;
    --accent: #2563eb;
    --accent-soft: #dbeafe;
    --border: #d1d5db;
    --radius: 14px;
    --radius-sm: 9px;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(245, 245, 247, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* NAV */

.nav {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-soft);
}

.nav a:hover {
    color: var(--accent);
}

/* NAV TOGGLE (MOBILE) */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #111827;
    border-radius: 999px;
}

/* SECTIONS */

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.section-title.center {
    text-align: center;
}

/* HERO */

.hero {
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 40%, #f5f5f7 100%);
    border-bottom: 1px solid #e5e7eb;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.hero-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-soft);
}

.hero-title {
    margin: 14px 0 16px;
    font-size: 2.6rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.hero-text {
    color: var(--text-soft);
    max-width: 520px;
}

.hero-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-invert);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.btn-outline {
    background: transparent;
    color: var(--text-soft);
    border-color: #cbd5f5;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn.small {
    padding: 8px 14px;
    font-size: 0.8rem;
}

/* HERO SIDE */

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    padding: 9px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    font-size: 0.78rem;
}

.pill-label {
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-right: 4px;
}

.pill-value {
    font-weight: 600;
}

.hero-panel {
    padding: 18px 20px;
    border-radius: var(--radius);
    background: #111827;
    color: var(--text-invert);
}

.hero-panel-title {
    font-size: 0.98rem;
    margin-bottom: 8px;
}

.hero-panel-list {
    margin: 0;
    padding-left: 18px;
    font-size: 0.88rem;
}

/* GENERIC GRIDS & CARDS */

.section-alt {
    background: var(--bg-alt);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.section-contrast {
    background: #111827;
    color: #e5e7eb;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.card {
    background: #ffffff;
    border-radius: var(--radius);
    border: 1px solid #e5e7eb;
    padding: 20px;
    font-size: 0.94rem;
    color: var(--text-soft);
}

.section-alt .card {
    background: #f9fafb;
}

/* MODULES */

.module-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.module {
    background: #ffffff;
    border-radius: var(--radius);
    border: 1px solid #e5e7eb;
    padding: 20px;
    font-size: 0.94rem;
    color: var(--text-soft);
}

.module h3 {
    margin: 6px 0 8px;
    font-size: 1rem;
    color: var(--text);
}

.module-tag {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #1d4ed8;
    font-size: 0.75rem;
}

/* PACKAGES */

.packages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.section-contrast .section-title {
    color: #f9fafb;
}

.pkg {
    background: #1f2937;
    border-radius: var(--radius);
    border: 1px solid #374151;
    padding: 22px;
    font-size: 0.94rem;
}

.pkg-main {
    background: #f9fafb;
    color: var(--text);
    border-color: #e5e7eb;
}

.pkg-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
}

.pkg-title {
    margin: 8px 0 6px;
    font-size: 1.02rem;
}

.pkg-price {
    margin: 6px 0 10px;
    font-size: 1.4rem;
    font-weight: 600;
}

.pkg-price span {
    font-size: 0.82rem;
    font-weight: 400;
}

.pkg-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.pkg-list {
    margin: 0;
    padding-left: 18px;
    font-size: 0.9rem;
}

/* PROCESS */

.process-list {
    margin: 10px 0 0;
    padding-left: 18px;
    font-size: 0.94rem;
    color: var(--text-soft);
}

.process-list li {
    margin-bottom: 10px;
}

.process-list h3 {
    font-size: 0.98rem;
    margin-bottom: 3px;
    color: var(--text);
}

/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
    gap: 26px;
}

.section-contrast .section-title {
    color: #f9fafb;
}

.contact-text {
    font-size: 0.95rem;
    color: #e5e7eb;
    max-width: 420px;
}

.contact-box {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: var(--radius);
    background: #020617;
    color: #e5e7eb;
    font-size: 0.9rem;
}

.form {
    background: #111827;
    border-radius: var(--radius);
    border: 1px solid #374151;
    padding: 20px;
    font-size: 0.9rem;
}

.form-field {
    margin-bottom: 14px;
}

.form-field label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.84rem;
    color: #d1d5db;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid #374151;
    padding: 9px 11px;
    background: #020617;
    color: #f9fafb;
    font-family: inherit;
    font-size: 0.9rem;
}

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

/* FOOTER */

.footer {
    background: #020617;
    color: #9ca3af;
    padding: 20px 0;
    font-size: 0.85rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 14px;
}

.footer a {
    color: #9ca3af;
    text-decoration: none;
}

.footer a:hover {
    color: #e5e7eb;
}

/* COOKIE */

.cookie {
    position: fixed;
    right: 16px;
    bottom: 16px;
    max-width: 280px;
    padding: 16px;
    border-radius: var(--radius);
    background: #111827;
    color: #e5e7eb;
    font-size: 0.85rem;
    border: 1px solid #374151;
    display: none;
    z-index: 50;
}

.cookie-actions {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* RESPONSIVE */

@media (max-width: 960px) {
    .hero-grid,
    .grid-3,
    .grid-2,
    .module-grid,
    .packages,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: absolute;
        right: 20px;
        top: 52px;
        flex-direction: column;
        align-items: flex-end;
        background: #f9fafb;
        padding: 10px 16px;
        border-radius: var(--radius);
        border: 1px solid #e5e7eb;
        display: none;
    }

    .nav.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }
}
