:root {
    --navy: #0b1c33;
    --navy-2: #122744;
    --navy-3: #1a3658;
    --orange: #ed1c24;
    --orange-2: #c4161d;
    --teal: #14b8a6;
    --gold: #f4c430;
    --text: #1b2838;
    --muted: #5d6d80;
    --line: #dce4ee;
    --bg: #f5f8fc;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(11, 28, 51, 0.12);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Manrope, system-ui, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: Sora, Manrope, sans-serif; line-height: 1.15; margin: 0 0 0.6em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: 0.2s ease;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--orange-2); transform: translateY(-1px); }
.btn--light { background: #fff; color: var(--navy); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn--full { width: 100%; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: #000;
    border-bottom: 1px solid #1a1a1a;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__logo {
    display: block;
    height: 72px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    background: #000;
}
.brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), #ff4d4d);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: Sora, sans-serif;
    font-weight: 800;
}
.brand__text { display: flex; flex-direction: column; }
.brand__text strong { font-size: 18px; }
.brand__text small { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.brand--light { color: #fff; }
.brand--light small { color: #9fb0c6; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav > a, .nav__dropdown > a {
    padding: 10px 12px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    color: #fff;
}
.nav > a:hover, .nav__dropdown > a:hover, .is-active { color: var(--orange); }
.nav__cta {
    background: var(--orange);
    color: #fff !important;
    border-radius: 999px !important;
    padding: 10px 18px !important;
}
.nav__dropdown { position: relative; }
.nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--shadow);
}
.nav__dropdown:hover .nav__menu, .nav__dropdown:focus-within .nav__menu { display: grid; }
.nav__menu a { padding: 8px 10px; border-radius: 8px; font-size: 14px; color: var(--text); }
.nav__menu a:hover { background: var(--bg); }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 10px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 6px 0;
}

.hero {
    background:
        linear-gradient(120deg, rgba(11,28,51,.92), rgba(18,39,68,.72)),
        radial-gradient(circle at 80% 20%, rgba(237,28,36,.35), transparent 40%),
        #0b1c33;
    color: #fff;
    padding: 92px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -40% 40%;
    height: 420px;
    background: radial-gradient(circle, rgba(20,184,166,.25), transparent 60%);
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 14px;
}
.hero h1 {
    font-size: clamp(34px, 5vw, 58px);
    margin-bottom: 16px;
}
.hero p { color: #d7e2f0; font-size: 18px; max-width: 58ch; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hero-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(8px);
}
.hero-card h3 { margin-bottom: 16px; }
.hero-card li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #e6eef8;
}
.hero-card li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    position: absolute;
    left: 0;
    top: 14px;
}

.section { padding: 84px 0; }
.section--alt { background: var(--bg); }
.section--navy { background: var(--navy); color: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(28px, 3vw, 40px); }
.muted { color: var(--muted); }
.section--navy .muted { color: #b7c6d8; }

.expertise-grid, .card-grid, .stat-grid, .client-grid, .price-grid, .step-grid, .split {
    display: grid;
    gap: 22px;
}
.expertise-grid { grid-template-columns: repeat(3, 1fr); }
.card-grid { grid-template-columns: repeat(3, 1fr); }
.stat-grid { grid-template-columns: repeat(4, 1fr); }
.client-grid { grid-template-columns: repeat(4, 1fr); }
.price-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.step-grid { grid-template-columns: repeat(3, 1fr); }
.split { grid-template-columns: 1fr 1fr; align-items: center; }

.card, .service-tile, .price-card, .client-card, .stat, .step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 8px 30px rgba(11,28,51,.05);
}
.service-tile { text-align: center; transition: .2s ease; }
.service-tile:hover { transform: translateY(-6px); border-color: #f5b4b6; }
.icon-bubble {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #fde8e9;
    color: var(--orange);
    font-size: 28px;
    font-weight: 800;
    font-family: Sora, sans-serif;
}
.service-tile h3 { font-size: 18px; }

.stat { text-align: center; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: #fff; }
.stat strong { display: block; font-size: 34px; color: var(--gold); font-family: Sora, sans-serif; }
.about-list li {
    padding: 10px 0 10px 28px;
    position: relative;
}
.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 800;
}

.feature-block + .feature-block { margin-top: 56px; }
.feature-block h2 { font-size: 32px; }
.feature-media {
    min-height: 280px;
    border-radius: 24px;
    background:
        linear-gradient(160deg, rgba(237,28,36,.9), rgba(0,0,0,.85)),
        repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(255,255,255,.06) 19px);
    display: grid;
    place-items: center;
    color: #fff;
    text-align: center;
    padding: 32px;
}
.feature-media strong { font-size: 42px; font-family: Sora, sans-serif; display: block; }

.step { text-align: center; }
.step__num {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.page-hero {
    background: var(--navy);
    color: #fff;
    padding: 64px 0 52px;
}
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); }
.crumbs { color: #9fb0c6; font-size: 14px; margin-bottom: 12px; }
.crumbs a:hover { color: var(--orange); }

.price-card.featured {
    background: var(--navy);
    color: #fff;
    transform: scale(1.04);
    border-color: transparent;
}
.price-card .amount { font-size: 42px; font-family: Sora, sans-serif; }
.price-card li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.price-card.featured li { border-color: rgba(255,255,255,.12); }
.badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.form { display: grid; gap: 14px; }
.form label { font-weight: 700; font-size: 14px; display: grid; gap: 6px; }
.form input, .form select, .form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    background: #fff;
}
.form textarea { min-height: 140px; resize: vertical; }
.form-errors { color: #b42318; font-size: 14px; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; }
.info-card { background: var(--navy); color: #fff; border-radius: 24px; padding: 32px; }
.info-card a { color: var(--gold); }

.site-footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(237, 28, 36, .18), transparent 34%),
        #000;
    color: #cfcfd4;
    padding: 72px 0 22px;
    border-top: 3px solid var(--orange);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr .75fr 1.05fr;
    gap: 40px 32px;
    align-items: start;
}
.site-footer h3 {
    color: #fff;
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-copy {
    color: #a7a7b0;
    max-width: 36ch;
    margin-bottom: 22px;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #2a2a2a;
    display: grid;
    place-items: center;
    color: #fff;
    background: #111;
    transition: .2s ease;
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}
.footer-links { display: grid; gap: 10px; }
.footer-links a {
    color: #b8b8c0;
    font-weight: 600;
    font-size: 15px;
}
.footer-links a:hover { color: #fff; }
.footer-contact {
    background: #111;
    border: 1px solid #242424;
    border-radius: 20px;
    padding: 24px;
}
.footer-contact-list { display: grid; gap: 12px; margin-bottom: 20px; }
.footer-contact-list li {
    display: grid;
    gap: 2px;
}
.footer-contact-list span {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #8a8a94;
}
.footer-contact-list a,
.footer-contact-list strong {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}
.footer-contact-list a:hover { color: var(--orange); }
.footer-contact__btn { width: 100%; }
.city-links {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid #1c1c1c;
}
.city-links h3 { margin-bottom: 14px; }
.city-links__list { display: flex; flex-wrap: wrap; gap: 8px; }
.city-links__list a {
    font-size: 13px;
    color: #b8b8c0;
    background: transparent;
    border: 1px solid #2a2a2a;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 600;
}
.city-links__list a:hover {
    color: #fff;
    border-color: var(--orange);
    background: rgba(237, 28, 36, .12);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid #1c1c1c;
    font-size: 13px;
    color: #8a8a94;
}
.footer-bottom p { margin: 0; }

.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 80; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(8,19,34,.7); }
.modal__panel {
    position: relative;
    width: min(460px, calc(100% - 24px));
    margin: 8vh auto;
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    z-index: 1;
}
.modal__close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.points { display: grid; gap: 8px; margin: 18px 0 24px; }
.points li {
    background: var(--bg);
    padding: 10px 14px;
    border-radius: 10px;
}

.cta-banner {
    background:
        radial-gradient(circle at 88% 20%, rgba(237, 28, 36, .45), transparent 42%),
        linear-gradient(135deg, #050505 0%, #14080a 55%, #2a0a0d 100%);
    color: #fff;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--orange);
}
.cta-banner__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.cta-banner h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 10px;
}
.cta-banner p {
    margin: 0;
    color: #d2d6de;
    max-width: 56ch;
}
.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}

.service-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.service-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 22px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 28px;
    min-height: 100%;
    box-shadow: 0 10px 32px rgba(11, 28, 51, .06);
    transition: .22s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: #ed1c24;
    box-shadow: 0 18px 40px rgba(237, 28, 36, .12);
}
.service-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #fff5f5, #fde8e9);
    color: var(--orange);
    flex-shrink: 0;
}
.service-card__icon svg {
    width: 34px;
    height: 34px;
}
.service-card__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 1.25;
}
.service-card p {
    color: var(--muted);
    margin-bottom: 14px;
}
.service-card ul {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}
.service-card li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: #3d4d5f;
}
.service-card li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    position: absolute;
    left: 0;
    top: 8px;
}
.service-card__link {
    margin-top: auto;
    color: var(--orange);
    font-weight: 800;
    font-size: 14px;
}
.service-card:hover .service-card__link {
    letter-spacing: .02em;
}

.page-hero--services {
    background:
        radial-gradient(circle at 90% 10%, rgba(237, 28, 36, .28), transparent 36%),
        var(--navy);
}

@media (max-width: 980px) {
    .cta-banner__inner { flex-direction: column; align-items: flex-start; }
    .service-board { grid-template-columns: 1fr; }
    .service-card { grid-template-columns: 1fr; }
    .hero__grid, .split, .contact-grid, .price-grid, .expertise-grid, .card-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stat-grid, .client-grid, .step-grid { grid-template-columns: 1fr 1fr; }
    .price-card.featured { transform: none; }
    .nav-toggle { display: block; }
    .nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #000;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px 20px;
        border-bottom: 1px solid #222;
        box-shadow: var(--shadow);
    }
    .nav.is-open { display: flex; }
    .nav__menu { position: static; display: grid; box-shadow: none; border: 0; padding: 0 0 0 12px; background: transparent; }
    .nav__menu a { color: #fff; }
    .brand__logo { height: 56px; }
}
@media (max-width: 640px) {
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; }
    .stat-grid, .client-grid, .step-grid { grid-template-columns: 1fr; }
    .hero { padding: 56px 0; }
}
.page-hero h1 {
        margin-bottom: 10px !important;
}












