:root {
    --bg-dark: #040608;
    --bg-darker: #010203;
    --bg-panel: rgba(10, 14, 20, 0.65);
    --bg-panel-solid: #0b0f14;
    --text-primary: #f5f7fa;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --accent-gold: #e2b95c;
    --accent-gold-glow: rgba(226, 185, 92, 0.16);
    --accent-teal: #4ec2c0;
    --accent-teal-glow: rgba(78, 194, 192, 0.16);
    --accent-green: #4ade80;
    --accent-green-glow: rgba(74, 222, 128, 0.16);
    --accent-coral: #f87171;
    --accent-coral-glow: rgba(248, 113, 113, 0.16);
    --line: rgba(226, 185, 92, 0.10);
    --line-strong: rgba(226, 185, 92, 0.25);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

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

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at center, rgba(226, 185, 92, 0.035) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(140deg, rgba(4, 6, 8, 0.85), rgba(1, 2, 3, 0.99)),
        url('assets/hero-bg.webp') center / cover no-repeat;
    filter: saturate(0.95) brightness(0.65);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(to bottom, rgba(4, 6, 8, 0.05), var(--bg-dark) 75%),
        radial-gradient(circle at 15% 25%, rgba(78, 194, 192, 0.09), transparent 32%),
        radial-gradient(circle at 85% 15%, rgba(248, 113, 113, 0.07), transparent 30%);
    pointer-events: none;
}

h1, h2, h3, h4, .nav-title, .eyebrow { font-family: 'Outfit', sans-serif; }
a { color: inherit; }
img { max-width: 100%; height: auto; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.container.narrow { max-width: 860px; }
.section { padding: 92px 0; }
.section.compact { padding: 64px 0; }
.section-dark {
    background: rgba(5, 6, 7, 0.72);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.page-hero + .section-dark {
    border-top: none;
}
.section-title { max-width: 760px; margin-bottom: 38px; }
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 14px;
}
.section-title p, .lead {
    color: var(--text-secondary);
    font-size: 1.03rem;
    line-height: 1.75;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    margin-bottom: 20px;
    color: var(--accent-gold);
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(212, 180, 95, 0.09);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 18px 0;
    transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}
.navbar.scrolled {
    padding: 12px 0;
    background: rgba(8, 10, 13, 0.75);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}
.nav-content {
    width: min(1360px, calc(100% - 36px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 190px;
}
.nav-logo { width: 38px; height: 38px; object-fit: contain; }
.nav-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    white-space: nowrap;
}
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex: 1;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-gold); }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-login, .nav-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
}
.nav-login {
    color: var(--accent-gold);
    border: 1px solid var(--line);
    background: rgba(212, 180, 95, 0.08);
}
.nav-start {
    color: #111;
    background: var(--accent-gold);
    box-shadow: 0 12px 28px rgba(212, 180, 95, 0.18);
}

.hero {
    min-height: 90vh;
    min-height: 90svh;
    display: flex;
    align-items: center;
    padding: 110px 0 50px;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 44px;
    align-items: center;
}
.hero h1 {
    max-width: 900px;
    color: #fff;
    font-size: clamp(2.2rem, 3.4vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 20px;
}
.hero-subtitle {
    max-width: 740px;
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
    line-height: 1.68;
    margin-bottom: 28px;
}
.hero-panel {
    border: 1px solid var(--line-strong);
    background: rgba(14, 18, 24, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow);
    border-top: 2px solid var(--accent-gold);
}
.hero-panel h2 {
    color: #fff;
    font-size: 1.18rem;
    margin-bottom: 16px;
}
.hero-panel-list {
    list-style: none;
    display: grid;
    gap: 12px;
}
.hero-panel-list li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.hero-panel-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--accent-teal);
}
.cta-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-primary, .btn-secondary, .btn-ghost {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 26px;
    border-radius: 6px;
    border: 1px solid transparent;
    text-decoration: none;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c4994d 100%);
    color: #0c0f12;
    box-shadow: 0 4px 15px rgba(226, 185, 92, 0.18);
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}
.btn-primary:hover::after {
    left: 100%;
}
.btn-primary:hover {
    transform: translateY(-2px) scale(1.015);
    box-shadow: 0 8px 24px rgba(226, 185, 92, 0.32);
}
.btn-secondary {
    background: rgba(226, 185, 92, 0.08);
    border-color: var(--line);
    color: var(--accent-gold);
}
.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(226, 185, 92, 0.14);
    border-color: var(--line-strong);
    box-shadow: 0 4px 15px rgba(226, 185, 92, 0.08);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}
.btn-ghost:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
}
.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}
.trust-chip, .tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-family: 'Fira Code', monospace;
    font-size: 0.74rem;
    transition: all 0.25s ease;
}
.trust-chip:hover {
    border-color: var(--accent-gold);
    color: #fff;
    background: rgba(226, 185, 92, 0.06);
    transform: translateY(-2px);
}
.tag.gold { color: var(--accent-gold); }
.tag.teal { color: var(--accent-teal); }
.tag.green { color: var(--accent-green); }
.tag.coral { color: var(--accent-coral); }

.page-hero {
    padding: 146px 0 70px;
    text-align: center;
}
.page-hero h1 {
    max-width: 900px;
    margin: 0 auto 20px;
    color: #fff;
    font-size: clamp(2.5rem, 5.5vw, 4.7rem);
    line-height: 1.05;
}
.page-hero p {
    max-width: 760px;
    margin: 0 auto 30px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.75;
}

.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg-panel);
    padding: 28px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card.featured {
    border-color: var(--line-strong);
    background: rgba(14, 18, 24, 0.85);
    box-shadow: 0 20px 50px rgba(226, 185, 92, 0.05), var(--shadow);
}
.card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(226, 185, 92, 0.35);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 20px 45px rgba(226, 185, 92, 0.08);
}
.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
        220px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        var(--card-glow-color, rgba(226, 185, 92, 0.35)),
        transparent 80%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}
.card:hover::before {
    opacity: 1;
}
.card h3 {
    color: #fff;
    font-size: 1.22rem;
    line-height: 1.25;
    margin-bottom: 12px;
}
.card p, .card li {
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.72;
}
.card ul, .check-list, .plain-list {
    list-style: none;
    display: grid;
    gap: 9px;
    margin-top: 18px;
}
.check-list li, .card ul li, .plain-list li {
    position: relative;
    padding-left: 20px;
}
.check-list li::before, .card ul li::before, .plain-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-gold);
}
.split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: center;
}
.callout {
    border-left: 3px solid var(--accent-teal);
    padding: 20px 22px;
    background: rgba(106, 167, 165, 0.08);
    color: var(--text-secondary);
    border-radius: 0 8px 8px 0;
}
.price {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 16px 0 10px;
}
.price-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 20px;
}
.pricing-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.pricing-actions {
    justify-content: center;
    margin-top: 30px;
}

.configurator-hero {
    padding-bottom: 52px;
}
.configurator-section {
    overflow: visible;
}
.configurator-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: 28px;
    align-items: start;
}
.configurator-main {
    display: grid;
    gap: 24px;
}
.config-step {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(18, 22, 26, 0.78);
    padding: 26px;
}
.config-step-heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    margin-bottom: 20px;
}
.config-step-heading h2 {
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1.14;
    margin-bottom: 8px;
}
.config-step-heading p {
    color: var(--text-secondary);
    max-width: 760px;
}
.package-option-grid, .monthly-option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.package-option, .monthly-option {
    position: relative;
    display: grid;
    gap: 10px;
    min-height: 100%;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
}
.package-option input, .monthly-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.package-option:has(input:checked), .monthly-option:has(input:checked) {
    border-color: var(--accent-gold);
    background: rgba(212, 180, 95, 0.10);
}
.option-title-row {
    display: flex;
    gap: 10px;
    align-items: start;
    justify-content: space-between;
}
.option-title-row strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
}
.option-price {
    color: var(--accent-gold);
    font-family: 'Fira Code', monospace;
    font-size: 0.86rem;
    font-weight: 700;
    white-space: nowrap;
}
.option-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.58;
}
.addon-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.addon-tab {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    padding: 9px 12px;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
}
.addon-tab.active, .addon-tab:hover {
    background: var(--accent-gold);
    color: #111;
}
.addon-groups {
    display: grid;
    gap: 18px;
}
.addon-group {
    display: none;
}
.addon-group.active {
    display: block;
}
.addon-group h3 {
    color: #fff;
    margin-bottom: 12px;
}
.addon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.addon-option {
    display: grid;
    gap: 12px;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
}
.addon-option label {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: var(--text-primary);
    cursor: pointer;
}
.addon-option input[type="checkbox"] {
    width: 16px;
    min-height: 16px;
    margin-top: 3px;
}
.addon-name {
    display: block;
    color: #fff;
    line-height: 1.3;
}
.addon-meta {
    display: block;
    color: var(--text-muted);
    font-family: 'Fira Code', monospace;
    font-size: 0.74rem;
    margin-top: 4px;
}
.addon-quantity {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 94px;
    gap: 10px;
    align-items: center;
}
.addon-quantity span {
    color: var(--text-secondary);
    font-size: 0.84rem;
}
.addon-quantity input {
    min-height: 38px;
    padding: 8px 10px;
}
.rush-field {
    max-width: 360px;
}
.configurator-summary {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 16px;
}
.summary-card {
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: rgba(8, 10, 13, 0.92);
    padding: 24px;
    box-shadow: var(--shadow);
}
.summary-card h2 {
    color: #fff;
    font-size: 1.45rem;
    line-height: 1.2;
    margin-bottom: 18px;
}
.summary-card h3 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.summary-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}
.summary-total {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}
.summary-total span {
    color: var(--text-secondary);
    font-weight: 800;
}
.summary-total strong {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.7rem;
    white-space: nowrap;
}
.summary-total.monthly strong {
    color: var(--accent-teal);
}
.summary-lines, .summary-minimums {
    display: grid;
    gap: 8px;
    margin: 12px 0 16px;
}
.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.45;
}
.summary-line strong {
    color: var(--text-primary);
    white-space: nowrap;
}
.minimum-chip {
    border: 1px solid rgba(97, 194, 143, 0.28);
    border-radius: 6px;
    background: rgba(97, 194, 143, 0.08);
    color: #dff6e9;
    padding: 10px 12px;
    font-size: 0.86rem;
    line-height: 1.5;
}
.compact-summary {
    box-shadow: none;
}
.dashboard-mock {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #0d1113;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.mock-top {
    display: flex;
    gap: 8px;
    padding: 14px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}
.mock-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent-coral);
}
.mock-dot:nth-child(2) { background: var(--accent-gold); }
.mock-dot:nth-child(3) { background: var(--accent-green); }
.mock-body { padding: 24px; display: grid; gap: 14px; }
.mock-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
}
.mock-label {
    color: var(--accent-gold);
    font-family: 'Fira Code', monospace;
    font-size: 0.72rem;
}
.mock-text { color: var(--text-secondary); font-size: 0.9rem; }

.work-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.work-preview-card {
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(44px, auto);
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg-panel);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.work-preview-card:hover {
    border-color: rgba(226, 185, 92, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(226, 185, 92, 0.06), var(--shadow);
}
.work-preview-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
        220px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        var(--card-glow-color, rgba(226, 185, 92, 0.35)),
        transparent 80%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}
.work-preview-card:hover::before {
    opacity: 1;
}
.work-preview-card img,
.work-preview-card-mark {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
    background: #111;
    border-bottom: 1px solid var(--line);
}
.work-preview-card-mark {
    display: grid;
    place-items: center;
    color: var(--accent-gold);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    background:
        radial-gradient(circle at 30% 25%, rgba(212, 180, 95, 0.22), transparent 34%),
        linear-gradient(135deg, #0b0f11, #222b2f);
}
.work-preview-card > span:last-child {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    color: #fff;
    font-weight: 800;
    line-height: 1.25;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 30px 0 44px;
}
.filter-chip {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(18, 22, 26, 0.7);
    color: var(--text-secondary);
    padding: 9px 13px;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 800;
    cursor: pointer;
}
.filter-chip.active, .filter-chip:hover {
    color: #111;
    background: var(--accent-gold);
}
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.work-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg-panel);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.work-card:hover {
    border-color: rgba(226, 185, 92, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(226, 185, 92, 0.08), var(--shadow);
}
.work-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
        220px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        var(--card-glow-color, rgba(226, 185, 92, 0.35)),
        transparent 80%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}
.work-card:hover::before {
    opacity: 1;
}
.work-card[hidden] { display: none; }
.work-card img {
    width: 100%;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
    object-position: top center;
    background: #111;
    border-bottom: 1px solid var(--line);
}
.work-card-visual {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 16 / 8.5;
    background: #111;
    border-bottom: 1px solid var(--line);
}
.work-card-visual span {
    color: var(--accent-gold);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: 0.08em;
}
.work-card-visual-wrench {
    background:
        radial-gradient(circle at 24% 26%, rgba(212, 180, 95, 0.22), transparent 30%),
        radial-gradient(circle at 78% 70%, rgba(106, 167, 165, 0.18), transparent 34%),
        linear-gradient(135deg, #0b0f11, #222b2f 55%, #15110b);
}
.work-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    padding: 26px;
}
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.work-card h2, .work-card h3 {
    color: #fff;
    font-size: 1.55rem;
    line-height: 1.2;
}
.work-card p { color: var(--text-secondary); line-height: 1.72; }
.case-points {
    display: grid;
    gap: 12px;
    margin-top: 4px;
}
.case-point strong {
    color: #fff;
    display: block;
    margin-bottom: 3px;
}
.case-point span { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.65; }
.work-card-actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: 10px; }

.case-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 36px;
    align-items: start;
}
.case-sidebar {
    position: sticky;
    top: 100px;
}
.case-section {
    border-bottom: 1px solid var(--line);
    padding: 0 0 32px;
    margin-bottom: 32px;
}
.case-section h2 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.case-section p { color: var(--text-secondary); line-height: 1.78; margin-bottom: 16px; }
.capability-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
}
.capability-list li {
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 12px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
}

.form-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(18, 22, 26, 0.9);
    padding: 28px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label {
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
}
input, select, textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #0b0f11;
    color: var(--text-primary);
    padding: 11px 12px;
    font: inherit;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus {
    outline: 2px solid rgba(212, 180, 95, 0.35);
    border-color: var(--accent-gold);
}
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.check-option {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    font-weight: 700;
}
.check-option input { width: auto; min-height: auto; }
.form-success {
    display: none;
    margin-top: 18px;
    padding: 16px;
    border: 1px solid rgba(97, 194, 143, 0.34);
    border-radius: 6px;
    color: #dff6e9;
    background: rgba(97, 194, 143, 0.10);
}
.form-success.visible { display: block; }

.faq-list { display: grid; gap: 12px; }
.faq-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg-panel);
    overflow: hidden;
}
.faq-card summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 22px;
    color: #fff;
    font-weight: 800;
}
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary::after {
    content: '+';
    float: right;
    color: var(--accent-gold);
}
.faq-card[open] summary::after { content: '-'; }
.faq-card p {
    padding: 0 22px 22px;
    color: var(--text-secondary);
}

.cta-band {
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 44px 28px;
    background:
        linear-gradient(135deg, rgba(212, 180, 95, 0.12), rgba(106, 167, 165, 0.08)),
        rgba(18, 22, 26, 0.88);
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 12px; }
.cta-band p { color: var(--text-secondary); max-width: 680px; margin: 0 auto 24px; }

.footer {
    padding: 68px 0 30px;
    background: #030404;
    border-top: 1px solid var(--line);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 34px;
}
.footer-logo { width: 46px; opacity: 0.78; margin-bottom: 14px; }
.footer p { color: var(--text-muted); max-width: 430px; }
.footer h2, .footer h3 {
    color: #fff;
    font-size: 0.96rem;
    margin-bottom: 13px;
}
.footer a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 9px;
    font-size: 0.92rem;
}
.footer a:hover { color: var(--accent-gold); }
.footer-bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-muted);
    font-family: 'Fira Code', monospace;
    font-size: 0.82rem;
}

.fine-print, .meta-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.legal-content h2 { color: #fff; margin: 30px 0 10px; }
.legal-content p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.75; }

@media (max-width: 1100px) {
    .nav-links { gap: 12px; }
    .nav-links a { font-size: 0.84rem; }
    .pricing-tier-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .configurator-shell { grid-template-columns: 1fr; }
    .configurator-summary { position: static; }
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
}
.nav-toggle:hover {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 940px) {
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: rgba(6, 8, 11, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 85px 28px 40px;
        gap: 14px;
        border-left: 1px solid var(--line-strong);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
        transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 99;
    }
    .nav-links.mobile-active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.05rem;
        font-weight: 700;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .logo-area { min-width: auto; }
    .hero-grid, .split, .case-layout { grid-template-columns: 1fr; }
    .hero { align-items: flex-start; }
    .work-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-4, .grid-3, .work-grid, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .case-sidebar { position: static; }
}

@media (max-width: 680px) {
    .container, .nav-content { width: min(100% - 28px, 1180px); }
    .nav-title { font-size: 0.82rem; letter-spacing: 0.6px; }
    .nav-logo { width: 32px; height: 32px; }
    .nav-login { display: none; }
    .nav-start { min-height: 36px; padding: 8px 10px; font-size: 0.78rem; }
    .hero { padding-top: 112px; }
    .page-hero { padding-top: 118px; }
    .cta-group, .work-card-actions { align-items: stretch; flex-direction: column; }
    .btn-primary, .btn-secondary, .btn-ghost { width: 100%; }
    .work-preview-grid { grid-template-columns: 1fr; }
    .grid-4, .grid-3, .grid-2, .work-grid, .footer-grid, .form-grid, .checkbox-grid, .capability-list, .pricing-tier-grid, .package-option-grid, .monthly-option-grid, .addon-grid { grid-template-columns: 1fr; }
    .field.full { grid-column: auto; }
    .section { padding: 70px 0; }
    .card, .form-card, .work-card-body { padding: 22px; }
    .config-step, .summary-card { padding: 20px; }
    .config-step-heading { grid-template-columns: 1fr; }
    .summary-total { align-items: flex-start; flex-direction: column; }
    .option-title-row { flex-direction: column; align-items: flex-start; }
    .mock-row { grid-template-columns: 1fr; }
}
