:root {
    --background: #f6f5f9;
    --background-soft: #f2f0f5;
    --surface: #ffffff;
    --surface-muted: #f2f0f5;
    --surface-deep: #e5e0ed;
    --text: #201833;
    --text-muted: #675e76;
    --text-soft: #948aa4;
    --accent: #2f1e59;
    --accent-dark: #2f1e59;
    --accent-light: #d8d1e8;
    --gold: #b9915b;
    --gold-dark: #765a35;
    --gold-soft: #f7ecd9;
    --border-gold: rgba(185, 145, 91, 0.32);
    --sage: #756a91;
    --sage-soft: #e7e2ee;
    --border: #ddd7e8;
    --white: #ffffff;
    --shadow-soft: 0 18px 50px rgba(47, 30, 89, 0.10);
    --shadow-photo: 0 26px 70px rgba(47, 30, 89, 0.22);
    --shadow-photo-soft: 0 16px 34px rgba(47, 30, 89, 0.15);
    --shadow-card: 0 18px 46px rgba(47, 30, 89, 0.09);
    --shadow-card-strong: 0 24px 64px rgba(47, 30, 89, 0.14);
    --shadow-menu: 0 24px 70px rgba(47, 30, 89, 0.16);
    --shadow-luxury: 0 28px 80px rgba(39, 25, 67, 0.13);
    --image-radius: 14px;
    --image-radius-lg: 18px;
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Inter", Arial, sans-serif;
    --header-height: 118px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    background: linear-gradient(180deg, #fbfafd 0%, var(--background) 36%, #f7f3ec 100%);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0;
    overflow-x: hidden;
}

body.mobile-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

:focus-visible {
    outline: 3px solid rgba(47, 30, 89, 0.28);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    left: 18px;
    top: 16px;
    z-index: 2000;
    transform: translateY(-140%);
    background: var(--accent-dark);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 999px;
    transition: transform 220ms ease;
}

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

.top-header {
    background: var(--accent-dark);
    color: rgba(255, 255, 255, 0.78);
}

.top-header__inner {
    width: min(100% - 48px, 1380px);
    min-height: 42px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.top-header p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
    font-weight: 500;
}

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

.top-header__actions a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.1;
    white-space: nowrap;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.top-header__actions a:hover,
.top-header__actions a:focus-visible {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: 0;
    color: var(--text);
}

.title-accent {
    color: var(--gold-dark);
    background: linear-gradient(90deg, var(--gold-dark), var(--accent-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.split-cta .title-accent,
.final-cta .title-accent,
.title-accent--light {
    background: none;
    color: #f1d39a;
    -webkit-text-fill-color: currentColor;
}

p {
    margin: 0;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(246, 245, 249, 0.86);
    border-bottom: 1px solid rgba(221, 215, 232, 0.7);
    backdrop-filter: blur(18px);
    transition: background 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled {
    background: var(--surface);
    border-color: rgba(216, 209, 232, 0.95);
    box-shadow: 0 10px 28px rgba(47, 30, 89, 0.09);
}

.site-header__inner {
    width: min(100% - 48px, 1380px);
    min-height: 76px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand__logo {
    width: clamp(182px, 16vw, 260px);
    max-height: 64px;
    object-fit: contain;
}

.brand__mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--accent-light);
    border-radius: 50%;
    background: var(--surface);
    color: var(--accent-dark);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
}

.brand__text {
    display: grid;
    gap: 1px;
}

.brand__text span {
    font-family: var(--font-heading);
    font-size: 1.42rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.brand__text small {
    color: var(--text-muted);
    font-size: 0.74rem;
    font-weight: 500;
}

.desktop-nav {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-item--mega::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 2;
    height: 18px;
}

.nav-link {
    height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0;
    cursor: pointer;
    transition: background 220ms ease, color 220ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active,
.nav-item--mega.is-open > .nav-link {
    background: var(--surface-muted);
    color: var(--text);
}

.nav-chevron {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 220ms ease;
}

.nav-item--mega.is-open .nav-chevron,
.nav-item--mega:hover .nav-chevron,
.nav-item--mega:focus-within .nav-chevron {
    transform: translateY(1px) rotate(225deg);
}

.header-actions {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.header-phone {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 220ms ease;
}

.header-phone:hover {
    color: var(--text);
}

.button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: transform 230ms ease, background 230ms ease, color 230ms ease, border-color 230ms ease, box-shadow 230ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--dark {
    background: var(--accent-dark);
    color: var(--white);
    border-color: var(--accent-dark);
}

.button--dark:hover {
    background: #241647;
    color: var(--white);
    border-color: #241647;
    box-shadow: 0 12px 28px rgba(47, 30, 89, 0.18);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.7);
    color: var(--accent-dark);
    border-color: var(--border);
}

.button--outline {
    background: transparent;
    color: var(--accent-dark);
    border-color: var(--accent-light);
}

.button--outline:hover {
    background: var(--surface);
    color: var(--accent-dark);
    border-color: var(--accent);
}

.button--text,
.button--text-light {
    padding-left: 4px;
    padding-right: 4px;
    background: transparent;
    color: var(--accent-dark);
    border-color: transparent;
}

.button--text:hover,
.button--text-light:hover {
    transform: translateY(-1px);
    color: var(--accent);
}

.button--text-light {
    color: rgba(255, 255, 255, 0.88);
}

.button--quiet,
.button--quiet-light {
    min-height: 40px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.66);
    color: var(--accent-dark);
    border-color: rgba(47, 30, 89, 0.13);
    box-shadow: none;
}

.button--quiet:hover,
.button--quiet:focus-visible {
    background: var(--surface);
    color: var(--accent-dark);
    border-color: var(--border-gold);
    box-shadow: 0 10px 24px rgba(47, 30, 89, 0.10);
}

.button--quiet-light {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.24);
}

.button--quiet-light:hover,
.button--quiet-light:focus-visible {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.42);
}

.button--light {
    background: var(--surface);
    color: var(--accent-dark);
    border-color: var(--surface);
}

.button--light:hover {
    color: var(--accent-dark);
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 12px 28px rgba(18, 10, 38, 0.14);
}

.button--soft-light {
    background: rgba(255, 255, 255, 0.09);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
}

.button--soft-light:hover {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 14px 30px rgba(18, 10, 38, 0.16);
}

.button--small {
    min-height: 38px;
    padding: 9px 16px;
    font-size: 0.84rem;
}

.button--full {
    width: 100%;
}

.icon {
    width: 1.08em;
    height: 1.08em;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    color: currentColor;
}

.icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.button .icon {
    width: 18px;
    height: 18px;
}

.whatsapp-logo {
    width: 20px;
    height: 20px;
    display: inline-block;
    flex: 0 0 auto;
    object-fit: contain;
}

.whatsapp-logo--small {
    width: 16px;
    height: 16px;
}

.whatsapp-logo--inline {
    width: 16px;
    height: 16px;
}

.whatsapp-logo--floating {
    width: 30px;
    height: 30px;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 3;
    width: min(1040px, calc(100vw - 48px));
    padding: 18px;
    border: 1px solid rgba(221, 215, 232, 0.95);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-menu);
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
}

.nav-item--mega:hover .mega-menu,
.nav-item--mega:focus-within .mega-menu,
.nav-item--mega.is-open .mega-menu {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 0.9fr)) minmax(250px, 1.25fr);
    gap: 18px;
}

.mega-menu__column {
    padding: 16px 14px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(246, 245, 249, 0.88), rgba(242, 240, 245, 0.48));
}

.mega-menu__column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mega-menu__title {
    margin-bottom: 12px;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.1;
}

.mega-menu li + li {
    margin-top: 6px;
}

.mega-menu a:not(.button):not(.mega-card):not(.service-link) {
    display: block;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 180ms ease, transform 180ms ease;
}

.mega-menu a:not(.button):not(.mega-card):not(.service-link):hover,
.mega-menu a:not(.button):not(.mega-card):not(.service-link):focus-visible {
    color: var(--accent-dark);
    transform: translateX(3px);
}

.mega-menu__side {
    display: grid;
    gap: 10px;
    align-content: start;
}

.mega-card {
    display: grid;
    gap: 7px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface-muted);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mega-card:hover,
.mega-card:focus-visible {
    transform: translateY(-2px);
    border-color: var(--accent-light);
    box-shadow: 0 12px 26px rgba(47, 30, 89, 0.10);
}

.mega-card img {
    width: 100%;
    height: 112px;
    border: 1px solid rgba(185, 145, 91, 0.2);
    border-radius: 12px;
    box-shadow: var(--shadow-photo-soft);
    object-fit: cover;
}

.mega-card span,
.mega-card small {
    display: block;
}

.mega-card span {
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.05;
}

.mega-card small {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.mega-menu__cta {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border-radius: 8px;
    background: var(--background-soft);
}

.mega-menu__cta span {
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mega-menu__cta p {
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.12;
}

.mega-menu--compact {
    width: min(760px, calc(100vw - 48px));
}

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

.service-link {
    min-height: 132px;
    padding: 18px;
    border-radius: 8px;
    background: var(--surface-muted);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-link:hover,
.service-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(47, 30, 89, 0.10);
}

.service-link span,
.service-link small {
    display: block;
}

.service-link span {
    margin-bottom: 8px;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
}

.service-link small {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.service-link--media {
    display: grid;
    gap: 10px;
    min-height: 220px;
    border: 1px solid var(--border);
}

.service-link--media img {
    width: 100%;
    height: 110px;
    border: 1px solid rgba(185, 145, 91, 0.2);
    border-radius: 12px;
    box-shadow: var(--shadow-photo-soft);
    object-fit: cover;
}

.mobile-toggle {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    background: var(--surface);
    color: var(--accent-dark);
    box-shadow: 0 12px 28px rgba(47, 30, 89, 0.08);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mobile-toggle svg {
    display: block;
    width: 24px;
    height: 24px;
}

.mobile-toggle:hover,
.mobile-toggle:focus-visible {
    transform: translateY(-1px);
    border-color: var(--accent);
    box-shadow: 0 16px 34px rgba(47, 30, 89, 0.12);
}

.mobile-toggle::after {
    content: none;
}

.mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: var(--background);
    transform: translateX(100%);
    transition: transform 280ms ease;
    overflow-y: auto;
}

body.mobile-open .mobile-panel {
    transform: translateX(0);
}

.mobile-panel__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.mobile-close {
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
}

.mobile-close::before,
.mobile-close::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 21px;
    width: 17px;
    height: 1.5px;
    background: var(--text);
}

.mobile-close::before {
    transform: rotate(45deg);
}

.mobile-close::after {
    transform: rotate(-45deg);
}

.mobile-nav {
    display: grid;
    gap: 4px;
}

.mobile-nav a,
.mobile-accordion {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 54px;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1.04rem;
    font-weight: 600;
    text-align: left;
}

.mobile-accordion::after {
    content: "+";
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 1.3rem;
}

.mobile-accordion[aria-expanded="true"]::after {
    content: "-";
}

.mobile-subnav {
    display: none;
    padding: 12px 0 18px;
}

.mobile-subnav.is-open {
    display: grid;
    gap: 4px;
}

.mobile-subnav a {
    min-height: 34px;
    padding-left: 14px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
}

.mobile-panel__cta {
    margin-top: auto;
    padding-top: 28px;
    display: grid;
    gap: 12px;
}

.mobile-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-self: center;
    color: var(--accent-dark);
    font-weight: 600;
}

.section-shell,
.section,
.split-cta,
.final-cta__inner,
.site-footer__inner,
.site-footer__bottom {
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 62svh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
    gap: 44px;
    align-items: center;
    padding-top: 54px;
    padding-bottom: 44px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0 50%;
    width: 100vw;
    margin-left: -50vw;
    background: linear-gradient(135deg, #fbfafd 0%, #f2eef8 56%, #fbf3e5 100%);
    z-index: -1;
}

.hero__content {
    max-width: 680px;
}

.hero h1 {
    font-size: 3.25rem;
}

.hero__lead {
    max-width: 620px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 1.06rem;
    line-height: 1.72;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.hero__actions--center {
    justify-content: center;
}

.hero__quick-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.hero__quick-points li {
    padding: 8px 12px;
    border: 1px solid rgba(185, 145, 91, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.trust-list li {
    position: relative;
    padding-left: 20px;
}

.trust-list li::before,
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: 600;
}

.hero__media {
    position: relative;
    min-height: 500px;
}

.hero-photo {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: var(--image-radius-lg);
    border: 1px solid rgba(185, 145, 91, 0.24);
    background: var(--surface-muted);
    box-shadow: var(--shadow-photo);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo--main {
    right: 0;
    top: 30px;
    width: 82%;
    height: 410px;
}

.hero-photo--top {
    left: 0;
    top: 0;
    width: 34%;
    height: 190px;
}

.hero-photo--bottom {
    left: 7%;
    bottom: 22px;
    width: 32%;
    height: 178px;
}

.hero-note {
    position: absolute;
    right: 6%;
    bottom: 16px;
    width: 220px;
    padding: 16px;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 20px 54px rgba(47, 30, 89, 0.18);
}

.hero-note span,
.hero-note small {
    display: block;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 500;
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 8px 0 4px;
    color: var(--accent-dark);
}

.price-line strong {
    font-family: var(--font-heading);
    font-size: 1.72rem;
    font-weight: 600;
    line-height: 1;
}

.price-line em {
    color: var(--accent-dark);
    font-style: normal;
    font-size: 1.18rem;
    font-weight: 700;
}

.assurance-band {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 240, 245, 0.72));
}

.assurance-band__inner {
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 20px 0;
    align-items: center;
}

.assurance-card {
    min-height: 118px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    border: 1px solid rgba(47, 30, 89, 0.11);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 32px rgba(47, 30, 89, 0.07);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.assurance-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    background: var(--surface);
    box-shadow: var(--shadow-card-strong);
}

.assurance-card > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border-radius: 50%;
    background: var(--surface-muted);
    color: var(--accent);
}

.assurance-card .icon {
    width: 20px;
    height: 20px;
}

.assurance-card strong,
.assurance-card small {
    display: block;
}

.assurance-card strong {
    color: var(--accent-dark);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.08;
}

.assurance-card small {
    margin-top: 7px;
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.section {
    padding-top: 88px;
    padding-bottom: 88px;
}

.section--soft {
    width: 100%;
    max-width: none;
    padding-left: max(24px, calc((100vw - 1320px) / 2));
    padding-right: max(24px, calc((100vw - 1320px) / 2));
    background: linear-gradient(180deg, #f9f7fb 0%, #eee9f5 100%);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading--left {
    margin-left: 0;
    text-align: left;
}

.section-heading h2,
.split-cta h2,
.final-cta h2,
.consultation-highlight h2,
.relation-focus h2,
.about-section h2,
.story-section h2,
.about-detail-section h2,
.booking-note h2,
.contact-strip h2 {
    font-size: 3.45rem;
}

.section-heading p:not(.eyebrow),
.split-cta p,
.about-section p,
.service-panel p,
.relation-focus p,
.consultation-highlight p,
.booking-note p,
.story-section p,
.about-detail-section p,
.legal-content p {
    color: var(--text-muted);
}

.section-heading p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 1rem;
}

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

.situation-card,
.testimonial-card,
.pricing-panel,
.process-step,
.value-card,
.contact-card {
    border: 1px solid rgba(221, 215, 232, 0.9);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-card);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.situation-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-color: rgba(221, 215, 232, 0.72);
    background: linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
    box-shadow: 0 18px 44px rgba(39, 25, 67, 0.10);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.situation-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 145, 91, 0.78), transparent);
    pointer-events: none;
}

.situation-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-luxury);
}

.situation-card__image {
    position: relative;
    height: 212px;
    margin: 10px 10px 0;
    overflow: hidden;
    border: 1px solid rgba(185, 145, 91, 0.22);
    border-radius: var(--image-radius);
    box-shadow: var(--shadow-photo-soft);
}

.situation-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(25, 15, 48, 0.02), rgba(25, 15, 48, 0.18));
    pointer-events: none;
}

.situation-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.situation-card:hover img {
    transform: scale(1.04);
}

.situation-card__body {
    position: relative;
    padding: 22px 24px 26px;
}

.situation-card__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--gold-dark);
    box-shadow: inset 0 0 0 1px rgba(185, 145, 91, 0.18);
}

.situation-card__icon .icon,
.situation-card__icon svg {
    width: 19px;
    height: 19px;
}

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

.situation-card p {
    min-height: 112px;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.68;
}

.situation-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(47, 30, 89, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.situation-card__actions {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.situation-card__actions a {
    width: 100%;
    flex: none;
    margin-top: 0;
}

.situation-card a:hover,
.situation-card a:focus-visible {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.split-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 34px;
    padding: 46px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--accent-dark);
    color: var(--white);
}

.split-cta h2,
.split-cta p,
.split-cta .eyebrow {
    color: var(--white);
}

.split-cta p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.74);
}

.split-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.split-cta .button--dark {
    background: var(--surface);
    color: var(--accent-dark);
    border-color: var(--surface);
}

.split-cta .button--dark:hover {
    background: var(--white);
    color: var(--accent-dark);
    border-color: var(--white);
}

.split-cta .button--outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.34);
}

.split-cta .button--outline:hover {
    background: var(--white);
    color: var(--accent-dark);
    border-color: var(--white);
}

.split-cta--page {
    margin-top: 20px;
    margin-bottom: 70px;
}

.about-section {
    display: grid;
    grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1fr);
    gap: 72px;
    align-items: center;
}

.about-section__image {
    margin: 0;
    height: 660px;
    overflow: hidden;
    border: 1px solid rgba(185, 145, 91, 0.24);
    border-radius: var(--image-radius-lg);
    box-shadow: var(--shadow-photo);
}

.about-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section__content p + p {
    margin-top: 18px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.about-points > span {
    min-height: 82px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--accent-dark);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.35;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.about-points > span:hover {
    transform: translateY(-3px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-card);
}

.about-points > span > .icon {
    width: 20px;
    height: 20px;
    margin-top: 1px;
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.badge-list span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--accent-dark);
    font-size: 0.84rem;
    font-weight: 500;
}

.inline-actions,
.center-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}

.center-actions {
    justify-content: center;
}

.process-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.process-grid--compact {
    margin-top: 28px;
}

.process-step {
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.process-step:hover,
.value-card:hover,
.contact-card:hover,
.pricing-panel:hover,
.about-feature-card:hover,
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    background: var(--surface);
    box-shadow: var(--shadow-card-strong);
}

.process-step > span {
    display: block;
    margin-bottom: 22px;
    color: var(--accent-light);
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 0.9;
}

.value-card > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--surface-muted);
    color: var(--accent-dark);
}

.value-card > span .icon {
    width: 24px;
    height: 24px;
}

.process-step h3 {
    font-size: 1.65rem;
}

.process-step p,
.value-card p {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.services-section {
    padding-bottom: 70px;
}

.service-stack {
    display: grid;
    gap: 28px;
}

.service-panel {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-card-strong);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-panel:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-luxury);
}

.service-panel:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
}

.service-panel:nth-child(even) figure {
    order: 2;
}

.service-panel figure {
    margin: 0;
    min-height: 320px;
    border-right: 1px solid rgba(185, 145, 91, 0.18);
    box-shadow: var(--shadow-photo);
}

.service-panel:nth-child(even) figure {
    border-right: 0;
    border-left: 1px solid rgba(185, 145, 91, 0.18);
}

.service-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-panel__content {
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-panel h3 {
    font-size: 2.35rem;
}

.service-panel p:not(.eyebrow) {
    margin-top: 20px;
}

.service-panel ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 30px;
    padding: 0;
    list-style: none;
}

.service-panel li {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--surface-muted);
    color: var(--accent-dark);
    font-size: 0.83rem;
    font-weight: 500;
}

.service-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.relation-focus,
.consultation-highlight,
.consultation-page-grid,
.story-section,
.about-detail-section,
.booking-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 56px;
    align-items: center;
}

.relation-focus {
    width: 100%;
    max-width: none;
    padding-left: max(24px, calc((100vw - 1320px) / 2));
    padding-right: max(24px, calc((100vw - 1320px) / 2));
    background: var(--surface-muted);
}

.relation-focus__content p + p {
    margin-top: 16px;
}

.relation-focus__intro {
    margin-top: clamp(26px, 3vw, 40px);
}

.relation-focus .button {
    margin-top: 30px;
}

.relation-focus .button + .button {
    margin-left: 12px;
}

.relation-focus__image {
    margin: 0;
    height: 520px;
    overflow: hidden;
    border: 1px solid rgba(185, 145, 91, 0.24);
    border-radius: var(--image-radius-lg);
    box-shadow: var(--shadow-photo);
}

.relation-focus__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultation-highlight {
    align-items: stretch;
}

.consultation-highlight__content {
    align-self: center;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text-muted);
}

.pricing-panel {
    align-self: center;
    padding: 38px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.pricing-panel > span {
    display: block;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.pricing-panel .price-line {
    margin: 18px 0 28px;
}

.price-line--large {
    flex-wrap: wrap;
}

.price-line--large strong {
    font-size: 2.15rem;
}

.price-line--large em {
    font-size: 2.05rem;
}

.pricing-panel .button + .button {
    margin-top: 12px;
}

.testimonials-section {
    width: 100%;
    max-width: none;
    padding-left: max(24px, calc((100vw - 1320px) / 2));
    padding-right: max(24px, calc((100vw - 1320px) / 2));
    background: linear-gradient(180deg, var(--surface) 0%, var(--background-soft) 100%);
}

.reviews-showcase {
    max-width: 1160px;
    margin: 0 auto;
    padding: 18px;
    border: 1px solid rgba(47, 30, 89, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 68px rgba(47, 30, 89, 0.12);
}

.reviews-showcase__score {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 18px;
    margin-bottom: 18px;
    padding: 20px 24px;
    border-radius: 8px;
    background: var(--accent-dark);
    color: var(--white);
    text-align: center;
}

.reviews-showcase__score span {
    color: var(--white);
    font-size: 1.08rem;
    letter-spacing: 0.12em;
}

.reviews-showcase__score strong {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2.05rem;
    line-height: 1;
}

.reviews-showcase__score small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
}

.testimonial-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.testimonial-marquee {
    position: relative;
    overflow: hidden;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 76px;
    pointer-events: none;
}

.testimonial-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
}

.testimonial-marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
}

.testimonial-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: testimonial-scroll 58s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    position: relative;
    flex: 0 0 360px;
    margin: 0;
    min-height: 100%;
    padding: 30px;
    background: var(--surface);
    box-shadow: 0 16px 38px rgba(47, 30, 89, 0.08);
}

@keyframes testimonial-scroll {
    to {
        transform: translateX(-50%);
    }
}

.stars {
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 0.11em;
}

.testimonial-card blockquote {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.72;
}

.testimonial-card figcaption {
    margin-top: 22px;
    color: var(--accent-dark);
    font-weight: 600;
}

.faq-section {
    width: 100%;
    max-width: none;
    padding-top: 46px;
    padding-left: max(24px, calc((100vw - 1320px) / 2));
    padding-right: max(24px, calc((100vw - 1320px) / 2));
    background: var(--background-soft);
}

.faq-section > .section-heading {
    max-width: 1120px;
}

.faq-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.faq-intro {
    padding: 30px;
    border: 1px solid rgba(47, 30, 89, 0.13);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 52px rgba(47, 30, 89, 0.08);
}

.faq-intro h2 {
    font-size: 3.05rem;
}

.faq-intro p:not(.eyebrow) {
    margin-top: 16px;
    color: var(--text-muted);
}

.faq-intro .button {
    margin-top: 26px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(221, 215, 232, 0.86);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 12px 32px rgba(47, 30, 89, 0.05);
    overflow: hidden;
}

.faq-item h3 {
    font-family: var(--font-body);
}

.faq-item button {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-item button > span {
    width: auto;
    height: auto;
    flex: 1 1 auto;
}

.faq-item button i {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.faq-item button i::before,
.faq-item button i::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 8px;
    width: 14px;
    height: 1.5px;
    background: var(--accent);
    transition: transform 220ms ease;
}

.faq-item button i::after {
    transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
    transform: rotate(0deg);
}

.faq-answer {
    padding: 0 60px 22px 22px;
    color: var(--text-muted);
}

.final-cta {
    width: 100%;
    padding: 84px 0;
    background: var(--accent-dark);
}

.final-cta__inner {
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
}

.final-cta p:not(.eyebrow) {
    max-width: 660px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.74);
}

.final-cta .eyebrow {
    color: var(--accent-light);
}

.final-cta .button--dark {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
}

.final-cta .button--dark:hover {
    background: var(--white);
    color: var(--accent-dark);
    border-color: var(--white);
}

.final-cta .button--text-light:hover {
    color: var(--white);
}

.final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.contact-popup {
    position: fixed;
    right: 22px;
    bottom: 98px;
    z-index: 1900;
    width: min(390px, calc(100vw - 32px));
    padding: 24px;
    border: 1px solid rgba(47, 30, 89, 0.14);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    box-shadow: 0 24px 68px rgba(47, 30, 89, 0.20);
    isolation: isolate;
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    transition: opacity 240ms ease, transform 240ms ease;
}

.contact-popup.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface-muted);
    color: var(--accent-dark);
    font-size: 1.28rem;
    line-height: 1;
    cursor: pointer;
}

.contact-popup h2 {
    max-width: 300px;
    color: var(--accent-dark);
    font-size: 2rem;
}

.contact-popup p:not(.eyebrow) {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.94rem;
}

.contact-popup__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.page-hero {
    width: min(100% - 48px, 1320px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 60px;
    align-items: center;
    padding: 66px 0 58px;
}

.page-hero__content {
    max-width: 760px;
}

.page-hero h1 {
    font-size: 3.35rem;
}

.page-hero p:not(.eyebrow) {
    max-width: 640px;
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-highlight {
    max-width: 690px;
    margin-top: 28px;
    padding: 22px 24px;
    border: 1px solid rgba(185, 145, 91, 0.28);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 236, 217, 0.52));
    box-shadow: var(--shadow-card);
}

.about-highlight .eyebrow {
    margin-bottom: 10px;
}

.about-highlight p:not(.eyebrow) {
    max-width: none;
    margin-top: 10px;
    color: var(--text);
    font-size: 0.96rem;
    line-height: 1.62;
}

.page-hero__image {
    position: relative;
    height: 560px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(185, 145, 91, 0.24);
    border-radius: var(--image-radius-lg);
    box-shadow: var(--shadow-photo);
}

.page-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero--premium {
    width: 100%;
    max-width: none;
    padding: clamp(64px, 7vw, 100px) max(24px, calc((100vw - 1320px) / 2));
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.76fr);
    background:
        radial-gradient(circle at 12% 12%, rgba(185, 145, 91, 0.14), transparent 30%),
        linear-gradient(135deg, #fbfafd 0%, #f0ecf6 58%, #fbf2e4 100%);
    border-bottom: 1px solid rgba(47, 30, 89, 0.1);
}

.page-hero--premium .page-hero__content {
    max-width: 800px;
}

.page-hero--premium h1 {
    font-size: clamp(3.35rem, 5vw, 5rem);
}

.page-hero--premium .page-hero__image {
    height: clamp(470px, 42vw, 620px);
}

.hero-metrics {
    max-width: 780px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.hero-metrics span {
    min-height: 78px;
    padding: 14px 16px;
    border: 1px solid rgba(185, 145, 91, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.35;
    box-shadow: 0 14px 34px rgba(47, 30, 89, 0.08);
}

.hero-metrics strong {
    display: block;
    margin-bottom: 4px;
    color: var(--accent-dark);
    font-family: var(--font-heading);
    font-size: 1.26rem;
    line-height: 1;
}

.story-section {
    align-items: start;
    border-top: 1px solid var(--border);
}

.story-section__text p + p {
    margin-top: 18px;
}

.story-section__aside {
    padding: 34px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.story-section__aside:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-card-strong);
}

.story-section__aside h3 {
    font-size: 2rem;
}

.about-detail-section {
    align-items: center;
    padding-top: 0;
}

.about-detail-section__image {
    margin: 0;
    height: 540px;
    overflow: hidden;
    border: 1px solid rgba(185, 145, 91, 0.24);
    border-radius: var(--image-radius-lg);
    box-shadow: var(--shadow-photo);
}

.about-detail-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-detail-section__content p:not(.eyebrow) {
    margin-top: 18px;
    color: var(--text-muted);
}

.check-list--icons li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 0;
}

.check-list--icons li::before {
    content: none;
}

.check-list--icons .icon {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    color: var(--accent-dark);
}

.values-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-top: 0;
}

.value-card {
    padding: 32px;
}

.about-signature {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-top: 22px;
}

.about-feature-card {
    position: relative;
    min-height: 285px;
    padding: 34px;
    border: 1px solid rgba(221, 215, 232, 0.82);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 236, 0.86));
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.about-feature-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(185, 145, 91, 0.72), transparent);
}

.about-feature-card > span {
    display: block;
    margin-bottom: 24px;
    color: var(--accent-light);
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 600;
    line-height: 0.9;
}

.about-feature-card h2 {
    font-size: 1.9rem;
}

.about-feature-card p {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.consultation-page-grid {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(62px, 7vw, 92px) max(24px, calc((100vw - 1320px) / 2));
    grid-template-columns: minmax(300px, 0.38fr) minmax(0, 1fr);
    align-items: center;
    border-top: 1px solid rgba(47, 30, 89, 0.1);
    border-bottom: 1px solid rgba(47, 30, 89, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 240, 245, 0.92) 58%, rgba(251, 243, 229, 0.88));
}

.consultation-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    margin-top: -34px;
    padding: 34px;
    border: 1px solid rgba(185, 145, 91, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-luxury);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.consultation-cta-panel:hover,
.contact-cta-panel__inner:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: 0 30px 84px rgba(47, 30, 89, 0.16);
}

.consultation-cta-panel__content h2,
.contact-cta-panel h2 {
    font-size: clamp(2.25rem, 3vw, 3.05rem);
}

.consultation-cta-panel__content p:not(.eyebrow),
.contact-cta-panel p:not(.eyebrow) {
    max-width: 720px;
    margin-top: 14px;
    color: var(--text-muted);
}

.consultation-cta-panel__actions,
.contact-cta-panel__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.consultation-page-grid__content {
    min-width: 0;
    padding-left: clamp(0px, 3vw, 34px);
}

.consultation-page-grid__content h2 {
    max-width: 760px;
    font-size: clamp(2.55rem, 4vw, 3.45rem);
}

.consultation-page-grid__content > p:not(.eyebrow) {
    max-width: 740px;
}

.booking-copy {
    margin-top: 14px;
}

.booking-microcopy {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.pricing-panel__logo {
    width: min(235px, 100%);
    max-height: 78px;
    object-fit: contain;
    margin: 0 0 24px;
}

.consultation-page-grid .process-grid--compact {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.consultation-page-grid .process-step {
    min-height: 310px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 44px rgba(47, 30, 89, 0.08);
}

.consultation-page-grid .process-step h3 {
    white-space: nowrap;
    font-size: clamp(1.28rem, 1.5vw, 1.58rem);
}

.pricing-panel--large {
    position: sticky;
    top: calc(var(--header-height) + 28px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(47, 30, 89, 0.14);
    box-shadow: 0 24px 68px rgba(47, 30, 89, 0.14);
}

.booking-note {
    padding-top: 42px;
    border-top: 1px solid var(--border);
}

.booking-note__actions {
    justify-self: end;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-bottom: 40px;
}

.contact-grid--direct {
    padding-top: 18px;
}

.contact-cta-panel {
    padding-top: 36px;
    padding-bottom: 24px;
}

.contact-cta-panel__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    padding: 34px;
    border: 1px solid rgba(185, 145, 91, 0.28);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 236, 217, 0.58));
    box-shadow: var(--shadow-luxury);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.contact-card {
    padding: 26px;
}

.contact-strip {
    margin-bottom: 80px;
}

.contact-card > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-card > span .icon,
.contact-card > span .whatsapp-logo {
    width: 16px;
    height: 16px;
}

.contact-card a {
    display: block;
    margin-top: 14px;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.contact-card p {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.legal-page {
    max-width: 1120px;
}

.legal-page h1 {
    font-size: 4rem;
}

.legal-content {
    display: grid;
    gap: 28px;
    margin-top: 40px;
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
}

.legal-content h2 {
    margin-bottom: 8px;
    font-size: 1.7rem;
}

.legal-content a {
    color: var(--accent-dark);
    font-weight: 600;
}

.site-footer {
    background: #241647;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 46px;
    padding: 70px 0 54px;
}

.footer-wordmark {
    display: grid;
    gap: 7px;
    color: var(--white);
}

.footer-wordmark strong {
    font-family: var(--font-heading);
    font-size: 2.28rem;
    font-weight: 600;
    line-height: 1;
}

.footer-wordmark span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand--footer .brand__mark {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.24);
}

.brand--footer .brand__logo {
    width: min(255px, 100%);
    max-height: 84px;
    padding: 6px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
}

.brand--footer .brand__text span {
    color: var(--white);
}

.brand--footer .brand__text small {
    color: rgba(255, 255, 255, 0.62);
}

.footer-brand p {
    max-width: 360px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.62);
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column h2 {
    margin-bottom: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-column a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.93rem;
    transition: color 180ms ease;
    overflow-wrap: anywhere;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--white);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.84rem;
}

.site-footer__bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.whatsapp-floating {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-floating__bubble {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.94);
    color: var(--accent-dark);
    font-size: 0.84rem;
    font-weight: 500;
    box-shadow: var(--shadow-soft);
    transition: transform 220ms ease, opacity 220ms ease;
}

.whatsapp-floating__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #2fa968;
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 600;
    box-shadow: 0 16px 34px rgba(47, 169, 104, 0.24);
    transition: transform 220ms ease, background 220ms ease;
}

.whatsapp-floating__icon .whatsapp-logo {
    filter: none;
}

.whatsapp-floating:hover .whatsapp-floating__icon,
.whatsapp-floating:focus-visible .whatsapp-floating__icon {
    transform: translateY(-2px) scale(1.03);
}

.whatsapp-floating:hover .whatsapp-floating__icon,
.whatsapp-floating:focus-visible .whatsapp-floating__icon {
    background: #278f59;
}

.whatsapp-floating:hover .whatsapp-floating__bubble {
    transform: translateY(-2px);
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2100;
    width: min(920px, calc(100vw - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 18px;
    border: 1px solid rgba(221, 215, 232, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    box-shadow: 0 24px 70px rgba(47, 30, 89, 0.18);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner strong {
    display: block;
    color: var(--accent-dark);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.05;
}

.cookie-banner p {
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.cookie-banner__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (min-width: 1181px) {
    .section-heading--wide {
        max-width: 1160px;
    }

    .section-heading--wide h2 {
        white-space: nowrap;
        font-size: clamp(2.35rem, 2.65vw, 3.08rem);
    }

    .process-section .section-heading,
    .services-section .section-heading,
    .testimonials-section .section-heading,
    .faq-section .section-heading {
        max-width: 1060px;
    }

    .process-section .section-heading h2,
    .services-section .section-heading h2,
    .testimonials-section .section-heading h2,
    .faq-section .section-heading h2 {
        white-space: nowrap;
        font-size: clamp(2.45rem, 2.85vw, 3.18rem);
    }

    .faq-intro h2 {
        white-space: nowrap;
        font-size: clamp(2rem, 2.1vw, 2.5rem);
    }

    .cta-nowrap {
        white-space: nowrap;
        font-size: clamp(2.1rem, 2.45vw, 2.72rem) !important;
    }
}

@media (max-width: 1180px) {
    .site-header__inner {
        grid-template-columns: 46px minmax(0, 1fr) 46px;
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

    .brand {
        grid-column: 2;
        justify-self: center;
    }

    .mobile-toggle {
        grid-column: 3;
        justify-self: end;
        display: inline-flex;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 46px;
    }

    .hero h1 {
        font-size: 2.85rem;
    }

    .hero__content {
        max-width: 850px;
    }

    .hero__media {
        min-height: 430px;
    }

    .hero-photo--main {
        width: 78%;
        height: 360px;
    }

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

    .situation-card p {
        min-height: auto;
    }

    .about-section,
    .relation-focus,
    .consultation-highlight,
    .consultation-page-grid,
    .consultation-cta-panel,
    .contact-cta-panel__inner,
    .story-section,
    .about-detail-section,
    .booking-note,
    .faq-shell {
        grid-template-columns: 1fr;
    }

    .booking-note__actions {
        justify-self: start;
    }

    .consultation-cta-panel__actions,
    .contact-cta-panel__actions {
        justify-content: flex-start;
    }

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

@media (max-width: 900px) {
    .top-header__inner {
        justify-content: center;
    }

    .top-header p {
        display: none;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.85rem;
    }

    .section-heading h2,
    .split-cta h2,
    .final-cta h2,
    .consultation-highlight h2,
    .relation-focus h2,
    .about-section h2,
    .story-section h2,
    .about-detail-section h2,
    .booking-note h2,
    .contact-strip h2 {
        font-size: 2.85rem;
    }

    .assurance-band__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 20px 0;
    }

    .split-cta {
        grid-template-columns: 1fr;
        padding: 38px;
    }

    .split-cta__actions {
        justify-content: flex-start;
    }

    .process-grid,
    .testimonial-row,
    .about-signature,
    .values-section,
    .about-points {
        grid-template-columns: 1fr;
    }

    .consultation-page-grid .process-grid--compact {
        grid-template-columns: 1fr;
    }

    .consultation-page-grid .process-step {
        min-height: auto;
    }

    .consultation-page-grid .process-step h3 {
        white-space: normal;
    }

    .service-panel,
    .service-panel:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-panel:nth-child(even) figure {
        order: 0;
    }

    .service-panel figure {
        min-height: 270px;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(185, 145, 91, 0.18);
    }

    .service-panel:nth-child(even) figure {
        border-right: 0;
        border-left: 0;
    }

    .page-hero {
        grid-template-columns: 1fr;
        padding-top: 48px;
    }

    .page-hero--premium {
        padding-top: 56px;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        max-width: 540px;
    }

    .page-hero__image,
    .about-section__image,
    .relation-focus__image,
    .about-detail-section__image {
        height: 440px;
    }

    .pricing-panel--large {
        position: static;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 112px;
    }

    .top-header__inner,
    .site-header__inner,
    .section-shell,
    .section,
    .split-cta,
    .final-cta__inner,
    .site-footer__inner,
    .site-footer__bottom,
    .page-hero,
    .assurance-band__inner {
        width: min(100% - 32px, 1320px);
    }

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

    .top-header__inner {
        min-height: auto;
        padding: 8px 0;
    }

    .top-header__actions {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .top-header__actions a {
        min-height: 28px;
        padding: 6px 10px;
        font-size: 0.72rem;
    }

    .brand__mark {
        width: 38px;
        height: 38px;
    }

    .brand__logo {
        width: min(214px, 58vw);
        max-height: 58px;
    }

    .brand__text span {
        font-size: 1.22rem;
    }

    .brand__text small {
        font-size: 0.68rem;
    }

    .mobile-panel {
        padding: 18px;
    }

    .mobile-nav a,
    .mobile-accordion {
        font-size: 1.02rem;
    }

    .mobile-subnav a {
        min-height: 32px;
        font-size: 0.78rem;
    }

    .hero {
        min-height: auto;
        gap: 24px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 2.08rem;
    }

    .hero__lead,
    .page-hero p:not(.eyebrow) {
        font-size: 1rem;
        line-height: 1.64;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 22px;
    }

    .hero__actions .button {
        width: 100%;
    }

    .page-hero--premium {
        padding-top: 42px;
        padding-bottom: 44px;
    }

    .hero-metrics span {
        min-height: auto;
    }

    .trust-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero__media {
        display: none;
    }

    .hero-photo--top {
        width: 43%;
        height: 160px;
    }

    .hero-photo--bottom {
        left: 2%;
        width: 42%;
        height: 160px;
    }

    .hero-note {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 12px;
        padding: 14px;
    }

    .hero-note .price-line {
        gap: 8px;
    }

    .hero-note .price-line strong {
        font-size: 1.16rem;
    }

    .hero-note .price-line em {
        font-size: 1rem;
    }

    .hero__quick-points {
        display: flex;
        gap: 6px;
    }

    .hero__quick-points li {
        padding: 7px 10px;
        font-size: 0.76rem;
        text-align: center;
    }

    .assurance-band__inner,
    .situation-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .section--soft,
    .relation-focus,
    .testimonials-section,
    .faq-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2,
    .split-cta h2,
    .final-cta h2,
    .consultation-highlight h2,
    .relation-focus h2,
    .about-section h2,
    .story-section h2,
    .about-detail-section h2,
    .booking-note h2,
    .contact-strip h2,
    .legal-page h1 {
        font-size: 2.32rem;
    }

    .split-cta {
        padding: 28px;
    }

    .consultation-cta-panel,
    .contact-cta-panel__inner {
        padding: 24px;
    }

    .consultation-cta-panel {
        margin-top: -18px;
    }

    .split-cta__actions,
    .inline-actions,
    .center-actions,
    .final-cta__actions,
    .booking-note__actions,
    .consultation-cta-panel__actions,
    .contact-cta-panel__actions {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .relation-focus .button + .button {
        margin-left: 0;
    }

    .split-cta__actions .button,
    .inline-actions .button,
    .center-actions .button,
    .final-cta__actions .button,
    .booking-note__actions .button,
    .consultation-cta-panel__actions .button,
    .contact-cta-panel__actions .button {
        width: 100%;
    }

    .about-section__image,
    .relation-focus__image,
    .about-detail-section__image,
    .page-hero__image {
        height: 360px;
    }

    .service-panel__content,
    .process-step,
    .value-card,
    .assurance-card,
    .pricing-panel,
    .testimonial-card,
    .reviews-showcase,
    .faq-intro,
    .legal-content {
        padding: 24px;
    }

    .about-feature-card {
        min-height: auto;
        padding: 26px;
    }

    .testimonial-card {
        flex-basis: min(320px, calc(100vw - 82px));
    }

    .testimonial-marquee::before,
    .testimonial-marquee::after {
        width: 38px;
    }

    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
        bottom: 12px;
        padding: 16px;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__actions .button {
        flex: 1 1 0;
    }

    .service-panel h3 {
        font-size: 2.1rem;
    }

    .price-line--large strong {
        font-size: 1.8rem;
    }

    .price-line--large em {
        font-size: 1.7rem;
    }

    .faq-intro h2 {
        font-size: 2.25rem;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 54px;
    }

    .site-footer__bottom {
        flex-direction: column;
    }

    .whatsapp-floating {
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-floating__bubble {
        display: none;
    }

    .whatsapp-floating__icon {
        width: 54px;
        height: 54px;
    }

    .contact-popup {
        right: 16px;
        bottom: 84px;
        padding: 22px;
    }

    .contact-popup h2 {
        font-size: 1.72rem;
    }

    .contact-popup__actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 390px) {
    .hero h1,
    .page-hero h1 {
        font-size: 2.04rem;
    }

    .section-heading h2,
    .split-cta h2,
    .final-cta h2,
    .consultation-highlight h2,
    .relation-focus h2,
    .about-section h2,
    .story-section h2,
    .about-detail-section h2,
    .booking-note h2,
    .contact-strip h2,
    .legal-page h1 {
        font-size: 2.08rem;
    }

    .brand__text span {
        font-size: 1.08rem;
    }

    .brand__logo {
        width: min(188px, 56vw);
        max-height: 48px;
    }

    .testimonial-card {
        flex-basis: min(300px, calc(100vw - 70px));
    }

    .brand__text small {
        display: none;
    }
}

.hero--solution {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: clamp(550px, 68svh, 650px);
    display: block;
    margin: 0;
    padding: clamp(42px, 4vw, 60px) max(24px, calc((100vw - 1180px) / 2)) clamp(28px, 3vw, 42px);
    overflow: hidden;
    color: #fff;
    background: #180f2d;
}

.hero--solution::before,
.hero--solution::after {
    content: "";
    display: none;
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.hero--solution::before {
    background:
        linear-gradient(180deg, rgba(17, 8, 33, 0.36) 0%, rgba(17, 8, 33, 0.52) 54%, rgba(17, 8, 33, 0.88) 100%),
        rgba(17, 8, 33, 0.16);
}

.hero--solution::after {
    background:
        linear-gradient(180deg, transparent 72%, rgba(26, 12, 45, 0.72) 100%);
}

.hero-solution__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-solution__inner {
    position: relative;
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    justify-items: center;
    text-align: center;
}

.hero-solution__note {
    position: absolute;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-family: var(--font-heading);
    font-size: clamp(1.18rem, 2vw, 1.72rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.15;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
    transform: rotate(-8deg);
}

.hero-solution__note--left {
    left: 0;
    top: -24px;
    max-width: 210px;
}

.hero-solution__note--right {
    right: 0;
    top: -20px;
    max-width: 235px;
    color: #f5dbff;
    transform: rotate(-7deg);
}

.hero-solution__copy {
    max-width: 1000px;
    padding-top: clamp(6px, 2vw, 28px);
}

.hero-solution__copy .eyebrow {
    color: rgba(255, 255, 255, 0.84);
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.36);
}

.hero-solution__copy h1 {
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(2.8rem, 4.85vw, 4.35rem);
    line-height: 0.96;
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.55);
}

.hero-solution__line {
    display: block;
    color: inherit;
    white-space: nowrap;
}

.hero-solution__line--accent {
    margin-top: 8px;
    color: #ffd66c;
}

.hero-solution__copy p:not(.eyebrow) {
    max-width: 880px;
    margin: 16px auto 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.05rem, 1.7vw, 1.34rem);
    line-height: 1.58;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.hero-solution__issues {
    width: min(100%, 980px);
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin: 20px auto 0;
    padding: 0;
    list-style: none;
}

.hero-solution__issues li {
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.18;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.48);
}

.hero-solution__issues span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(39, 20, 70, 0.48);
    color: #ff9fc1;
    font-family: var(--font-heading);
    font-size: 1.38rem;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 14px 30px rgba(0, 0, 0, 0.24);
}

.hero-solution__actions {
    width: min(100%, 780px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 20px auto 0;
}

.hero-solution__button {
    min-height: 50px;
    padding: 11px 22px;
    justify-content: center;
    border-radius: 999px;
    font-size: clamp(0.92rem, 1.45vw, 1.12rem);
    font-weight: 800;
    text-transform: uppercase;
}

.hero-solution__button--whatsapp {
    border: 1px solid rgba(142, 255, 170, 0.78);
    background: linear-gradient(180deg, #37f46b, #10b950);
    color: #fff;
    box-shadow: 0 0 0 8px rgba(32, 234, 97, 0.14), 0 18px 42px rgba(23, 221, 88, 0.34);
}

.hero-solution__button--whatsapp:hover,
.hero-solution__button--whatsapp:focus-visible {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #55ff82, #0caf4b);
}

.hero-solution__button--phone {
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.94);
    color: var(--accent-dark);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.hero-solution__button--phone:hover,
.hero-solution__button--phone:focus-visible {
    transform: translateY(-2px);
    background: #fff;
}

.hero-solution__button .whatsapp-logo {
    width: 26px;
    height: 26px;
}

.hero-solution__micro {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.42);
}

.mentor-strip {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 3vw, 36px) max(24px, calc((100vw - 1180px) / 2));
    background:
        radial-gradient(circle at 14% 50%, rgba(247, 236, 217, 0.96), transparent 30%),
        linear-gradient(100deg, #fffaf2 0%, #f5edf7 48%, #efe8f5 100%);
    color: var(--accent-dark);
    border-bottom: 1px solid rgba(185, 145, 91, 0.22);
}

.mentor-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.76), transparent 38%),
        radial-gradient(circle at 88% 34%, rgba(185, 145, 91, 0.18), transparent 24%);
    pointer-events: none;
}

.mentor-strip__inner {
    position: relative;
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr) minmax(230px, 300px);
    align-items: center;
    gap: clamp(22px, 4vw, 46px);
}

.mentor-strip__portrait {
    width: min(100%, 220px);
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--image-radius-lg);
    border: 1px solid rgba(185, 145, 91, 0.28);
    box-shadow: 0 18px 48px rgba(47, 30, 89, 0.18);
}

.mentor-strip__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.mentor-strip__quote {
    min-width: 0;
}

.mentor-strip__text {
    margin: 0;
    color: #332154;
    font-family: var(--font-heading);
    font-size: clamp(1.18rem, 1.9vw, 1.56rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.24;
}

.mentor-strip__signature {
    display: grid;
    gap: 2px;
    margin: 18px 0 0;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.3;
}

.mentor-strip__signature strong {
    color: var(--accent-dark);
    font-size: 1.08rem;
}

.mentor-strip__proof {
    justify-self: end;
    width: min(100%, 300px);
    padding: 18px;
    border: 1px solid rgba(185, 145, 91, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 44px rgba(47, 30, 89, 0.1);
}

.mentor-strip__years {
    margin: 0;
    color: var(--gold-dark);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 900;
    line-height: 0.98;
    text-align: center;
    text-transform: uppercase;
}

.mentor-strip__years span {
    display: block;
    margin-top: 4px;
    font-size: 0.68em;
}

.mentor-strip__stars {
    margin: 8px 0 12px;
    color: var(--gold);
    font-size: 1.16rem;
    letter-spacing: 0;
    text-align: center;
}

.mentor-strip__proof ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--accent-dark);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
}

.mentor-strip__proof li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mentor-strip__proof li span {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 900;
}

@media (max-width: 1180px) {
    .hero--solution {
        min-height: auto;
        padding-top: 86px;
        padding-bottom: 58px;
    }

    .hero-solution__note {
        display: none;
    }

    .hero-solution__copy {
        padding-top: 24px;
    }

    .hero-solution__issues {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 680px;
    }

    .mentor-strip__inner {
        grid-template-columns: minmax(130px, 180px) minmax(0, 1fr);
    }

    .mentor-strip__proof {
        grid-column: 1 / -1;
        justify-self: center;
        width: min(100%, 620px);
    }

    .mentor-strip__proof ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hero--solution {
        padding: 42px 16px 34px;
    }

    .hero--solution::before {
        background:
            linear-gradient(180deg, rgba(17, 8, 33, 0.34) 0%, rgba(17, 8, 33, 0.52) 52%, rgba(17, 8, 33, 0.9) 100%),
            rgba(17, 8, 33, 0.1);
    }

    .hero-solution__image {
        object-position: center center;
    }

    .hero-solution__copy {
        padding-top: 0;
    }

    .hero-solution__copy h1 {
        font-size: clamp(1.46rem, 6.85vw, 1.86rem);
        line-height: 1.04;
    }

    .hero-solution__copy p:not(.eyebrow) {
        margin-top: 18px;
        font-size: 0.95rem;
        line-height: 1.48;
    }

    .hero-solution__actions {
        order: 2;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 18px;
    }

    .hero-solution__micro {
        order: 3;
        margin-top: 10px;
        font-size: 0.86rem;
    }

    .hero-solution__issues {
        order: 4;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px 8px;
        margin-top: 18px;
    }

    .hero-solution__issues li {
        font-size: 0.72rem;
    }

    .hero-solution__issues span {
        width: 40px;
        height: 40px;
        font-size: 1.14rem;
    }

    .hero-solution__button {
        min-height: 44px;
        padding: 9px 18px;
        font-size: 0.86rem;
    }

    .hero-solution__button .whatsapp-logo {
        width: 22px;
        height: 22px;
    }

    .mentor-strip {
        padding: 26px 16px;
    }

    .mentor-strip__inner {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .mentor-strip__portrait {
        width: min(240px, 72vw);
        margin: 0 auto;
    }

    .mentor-strip__text {
        font-size: clamp(1.08rem, 4.8vw, 1.34rem);
        line-height: 1.24;
    }

    .mentor-strip__signature {
        margin-top: 12px;
    }

    .mentor-strip__proof {
        width: 100%;
        padding: 16px;
    }

    .mentor-strip__proof ul {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .testimonial-track {
        animation: none;
        width: 100%;
        flex-wrap: wrap;
    }

    .testimonial-card[aria-hidden="true"] {
        display: none;
    }
}
