:root {
    --bg: #050612;
    --bg-soft: #0c0f21;
    --bg-alt: #121528;
    --text: #f2f4fa;
    --text-muted: #a1aac7;
    --accent: #42d9c6;
    --accent-soft: rgba(66,217,198,0.18);
    --border: #1f2339;
    --radius: 14px;
    --radius-sm: 8px;
}

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

body {
    background: radial-gradient(circle at top, #171b38 0%, #050612 60%);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

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

.header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(5,6,18,0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

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

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

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

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

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

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

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text);
}

.section { padding: 90px 0; }

.section-title {
    font-family: "Lora", serif;
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 20px;
}

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

.section-alt {
    background: radial-gradient(circle at top, #0f1329 0%, #050612 70%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-contrast {
    background: #080a18;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-text {
    max-width: 480px;
    color: var(--text-muted);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1.6fr) minmax(0,1.2fr);
    gap: 42px;
}

.hero-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-muted);
}

.hero-title {
    font-family: "Lora", serif;
    font-size: 2.7rem;
    margin: 14px 0 18px;
}

.hero-text {
    max-width: 520px;
    color: var(--text-muted);
    font-size: 1rem;
}

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

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

.hero-info {
    padding: 18px;
    border-radius: var(--radius);
    background: #0f1329;
    border: 1px solid var(--border);
}

.hero-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.hero-info ul {
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

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

.btn-primary {
    background: var(--accent);
    color: #020308;
    border-color: var(--accent);
}

.btn-primary:hover { background: #37c4b2; }

.btn-outline {
    background: transparent;
    color: var(--text-muted);
    border-color: #3b415b;
}

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

.shift-grid {
    display: grid;
    grid-template-columns: minmax(0,1.3fr) minmax(0,1.4fr);
    gap: 32px;
}

.shift-cards {
    display: grid;
    gap: 18px;
}

.shift-card {
    background: #0f1329;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    color: var(--text-muted);
}

.shift-card h3 {
    color: var(--text);
    margin-bottom: 4px;
}

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

.dim {
    background: #0f1329;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.dim h3 {
    margin: 8px 0;
}

.dim ul {
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.dim-tag {
    background: var(--accent-soft);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.76rem;
}

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

.pkg {
    background: #0f1329;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    color: var(--text-muted);
}

.pkg-main {
    background: #f7f9fc;
    color: #0d0f18;
}

.pkg-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.pkg-title { margin-bottom: 6px; font-weight: 600; }

.pkg-price {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.pkg-price span { font-size: 0.8rem; }

.pkg-list { padding-left: 18px; }

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

.proc {
    background: #0f1329;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
}

.proc-num {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid var(--accent);
    color: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
}

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

.contact-text {
    max-width: 420px;
    color: var(--text-muted);
}

.contact-box {
    margin-top: 18px;
    padding: 18px;
    background: #0f1329;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--text-muted);
}

.form {
    padding: 20px;
    background: #080a18;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

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

.form-field label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 10px;
    background: #050612;
    border: 1px solid #2b3150;
    color: var(--text);
    border-radius: var(--
