:root {
    --navy: #162d50;
    --navy-mid: #1e3a5f;
    --teal: #0d9488;
    --teal-pale: #e6f7f5;
    --white: #ffffff;
    --off-white: #f7f8fa;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-700: #334155;
    --shadow-card: 0 2px 16px rgba(15, 23, 42, 0.05);
    --shadow-card-hover: 0 10px 34px rgba(15, 23, 42, 0.08);
    --radius: 16px;
    --ease: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 72px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.header .container, .header__inner {
    max-width: 1440px !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 46px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 32px; margin: 0 auto; }
.nav a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--gray-500);
    transition: color var(--ease);
    white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--navy); font-weight: 700; }
.header__right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.header__phone { font-size: 14.5px; font-weight: 600; color: var(--navy); white-space: nowrap; }
.header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--navy);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(22, 45, 80, 0.16);
    transition: background var(--ease), transform var(--ease);
}
.header__cta:hover { background: var(--navy-mid); transform: translateY(-1px); }

.page-hero {
    padding: 96px 0 42px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}
.breadcrumbs {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 16px;
}
.breadcrumbs a { color: var(--gray-500); transition: color var(--ease); }
.breadcrumbs a:hover { color: var(--navy); }
h1 {
    max-width: 860px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(30px, 4.6vw, 48px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--navy);
    margin-bottom: 14px;
}
.page-hero__sub {
    max-width: 760px;
    font-size: 17px;
    color: var(--gray-500);
}

.content-shell {
    max-width: 960px;
    margin: 0 auto;
    padding: 54px 24px 82px;
}
.direct-answer {
    border: 1px solid var(--teal-pale);
    border-radius: 14px;
    background: linear-gradient(to right, var(--teal-pale), var(--white));
    padding: 28px 30px;
    margin-bottom: 46px;
    box-shadow: var(--shadow-card);
}
.eyebrow {
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    margin-bottom: 10px;
}
.direct-answer p,
.content-shell p,
.content-shell li {
    font-size: 16px;
    color: var(--gray-700);
}
.content-shell p { margin-bottom: 16px; }
.content-shell strong { color: var(--navy); }
.content-shell h2 {
    margin: 48px 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-100);
    color: var(--navy);
    font-size: 26px;
    line-height: 1.3;
}
.content-shell h3 {
    margin: 30px 0 12px;
    color: var(--navy);
    font-size: 20px;
}
.content-shell ul, .content-shell ol {
    margin: 0 0 22px;
    padding-left: 24px;
}
.content-shell li { margin-bottom: 8px; }

.services-grid,
.proof-grid,
.process-steps,
.case-grid,
.price-groups {
    display: grid;
    gap: 18px;
    margin: 28px 0 44px;
}
.services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.process-steps { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.case-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.price-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card,
.proof-card,
.step-card,
.case-card,
.price-group {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow-card);
    transition: transform var(--ease), box-shadow var(--ease);
}
.service-card:hover,
.step-card:hover,
.case-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.service-card h2,
.service-card h3,
.proof-card h3,
.step-card h3,
.case-card h2,
.case-card h3,
.price-group h2,
.price-group h3 {
    margin: 0 0 8px;
    padding: 0;
    border: 0;
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
}
.service-card p,
.proof-card p,
.step-card p,
.case-card p,
.price-group p {
    margin: 0 0 14px;
    color: var(--gray-500);
    font-size: 15px;
}
.service-card__price {
    display: block;
    margin-top: 12px;
    color: var(--teal);
    font-weight: 800;
}
.text-link {
    display: inline-flex;
    color: var(--navy);
    font-weight: 800;
}
.text-link:hover { color: var(--teal); }

.promo-band {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    gap: 24px;
    align-items: center;
    margin: 28px 0 46px;
    padding: 28px 30px;
    border-radius: var(--radius);
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 16px 42px rgba(22, 45, 80, 0.16);
}
.promo-band h2 {
    margin: 0 0 10px;
    padding: 0;
    border: 0;
    color: var(--white);
}
.promo-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}
.promo-band__note {
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 800;
}

.case-card {
    padding: 0;
    overflow: hidden;
}
.case-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--gray-100);
}
.case-card__body { padding: 20px; }
.case-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--gray-400);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.case-card__facts {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}
.case-card__facts div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--gray-500);
    font-size: 14px;
}
.case-card__facts strong {
    color: var(--navy);
    text-align: right;
}
.price-group {
    padding: 24px;
}
.price-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}
.price-list__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}
.price-list__row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.price-list__name {
    color: var(--navy);
    font-weight: 800;
}
.price-list__desc {
    display: block;
    margin-top: 2px;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 500;
}
.price-list__price {
    color: var(--teal);
    font-weight: 900;
    white-space: nowrap;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 42px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.price-table th,
.price-table td {
    padding: 16px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--gray-100);
    font-size: 15px;
}
.price-table th {
    background: var(--navy);
    color: var(--white);
    font-weight: 800;
}
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:nth-child(even) td { background: var(--off-white); }
.price-cell {
    color: var(--teal);
    font-weight: 800;
    white-space: nowrap;
}
.note-box {
    margin: 28px 0;
    padding: 22px 24px;
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    background: var(--off-white);
}
.cta-box {
    margin-top: 56px;
    padding: 38px 34px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    background: var(--off-white);
    text-align: center;
}
.cta-box h2 {
    margin: 0 0 12px;
    padding: 0;
    border: 0;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    border-radius: 10px;
    background: var(--navy);
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(22, 45, 80, 0.18);
    transition: background var(--ease), transform var(--ease);
}
.cta-btn:hover { background: var(--navy-mid); transform: translateY(-2px); }

.footer {
    background: var(--off-white);
    border-top: 1px solid var(--gray-100);
    padding: 28px 0;
}
.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
}
.footer__copy { font-size: 14px; color: var(--gray-400); }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__link { font-size: 14px; color: var(--gray-500); transition: color var(--ease); }
.footer__link:hover { color: var(--navy); }

@media (max-width: 1024px) {
    .nav, .header__phone, .header__cta { display: none !important; }
    .header .container, .header__inner { padding: 0 20px; }
}
@media (max-width: 768px) {
    .page-hero { padding: 84px 0 34px; }
    .content-shell { padding: 40px 18px 62px; }
    .services-grid,
    .proof-grid,
    .case-grid,
    .price-groups { grid-template-columns: 1fr; }
    .promo-band {
        grid-template-columns: 1fr;
        padding: 24px 22px;
    }
    .direct-answer { padding: 22px 20px; }
    .price-table {
        display: block;
        border: 0;
        box-shadow: none;
        border-radius: 0;
        overflow: visible;
        background: transparent;
    }
    .price-table thead { display: none; }
    .price-table tbody { display: grid; gap: 12px; }
    .price-table tr {
        display: block;
        overflow: hidden;
        border: 1px solid var(--gray-100);
        border-radius: 14px;
        background: var(--white);
        box-shadow: var(--shadow-card);
    }
    .price-table td {
        display: grid;
        grid-template-columns: minmax(96px, 34%) minmax(0, 1fr);
        gap: 12px;
        padding: 14px 16px;
        overflow-wrap: anywhere;
        border-bottom: 1px solid var(--gray-100);
    }
    .price-table td::before {
        content: attr(data-label);
        color: var(--gray-400);
        font-size: 11px;
        font-weight: 800;
        line-height: 1.35;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }
    .price-table td:last-child { border-bottom: 0; }
    .price-table tr:nth-child(even) td { background: transparent; }
    .price-cell { white-space: normal; }
    .footer__inner { align-items: flex-start; }
    .footer__links { gap: 12px 18px; }
}
@media (max-width: 420px) {
    .price-table td { grid-template-columns: 1fr; gap: 5px; }
}
