:root {
    --bg: #07111f;
    --bg-2: #0b1d33;
    --card: rgba(255,255,255,0.08);
    --card-border: rgba(255,255,255,0.14);
    --text: #eaf3ff;
    --muted: #9fb4ca;
    --blue: #3ca4ff;
    --blue-2: #77d6ff;
    --white: #ffffff;
    --ink: #0b1628;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top left, #123b66 0%, var(--bg) 34%, #03070f 100%);
    color: var(--text);
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(4, 10, 20, 0.72);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0.12em; }
.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 0 32px rgba(60,164,255,0.25);
    overflow: hidden;
}
.brand-mark img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}
.brand-text strong { color: var(--blue-2); }

.nav-links { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 0.95rem; }
.nav-cta { color: var(--white); padding: 10px 14px; border: 1px solid var(--card-border); border-radius: 999px; }

.hero {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 740px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 490px);
    align-items: center;
    gap: clamp(28px, 4vw, 52px);
    position: relative;
}

.hero-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: rgba(60,164,255,0.16);
    filter: blur(70px);
    top: 120px;
    left: -120px;
    pointer-events: none;
}

.eyebrow, .section-kicker {
    color: var(--blue-2);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.8rem, 5.8vw, 4.9rem); line-height: 0.98; letter-spacing: 0; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: 0; margin-bottom: 18px; }
h3 { font-size: 1.25rem; }
.hero-copy, .intro p, .consultation-copy p { color: var(--muted); font-size: 1.1rem; line-height: 1.7; max-width: 680px; }

.hero-actions { display: flex; gap: 14px; margin: 34px 0; flex-wrap: wrap; }
.button { border: 0; border-radius: 999px; padding: 14px 20px; font-weight: 800; cursor: pointer; display: inline-flex; justify-content: center; }
.button.primary { background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: #06101f; box-shadow: 0 18px 50px rgba(60,164,255,0.28); }
.button.secondary { border: 1px solid var(--card-border); color: var(--text); background: rgba(255,255,255,0.04); }

.proof-strip { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); }
.proof-strip span { border: 1px solid var(--card-border); background: rgba(255,255,255,0.04); padding: 8px 12px; border-radius: 999px; }

.hero-panel, .form-card, .service-card, .timeline div, .fit-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.045));
    border: 1px solid var(--card-border);
    box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}

.hero-content, .hero-panel { min-width: 0; }
.hero-panel { width: 100%; max-width: 490px; justify-self: end; border-radius: 24px; padding: 14px; min-height: auto; overflow: hidden; }
.panel-header { display: flex; gap: 8px; margin-bottom: 14px; }
.panel-header span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.28); }
.hero-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(2, 6, 17, 0.64);
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(119,214,255,0.12), inset 0 -80px 120px rgba(2,6,17,0.18);
    pointer-events: none;
}
.hero-image {
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0; }
.intro { text-align: center; max-width: 950px; }
.intro p { margin-inline: auto; }
.about-section {
    border-block: 1px solid rgba(255,255,255,0.08);
}
.about-points {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.about-points span {
    border: 1px solid var(--card-border);
    background: rgba(255,255,255,0.05);
    color: var(--text);
    padding: 10px 13px;
    border-radius: 999px;
    font-weight: 700;
}
.section-heading { max-width: 720px; margin-bottom: 32px; }
.fit-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.fit-item {
    border-radius: 18px;
    padding: 20px;
    min-height: 190px;
}
.fit-item span {
    color: var(--blue-2);
    font-weight: 800;
    display: block;
    margin-bottom: 18px;
}
.fit-item p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { border-radius: 24px; padding: 24px; min-height: 260px; }
.service-card p, .timeline p, .consultation-copy li { color: var(--muted); line-height: 1.65; }
.card-icon { width: 46px; height: 46px; border-radius: 14px; background: linear-gradient(135deg, var(--blue), transparent); border: 1px solid rgba(255,255,255,0.12); margin-bottom: 28px; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline div { border-radius: 24px; padding: 24px; }
.timeline span { color: var(--blue-2); font-weight: 800; }

.consultation-section {
    width: min(1180px, calc(100% - 40px));
    margin: 40px auto 90px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: start;
}
.consultation-copy ul { padding-left: 20px; }
.form-card { border-radius: 28px; padding: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; color: var(--muted); font-weight: 700; }
.field.full { grid-column: 1 / -1; }
input, select, textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 13px 14px;
    background: rgba(2, 6, 17, 0.64);
    color: var(--text);
    outline: none;
    font: inherit;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue-2); box-shadow: 0 0 0 4px rgba(119,214,255,0.1); }
.full-button { width: 100%; margin-top: 18px; }
.alert { background: rgba(119,214,255,0.12); border: 1px solid rgba(119,214,255,0.28); padding: 14px; border-radius: 14px; margin-bottom: 18px; }
.error { color: #ffb6b6; }

.footer { color: var(--muted); text-align: center; padding: 34px 20px; border-top: 1px solid rgba(255,255,255,0.08); }

@media (max-width: 940px) {
    .nav-links { display: none; }
    .hero, .consultation-section { grid-template-columns: 1fr; min-height: auto; padding: 80px 0; }
    .hero-panel { max-width: 620px; justify-self: center; }
    .hero-image { height: auto; aspect-ratio: 16 / 10; }
    .cards, .timeline, .fit-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
    .cards, .timeline, .form-grid, .fit-grid { grid-template-columns: 1fr; }
    .field.full { grid-column: auto; }
    .hero { width: min(100% - 28px, 1180px); }
    .hero-panel { max-width: 100%; padding: 12px; border-radius: 20px; }
    .hero-image-wrap { border-radius: 14px; }
    .hero-image { aspect-ratio: 4 / 3; }
    .section, .consultation-section, .nav-shell { width: min(100% - 28px, 1180px); }
}
