:root {
    --primary: #16324f;
    --primary-2: #244f78;
    --primary-3: #3a6c9a;
    --accent: #d97706;
    --bg: #f6f9fc;
    --surface: #ffffff;
    --surface-soft: #ecf4fa;
    --surface-deep: #0f2740;
    --text: #26323f;
    --muted: #667587;
    --border: #d8e2ec;
    --shadow-xs: 0 4px 14px rgba(15, 39, 64, 0.05);
    --shadow-sm: 0 10px 25px rgba(15, 39, 64, 0.07);
    --shadow-md: 0 18px 40px rgba(15, 39, 64, 0.1);
    --shadow-lg: 0 28px 70px rgba(15, 39, 64, 0.14);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(58, 108, 154, 0.08), transparent 28%),
        linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::selection {
    color: #fff;
    background: var(--primary-3);
}

:focus-visible {
    outline: 3px solid rgba(217, 119, 6, 0.55);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 2000;
    padding: 10px 16px;
    border-radius: 10px;
    color: #fff;
    background: var(--primary);
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

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

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
}

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

.section {
    padding: 96px 0;
}

.section[id] {
    scroll-margin-top: 110px;
}

.section--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(236, 244, 250, 0.7));
    border-top: 1px solid rgba(216, 226, 236, 0.75);
    border-bottom: 1px solid rgba(216, 226, 236, 0.75);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--primary-3);
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary-3);
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.12;
    color: var(--primary);
}

p {
    margin: 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    max-width: 920px;
    margin-bottom: 16px;
}

.section-title--compact {
    font-size: clamp(1.9rem, 3.5vw, 2.2rem);
    max-width: 650px;
}

.section-intro {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.06rem;
    margin-bottom: 42px;
}

.section-intro--compact {
    margin-bottom: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: 0.22s ease;
    cursor: pointer;
    white-space: nowrap;
    gap: 10px;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
    background: var(--primary-2);
}

.btn--secondary {
    background: rgba(236, 244, 250, 0.95);
    border-color: rgba(58, 108, 154, 0.22);
    color: var(--primary);
    box-shadow: var(--shadow-xs);
}

.btn--secondary:hover {
    background: rgba(222, 236, 248, 0.98);
    border-color: var(--primary-3);
}

.btn--accent {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn--accent:hover {
    filter: brightness(1.03);
}

.topbar {
    background: var(--surface-deep);
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.93rem;
}

.topbar__inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 8px 0;
}

.topbar__group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.topbar a {
    transition: color 0.2s ease;
}

.topbar a:hover {
    color: #fff;
}

.topbar__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar__status::before,
.badge__dot {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #60d394;
    box-shadow: 0 0 0 4px rgba(96, 211, 148, 0.14);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(216, 226, 236, 0.85);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-xs);
    background: rgba(255, 255, 255, 0.94);
}

.site-header__inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 250px;
}

.brand-logo {
    width: 58px;
    height: auto;
    flex: 0 0 auto;
    border-radius: 50%;
    object-fit: contain;
    box-shadow: var(--shadow-sm);
}

.logo__title {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo__subtitle {
    font-size: 0.84rem;
    color: var(--muted);
    display: block;
    margin-top: 2px;
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--primary);
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xs);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    position: relative;
    transition: 0.2s ease;
}

.nav-toggle span::before {
    position: absolute;
    top: -6px;
}

.nav-toggle span::after {
    position: absolute;
    top: 6px;
}

.nav-toggle.is-active span {
    background: transparent;
}

.nav-toggle.is-active span::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.is-active span::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.nav__links a {
    position: relative;
    font-weight: 600;
    color: var(--text);
}

.nav__links a:hover {
    color: var(--primary-2);
}

.nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--primary-3);
    transition: width 0.2s ease;
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 58px;
    background-image: linear-gradient(rgba(58, 108, 154, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(58, 108, 154, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    right: -120px;
    top: -80px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(58, 108, 154, 0.15), rgba(58, 108, 154, 0.02) 58%, transparent 70%);
}

.hero::after {
    left: -100px;
    bottom: -180px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.09), rgba(217, 119, 6, 0.01) 58%, transparent 70%);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 54px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: clamp(2.55rem, 5vw, 4.5rem);
    letter-spacing: -0.04em;
    max-width: 780px;
    margin-bottom: 20px;
    text-wrap: balance;
}

.hero__title--inner {
    max-width: 900px;
}

.hero__lead {
    max-width: 720px;
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 28px;
    font-size: clamp(1.06rem, 1.6vw, 1.2rem);
    line-height: 1.7;
}

.hero__lead--inner {
    margin-bottom: 0;
}

.hero__copy {
    display: grid;
    gap: 8px;
    margin-bottom: 28px;
}

.hero__copy .hero__lead {
    margin-bottom: 0;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}

.hero-highlight {
    position: relative;
    overflow: hidden;
    min-height: 146px;
    padding: 20px 20px 18px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(236, 244, 250, 0.95));
    border: 1px solid rgba(58, 108, 154, 0.16);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hero-highlight::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-3), rgba(217, 119, 6, 0.85));
}

.hero-highlight::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -34px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58, 108, 154, 0.14), rgba(58, 108, 154, 0.02) 62%, transparent 72%);
    pointer-events: none;
}

.hero-highlight:hover {
    transform: translateY(-3px);
    border-color: rgba(58, 108, 154, 0.28);
    box-shadow: var(--shadow-md);
}

.hero-highlight__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    min-height: 0;
    margin-bottom: 16px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--primary-3);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(58, 108, 154, 0.14);
    box-shadow: var(--shadow-xs);
}

.hero-highlight__label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--accent), var(--primary-3));
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
    flex: 0 0 8px;
}

.hero-highlight strong {
    display: block;
    color: var(--primary);
    font-size: 1.05rem;
    line-height: 1.35;
    max-width: none;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.hero-highlight:nth-child(2) {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(232, 241, 249, 0.98));
}

.hero-highlight:nth-child(3) {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(245, 241, 233, 0.88));
}

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

.stat {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-xs);
}

.stat strong {
    display: block;
    font-size: 1.06rem;
    margin-bottom: 6px;
    color: var(--primary);
}

.stat span {
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.96));
    border: 1px solid rgba(216, 226, 236, 0.94);
    border-radius: 30px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0 28px auto;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-3), var(--accent));
}

.hero-visual__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.hero-visual__title {
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-visual__overline {
    display: block;
    margin-bottom: 3px;
    color: var(--primary-3);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--surface-soft);
    border: 1px solid rgba(58, 108, 154, 0.16);
}

.badge__dot {
    margin-right: 8px;
    flex: 0 0 auto;
}

.dashboard {
    display: grid;
    gap: 16px;
}

.dashboard__card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow-xs);
}

.dashboard__card--hero {
    background: linear-gradient(135deg, rgba(22, 50, 79, 1), rgba(58, 108, 154, 0.94));
    color: #fff;
    border: 0;
}

.dashboard__label {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    opacity: 0.9;
    margin-bottom: 10px;
}

.dashboard__card h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
    color: inherit;
}

.dashboard__card p {
    font-size: 0.97rem;
    color: inherit;
    opacity: 0.92;
}

.dashboard__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 16px;
}

.kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.kpis--services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kpi {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.kpi strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.kpi span {
    font-size: 0.87rem;
    opacity: 0.9;
}

.mini-lines {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.mini-line {
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(58, 108, 154, 0.18), rgba(58, 108, 154, 0.08));
    overflow: hidden;
    position: relative;
}

.mini-line::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--w, 72%);
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--primary-3));
}

.trust-strip {
    padding-top: 26px;
}

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

.trust-item {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-xs);
}

.hero-visual .trust-strip {
    padding-top: 24px;
}

.hero-visual .trust-strip__inner {
    gap: 10px;
}

.hero-visual .trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 14px 8px;
    font-size: 0.86rem;
    line-height: 1.35;
}

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

.cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-intro {
    display: grid;
    gap: 8px;
}

.card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-3), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(58, 108, 154, 0.28);
}

.card:hover::after {
    transform: scaleX(1);
}

.card__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(180deg, var(--surface-soft), #fff);
    border: 1px solid var(--border);
    color: var(--primary);
    font-weight: 800;
    box-shadow: var(--shadow-xs);
}

.card h3 {
    font-size: 1.22rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    gap: 36px;
    align-items: start;
}

.panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 244, 250, 0.94));
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.check-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.check-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 18px;
}

.check-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}

.check-item span {
    color: var(--muted);
}

.steps {
    display: grid;
    gap: 16px;
}

.step {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-xs);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.step:hover {
    transform: translateX(5px);
    border-color: rgba(58, 108, 154, 0.3);
}

.step__number {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-3));
    box-shadow: var(--shadow-xs);
}

.step h3 {
    font-size: 1.08rem;
    margin-bottom: 6px;
}

.step p {
    color: var(--muted);
}

.obligation-visual {
    min-height: 100%;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: linear-gradient(145deg, #fff, var(--surface-soft));
    box-shadow: var(--shadow-md);
}

.obligation-visual img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
}

.obligation-visual__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 620px;
    color: var(--muted);
    background-image: linear-gradient(rgba(58,108,154,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(58,108,154,.055) 1px, transparent 1px);
    background-size: 32px 32px;
}

.obligation-visual__placeholder span {
    color: var(--primary-3);
    font-size: 3rem;
}

.pricing-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.98));
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 34px;
    box-shadow: var(--shadow-lg);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    overflow: hidden;
    border-radius: 18px;
}

.pricing-table thead th {
    background: var(--surface-soft);
    color: var(--primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 800;
    text-align: left;
}

.pricing-table th,
.pricing-table td {
    padding: 18px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.pricing-table tbody tr {
    background: rgba(255, 255, 255, 0.95);
}

.pricing-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(236, 244, 250, 0.9);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.96rem;
}

.home-pricing { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: stretch; }
.home-pricing__rates { display: grid; gap: 12px; }
.home-pricing__rates article { display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; column-gap: 28px; align-items: center; padding: 22px 25px; border: 1px solid var(--border); border-radius: 19px; background: #fff; box-shadow: var(--shadow-xs); transition: transform .2s ease, box-shadow .2s ease; }
.home-pricing__rates article:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.home-pricing__rates article.is-featured { border-color: transparent; color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2)); box-shadow: var(--shadow-md); }
.home-pricing__rates article > span { grid-row: 1 / 3; color: var(--primary); font-weight: 750; }
.home-pricing__rates article.is-featured > span { color: #fff; }
.home-pricing__rates article > strong { color: var(--primary); font-size: 1.4rem; white-space: nowrap; }
.home-pricing__rates article.is-featured > strong { color: #fff; }
.home-pricing__rates article > strong small { color: var(--muted); font-size: .62em; }
.home-pricing__rates article.is-featured > strong small { color: rgba(255,255,255,.62); }
.home-pricing__rates article > small { color: var(--muted); text-align: right; }
.home-pricing__rates article.is-featured > small { color: rgba(255,255,255,.72); }
.home-pricing__summary { padding: 30px; border-radius: 25px; color: #fff; background: linear-gradient(145deg, #173956, #0f2740); box-shadow: var(--shadow-lg); }
.home-pricing__label { display: block; margin-bottom: 10px; color: #bcd7ed; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.home-pricing__summary h3 { margin-bottom: 22px; color: #fff; font-size: 1.45rem; }
.home-pricing__summary ul { margin: 0; padding: 0; list-style: none; }
.home-pricing__summary li { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .9rem; }
.home-pricing__summary li span { color: rgba(255,255,255,.7); }
.home-pricing__summary li strong { text-align: right; white-space: nowrap; }
.home-pricing__summary p { margin: 20px 0; color: rgba(255,255,255,.72); font-size: .88rem; }
.home-pricing__summary .btn { width: 100%; color: var(--primary); background: #fff; box-shadow: none; }

.faq {
    display: grid;
    gap: 16px;
    max-width: 980px;
}

.faq__item {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-xs);
    overflow: hidden;
}

.faq__button {
    width: 100%;
    padding: 22px;
    background: transparent;
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    text-align: left;
    cursor: pointer;
}

.faq__button h3 {
    font-size: 1.06rem;
    color: var(--primary);
}

.faq__icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface-soft);
    color: var(--primary);
    position: relative;
}

.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: 0.2s ease;
}

.faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.is-open .faq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}

.faq__answer {
    display: none;
    padding: 0 22px 22px;
    color: var(--muted);
}

.faq__answer a {
    color: var(--primary-2);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq__item.is-open .faq__answer {
    display: block;
}

.faq__item.is-open {
    border-color: rgba(58, 108, 154, 0.32);
    box-shadow: var(--shadow-sm);
}

.cta-block {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    border-radius: 30px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.cta-block h2 {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin-bottom: 10px;
}

.cta-block p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
}

.cta-block__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #bcd7ed;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.site-footer {
    margin-top: 96px;
    background: linear-gradient(180deg, #122c47 0%, #0d2135 100%);
    color: rgba(255, 255, 255, 0.84);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 0.9fr 0.95fr;
    gap: 28px;
    padding: 62px 0 34px;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
    margin-bottom: 14px;
}

.site-footer p,
.site-footer a,
.site-footer li {
    color: rgba(255, 255, 255, 0.8);
}

.site-footer a:hover {
    color: #fff;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0 28px;
    font-size: 0.94rem;
}

.hero-page {
    padding-bottom: 36px;
}

.content-shell {
    width: min(920px, 100%);
    position: relative;
    z-index: 1;
}

.content-panel {
    padding: 34px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.content-panel h2,
.content-panel h3,
.content-panel p,
.content-panel ul {
    margin-top: 0;
}

.content-panel h2,
.content-panel h3 {
    margin-bottom: 14px;
}

.content-panel h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.content-panel p,
.content-panel ul {
    margin-bottom: 18px;
    color: var(--muted);
}

.content-panel ul {
    padding-left: 22px;
}

.content-panel a {
    color: var(--primary-2);
    text-decoration: underline;
}

/* Services */
.services-hero {
    padding-bottom: 78px;
}

.services-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.services-summary {
    padding: 32px;
    border: 1px solid rgba(58, 108, 154, .18);
    border-radius: 28px;
    background: linear-gradient(145deg, #fff, var(--surface-soft));
    box-shadow: var(--shadow-lg);
}

.services-summary__label {
    color: var(--primary-3);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.services-summary > strong {
    display: block;
    margin: 7px 0 20px;
    color: var(--primary);
    font-size: 1.65rem;
}

.services-summary ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-summary li {
    padding: 11px 0 11px 28px;
    border-top: 1px solid var(--border);
    position: relative;
    color: var(--text);
    font-weight: 600;
}

.services-summary li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 19px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(217, 119, 6, .1);
}

.services-nav {
    position: sticky;
    top: 86px;
    z-index: 100;
    border-block: 1px solid var(--border);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
}

.services-nav__inner {
    display: flex;
    gap: 8px;
    padding: 12px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.services-nav__inner a {
    flex: 0 0 auto;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 700;
    transition: .2s ease;
}

.services-nav__inner a:hover {
    color: var(--primary);
    background: var(--surface-soft);
}

.service-heading {
    max-width: 900px;
}

.service-heading > div,
.service-duo__content > .service-number {
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 12px;
    color: #fff;
    background: var(--primary);
    font-size: .82rem;
    font-weight: 800;
}

.service-heading .eyebrow,
.service-duo .eyebrow,
.service-feature .eyebrow {
    margin-bottom: 0;
}

.service-paths {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.service-path {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-md);
}

.service-path__header {
    min-height: 210px;
    padding: 32px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.service-path--accent .service-path__header {
    background: linear-gradient(135deg, #244f78, #3a6c9a);
}

.service-path__tag {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 5px 10px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.service-path__header h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.service-path__header p {
    color: rgba(255,255,255,.82);
}

.service-list {
    margin: 0;
    padding: 12px 32px 24px;
    list-style: none;
}

.service-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.service-list li:last-child { border-bottom: 0; }
.service-list li > span { color: var(--primary-3); font-size: .78rem; font-weight: 800; }
.service-list strong { display: block; margin-bottom: 4px; color: var(--primary); }
.service-list p { color: var(--muted); font-size: .94rem; }

.service-feature {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 70px;
    align-items: center;
}

.service-feature__intro h2 {
    margin: 18px 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.service-feature__intro p { color: var(--muted); font-size: 1.05rem; }
.service-feature__steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-feature__steps div { min-height: 150px; padding: 24px; border: 1px solid var(--border); border-radius: 20px; background: #fff; box-shadow: var(--shadow-xs); }
.service-feature__steps span { display: block; margin-bottom: 24px; color: var(--accent); font-weight: 800; }
.service-feature__steps p { color: var(--primary); font-weight: 650; }

.service-duo { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.service-duo__content .section-title { margin-top: 18px; }
.code-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.code-cards article { padding: 28px; border: 1px solid var(--border); border-radius: 24px; background: #fff; box-shadow: var(--shadow-md); }
.code-cards article > span { color: var(--primary-3); font-size: .76rem; font-weight: 800; text-transform: uppercase; }
.code-cards strong { display: block; margin: 10px 0; color: var(--primary); font-size: 2rem; }
.code-cards p { color: var(--muted); }
.code-cards__note { grid-column: 1 / -1; padding: 14px; text-align: center; color: var(--primary); background: var(--surface-soft); border-radius: 14px; font-weight: 700; }

.macf-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.macf-grid article { min-height: 250px; padding: 25px; border: 1px solid var(--border); border-radius: 22px; background: #fff; box-shadow: var(--shadow-xs); transition: transform .2s ease, box-shadow .2s ease; }
.macf-grid article:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.macf-grid span { display: block; margin-bottom: 42px; color: var(--accent); font-size: .78rem; font-weight: 800; }
.macf-grid h3 { margin-bottom: 10px; font-size: 1.12rem; }
.macf-grid p { color: var(--muted); font-size: .94rem; }

/* Tarification */
.pricing-hero { padding-bottom: 78px; }
.pricing-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.pricing-promise { display: grid; grid-template-columns: 72px 1fr; gap: 22px; align-items: center; padding: 30px; border: 1px solid rgba(58,108,154,.2); border-radius: 26px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-lg); }
.pricing-promise__icon { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 22px; color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-3)); font-size: 2rem; font-weight: 800; }
.pricing-promise strong { display: block; margin-bottom: 6px; color: var(--primary); font-size: 1.2rem; }
.pricing-promise p { color: var(--muted); }

.volume-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: center; padding-top: 10px; }
.volume-card { position: relative; overflow: hidden; padding: 28px 30px 26px; border: 1px solid var(--border); border-radius: 25px; background: linear-gradient(160deg, #fff 55%, #f6f9fc); box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.volume-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--primary-3), rgba(58,108,154,.15)); }
.volume-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.volume-card--featured { color: #fff; border-color: transparent; background: linear-gradient(145deg, #173956, #285b83); box-shadow: 0 20px 45px rgba(15,39,64,.2); transform: translateY(-10px); }
.volume-card--featured::before { background: linear-gradient(90deg, #efb457, var(--accent)); }
.volume-card--featured:hover { transform: translateY(-14px); }
.volume-card__label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; color: var(--primary-3); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.volume-card__label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(217,119,6,.1); }
.volume-card--featured .volume-card__label { color: rgba(255,255,255,.82); }
.volume-card--featured .volume-card__label::before { background: #efb457; box-shadow: 0 0 0 4px rgba(239,180,87,.15); }
.volume-card__range { display: flex; align-items: baseline; gap: .16em; color: var(--primary); font-size: clamp(2.5rem, 4.2vw, 3.65rem); font-weight: 800; line-height: 1; letter-spacing: -.05em; white-space: nowrap; }
.volume-card__range small { color: var(--muted); font-size: .38em; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }
.volume-card--featured .volume-card__range { color: #fff; }
.volume-card--featured .volume-card__range small { color: rgba(255,255,255,.62); }
.volume-card > span:not(.volume-card__label) { color: var(--muted); font-size: .9rem; }
.volume-card--featured > span:not(.volume-card__label) { color: rgba(255,255,255,.72); }
.volume-card__price { display: flex; justify-content: space-between; align-items: end; gap: 12px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--border); }
.volume-card--featured .volume-card__price { border-color: rgba(255,255,255,.2); }
.volume-card__price strong { display: block; color: var(--primary); font-size: 1.4rem; white-space: nowrap; }
.volume-card__price strong small { color: var(--muted); font-size: .62em; font-weight: 700; }
.volume-card--featured .volume-card__price strong { color: #fff; }
.volume-card--featured .volume-card__price strong small { color: rgba(255,255,255,.62); }
.volume-card__price small { color: var(--muted); }
.volume-card--featured .volume-card__price small { color: rgba(255,255,255,.72); }

.management-fee { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; margin-top: 20px; padding: 18px 24px; border: 1px solid rgba(217,119,6,.2); border-radius: 18px; background: rgba(255,250,242,.9); }
.management-fee > div { display: flex; align-items: center; gap: 12px; color: var(--primary); }
.management-fee > div span { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 9px; color: #fff; background: var(--accent); font-weight: 800; }
.management-fee p { color: var(--muted); }
.management-fee > strong { color: var(--primary); font-size: 1.25rem; }
.management-fee small { color: var(--muted); font-weight: 500; }

.pricing-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.pricing-service { padding: 30px; border: 1px solid var(--border); border-radius: 25px; background: #fff; box-shadow: var(--shadow-sm); }
.pricing-service--wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr .75fr; column-gap: 50px; }
.pricing-service--wide .pricing-service__top, .pricing-service--wide h2 { grid-column: 1; }
.pricing-service--wide > p { grid-column: 1; }
.pricing-service--wide .pricing-service__amount { grid-column: 2; grid-row: 1 / 4; align-self: center; border-top: 0; border-left: 1px solid var(--border); padding: 30px 0 30px 50px; }
.pricing-service__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 26px; }
.pricing-service__number { color: var(--primary-3); font-size: .78rem; font-weight: 800; }
.pricing-service__tag { padding: 6px 10px; border-radius: 999px; color: var(--primary); background: var(--surface-soft); font-size: .73rem; font-weight: 800; text-transform: uppercase; }
.pricing-service h2 { margin-bottom: 12px; font-size: 1.45rem; }
.pricing-service > p { color: var(--muted); }
.pricing-service__gift { display: inline-flex; margin-top: 20px; padding: 8px 12px; border-radius: 10px; color: #23613f; background: #e9f8ef; font-size: .85rem; font-weight: 700; }
.pricing-service__amount { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border); }
.pricing-service__amount strong { display: block; color: var(--primary); font-size: 1.7rem; }
.pricing-service__amount span, .pricing-service__minimum { color: var(--muted); font-size: .88rem; }
.pricing-service__minimum { display: block; margin-top: 10px; }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-card { display: flex; flex-direction: column; min-height: 300px; padding: 28px; border: 1px solid var(--border); border-radius: 23px; background: #fff; box-shadow: var(--shadow-xs); transition: transform .2s ease, box-shadow .2s ease; }
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote-card > span { color: var(--primary-3); font-size: .76rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.quote-card h3 { margin: 24px 0 12px; font-size: 1.25rem; }
.quote-card p { color: var(--muted); }
.quote-card a { margin-top: auto; padding-top: 26px; color: var(--primary); font-weight: 800; }
.quote-card a span { color: var(--accent); }

.benefit-list { display: grid; gap: 12px; }
.benefit-list div { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: center; padding: 18px; border: 1px solid var(--border); border-radius: 16px; background: #fff; }
.benefit-list span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 11px; color: #fff; background: var(--primary-3); font-weight: 800; }
.benefit-list p { color: var(--text); font-weight: 600; }

/* Contact */
.contact-hero { padding-bottom: 72px; }
.contact-hero__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.contact-direct { padding: 28px; border: 1px solid rgba(58,108,154,.2); border-radius: 24px; background: #fff; box-shadow: var(--shadow-lg); }
.contact-direct > span { color: var(--primary-3); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-direct strong { display: block; margin: 8px 0 16px; color: var(--primary); font-size: 1.5rem; }
.contact-direct a { display: flex; justify-content: space-between; gap: 16px; padding-top: 16px; border-top: 1px solid var(--border); color: var(--primary-2); font-weight: 700; }
.contact-direct a span { color: var(--accent); }
.contact-section { padding-top: 72px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.contact-card { display: flex; flex-direction: column; min-height: 390px; padding: 30px; border: 1px solid var(--border); border-radius: 26px; background: #fff; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.contact-card--address { color: #fff; border-color: transparent; background: linear-gradient(145deg, var(--primary), var(--primary-2)); }
.contact-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; margin-bottom: 40px; border-radius: 16px; color: var(--primary); background: var(--surface-soft); }
.contact-card--address .contact-card__icon { color: #fff; background: rgba(255,255,255,.14); }
.contact-card__icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-card__label { margin-bottom: 9px; color: var(--primary-3); font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-card--address .contact-card__label { color: #bcd7ed; }
.contact-card h2 { margin-bottom: 14px; font-size: 1.55rem; }
.contact-card--address h2 { color: #fff; }
.contact-card address, .contact-card p { color: var(--muted); font-style: normal; }
.contact-card--address address { color: rgba(255,255,255,.82); font-size: 1.05rem; }
.contact-card__link { margin-top: auto; padding-top: 24px; color: #fff; font-weight: 700; }
.contact-card__phones { display: grid; gap: 12px; margin-top: auto; }
.contact-card__phones a { padding: 14px 16px; border: 1px solid var(--border); border-radius: 14px; color: var(--primary); font-size: 1.12rem; font-weight: 800; transition: background .2s ease; }
.contact-card__phones a:hover { background: var(--surface-soft); }
.contact-card__phones small { display: block; margin-bottom: 2px; color: var(--muted); font-size: .72rem; font-weight: 600; text-transform: uppercase; }
.contact-card__button { display: flex; justify-content: space-between; gap: 12px; margin-top: auto; padding: 14px 16px; border-radius: 13px; color: #fff; background: var(--primary); font-size: .9rem; font-weight: 700; }
.contact-help { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.contact-help__items { display: grid; gap: 12px; }
.contact-help__items div { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: center; padding: 16px 18px; border: 1px solid var(--border); border-radius: 16px; background: #fff; }
.contact-help__items span { color: var(--accent); font-size: .78rem; font-weight: 800; }
.contact-help__items p { color: var(--text); font-weight: 600; }

/* FAQ page */
.faq-hero { padding-bottom: 72px; }
.faq-hero__content { max-width: 900px; position: relative; z-index: 1; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.faq-layout__heading { position: sticky; top: 170px; }
.faq-layout__heading .section-title { margin-top: 20px; }
.faq--page { max-width: none; }
.faq--page .faq__button { padding: 24px 26px; }
.faq--page .faq__answer { padding: 0 26px 25px; line-height: 1.75; }

.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.js.reveal-enabled .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease var(--reveal-delay, 0ms), transform 0.6s ease var(--reveal-delay, 0ms);
}

.js.reveal-enabled .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .hero__grid,
    .split,
    .cta-block,
    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .cards-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .trust-strip__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .macf-grid { grid-template-columns: repeat(3, 1fr); }

    .pricing-hero__grid { grid-template-columns: 1fr; gap: 36px; }

    .contact-hero__grid { grid-template-columns: 1fr; gap: 30px; }

    .home-pricing { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 10px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--border);
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
    }

    .nav.is-open {
        display: flex;
    }

    .nav__links {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .nav-wrap {
        position: relative;
    }

    .hero-stats,
    .hero-highlights,
    .cards-4,
    .dashboard__grid,
    .kpis,
    .trust-strip__inner {
        grid-template-columns: 1fr;
    }

    .cards-3 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 76px 0;
    }

    .services-hero__grid,
    .service-paths,
    .service-feature,
    .service-duo { grid-template-columns: 1fr; gap: 36px; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-card { min-height: 340px; }
    .contact-help { grid-template-columns: 1fr; gap: 30px; }

    .faq-layout { grid-template-columns: 1fr; gap: 28px; }
    .faq-layout__heading { position: static; }

    .volume-pricing,
    .quote-grid { grid-template-columns: 1fr; }

    .volume-pricing { padding-top: 0; }
    .volume-card--featured, .volume-card--featured:hover { transform: none; }

    .pricing-service--wide { grid-template-columns: 1fr; }
    .pricing-service--wide .pricing-service__amount { grid-column: 1; grid-row: auto; border-left: 0; border-top: 1px solid var(--border); padding: 22px 0 0; }

    .services-nav { top: 78px; }

    .macf-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
    .topbar__inner,
    .topbar__group,
    .site-header__inner,
    .hero__actions {
        align-items: flex-start;
    }

    .site-header__inner {
        min-height: 78px;
    }

    .topbar__inner {
        min-height: 38px;
        justify-content: center;
        padding: 7px 0;
    }

    .topbar__group:first-child span,
    .topbar__group:first-child a:first-child,
    .topbar__group:last-child {
        display: none;
    }

    .logo {
        min-width: 0;
    }

    .logo__subtitle {
        display: none;
    }

    .hero {
        padding: 54px 0 30px;
    }

    .pricing-box,
    .hero-visual,
    .panel,
    .card,
    .cta-block,
    .content-panel {
        padding: 24px;
    }

    .services-summary,
    .service-path__header { padding: 24px; }

    .service-list { padding-inline: 24px; }

    .service-feature__steps,
    .code-cards,
    .macf-grid { grid-template-columns: 1fr; }

    .pricing-services { grid-template-columns: 1fr; }
    .pricing-service--wide { grid-column: auto; }
    .management-fee { grid-template-columns: 1fr; gap: 10px; }
    .pricing-promise { grid-template-columns: 56px 1fr; padding: 22px; }
    .pricing-promise__icon { width: 56px; height: 56px; border-radius: 17px; font-size: 1.5rem; }

    .home-pricing__rates article { grid-template-columns: 1fr; gap: 4px; }
    .home-pricing__rates article > span { grid-row: auto; margin-bottom: 12px; }
    .home-pricing__rates article > small { text-align: left; }

    .macf-grid article { min-height: auto; }

    .macf-grid span { margin-bottom: 24px; }

    .step {
        grid-template-columns: 1fr;
    }

    .pricing-table,
    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table th,
    .pricing-table td {
        display: block;
        width: 100%;
    }

    .pricing-table thead {
        display: none;
    }

    .pricing-table tr {
        border: 1px solid var(--border);
        border-radius: 18px;
        margin-bottom: 16px;
        overflow: hidden;
    }

    .pricing-table td:last-child {
        border-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
