:root {
    --purple-950: #241037;
    --purple-900: #351057;
    --purple-800: #4c168b;
    --purple-700: #6322a1;
    --purple-500: #8d52be;
    --purple-100: #eee4f7;
    --purple-50: #f8f3fc;
    --gold-600: #b47b00;
    --gold-500: #dca20e;
    --gold-400: #f0bd37;
    --gold-100: #fff1c5;
    --ink: #241b29;
    --muted: #6c6271;
    --line: #e7dfea;
    --cream: #fbf8f4;
    --white: #ffffff;
    --success: #197648;
    --shadow-sm: 0 12px 35px rgba(52, 16, 87, 0.08);
    --shadow-lg: 0 28px 80px rgba(37, 13, 61, 0.16);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --container: 1180px;
    --font-display: Georgia, "Times New Roman", serif;
    --font-body: Inter, "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
    font: inherit;
}

:focus-visible {
    outline: 3px solid var(--gold-400);
    outline-offset: 4px;
}

::selection {
    color: var(--white);
    background: var(--purple-700);
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--purple-900);
    border-radius: 8px;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

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

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

.section {
    position: relative;
    padding: 112px 0;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--purple-700);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 30px;
    height: 2px;
    background: var(--gold-500);
}

.eyebrow-light {
    color: var(--gold-400);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    margin-bottom: 22px;
    color: var(--purple-950);
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.02;
}

h1 {
    font-size: clamp(3.25rem, 6.3vw, 6.35rem);
}

h2 {
    font-size: clamp(2.35rem, 4.5vw, 4.45rem);
}

h1 em,
h2 em {
    color: var(--purple-700);
    font-weight: 400;
}

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

.heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 70px;
    align-items: end;
}

.heading-split h2,
.heading-centered h2,
.team-heading h2 {
    margin-bottom: 0;
}

.heading-split > p,
.heading-centered > p,
.team-heading > p {
    color: var(--muted);
    font-size: 1.08rem;
}

.heading-centered {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.heading-centered .eyebrow,
.team-heading .eyebrow {
    justify-content: center;
}

.heading-centered > p {
    max-width: 670px;
    margin: 22px auto 0;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    color: var(--white);
    background: var(--purple-800);
    border: 1px solid var(--purple-800);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(76, 22, 139, 0.2);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
    background: var(--purple-700);
    box-shadow: 0 16px 34px rgba(76, 22, 139, 0.28);
    transform: translateY(-2px);
}

.button-small {
    min-height: 43px;
    padding: 10px 18px;
    font-size: 0.8rem;
}

.button-secondary {
    color: var(--purple-800);
    background: transparent;
    box-shadow: none;
}

.button-secondary:hover {
    color: var(--white);
}

.button-gold {
    color: var(--purple-950);
    background: var(--gold-400);
    border-color: var(--gold-400);
    box-shadow: 0 13px 32px rgba(240, 189, 55, 0.22);
}

.button-gold:hover {
    color: var(--purple-950);
    background: #ffd062;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--purple-800);
    font-weight: 800;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(76, 22, 139, 0.1);
    box-shadow: 0 8px 30px rgba(34, 14, 48, 0.07);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: 84px;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
}

.brand img {
    width: 52px;
    height: 44px;
    object-fit: contain;
}

.brand-name {
    display: flex;
    flex-direction: column;
    color: var(--purple-800);
    line-height: 1;
}

.brand-name strong {
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 500;
    letter-spacing: 0.18em;
}

.brand-name small {
    margin-top: 5px;
    color: var(--gold-600);
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 34px);
    margin-left: auto;
}

.site-nav a {
    position: relative;
    color: #4d4353;
    font-size: 0.83rem;
    font-weight: 700;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--gold-500);
    content: "";
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--purple-900);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    padding: 84px 0 0;
    background:
        linear-gradient(90deg, rgba(251, 248, 244, 0.98) 0%, rgba(251, 248, 244, 0.94) 47%, rgba(251, 248, 244, 0.72) 100%),
        url("../images/lotus-texture-1536.webp") center / cover;
}

.hero::before {
    position: absolute;
    inset: 84px 50% 0 0;
    background: url("../images/brand-mark.webp") 48% 52% / min(36vw, 520px) auto no-repeat;
    content: "";
    opacity: 0.035;
    pointer-events: none;
}

.hero::after {
    position: absolute;
    right: -10%;
    bottom: -210px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(220, 162, 14, 0.16), transparent 68%);
    content: "";
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border: 1px solid rgba(99, 34, 161, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb-one {
    top: -180px;
    left: -210px;
    width: 560px;
    height: 560px;
}

.hero-orb-two {
    top: -90px;
    left: -120px;
    width: 370px;
    height: 370px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 676px;
    align-items: stretch;
    gap: 0;
}

.hero-copy {
    display: flex;
    max-width: none;
    flex-direction: column;
    justify-content: center;
    padding: 64px clamp(32px, 3.4vw, 64px) 64px max(32px, calc((100vw - var(--container)) / 2));
}

.hero-copy h1 em {
    display: block;
}

.hero-copy h1 {
    font-size: clamp(3rem, 3.1vw, 3.75rem);
    letter-spacing: -0.045em;
}

.hero-copy h1,
.hero-copy h1 em {
    white-space: nowrap;
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 30px;
    color: #5e5265;
    font-size: clamp(1.04rem, 1.5vw, 1.2rem);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-promises {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin: 34px 0 0;
    padding: 0;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    list-style: none;
}

.hero-promises li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-promises li::before {
    width: 5px;
    height: 5px;
    background: var(--gold-500);
    border-radius: 50%;
    content: "";
}

.hero-visual {
    position: relative;
    min-width: 0;
    min-height: 676px;
}

.hero-image-shell {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--purple-900);
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 9% 100%, 0 79%, 3.5% 50%, 0 21%);
}

.hero-image-shell::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(53, 16, 87, 0.28) 0%, rgba(53, 16, 87, 0.04) 26%, transparent 58%, rgba(36, 16, 55, 0.12) 100%),
        linear-gradient(180deg, rgba(240, 189, 55, 0.08), transparent 26%);
    box-shadow: inset 1px 0 rgba(240, 189, 55, 0.5), inset 0 0 70px rgba(36, 16, 55, 0.1);
    content: "";
    pointer-events: none;
}

.hero-image-shell::after {
    position: absolute;
    right: 28px;
    bottom: 24px;
    z-index: 3;
    width: 150px;
    height: 124px;
    background: url("../images/brand-mark.webp") center / contain no-repeat;
    content: "";
    filter: brightness(1.5) saturate(0.75);
    opacity: 0.16;
    pointer-events: none;
}

.hero-image-shell picture {
    display: block;
    height: 100%;
}

.hero-image-shell picture img {
    width: 100%;
    height: 100%;
}

.hero-image-shell img {
    object-fit: cover;
    object-position: 56% center;
}

.hero-petal-orbit {
    position: absolute;
    top: 50%;
    left: 1.8%;
    z-index: 5;
    width: 88px;
    height: 176px;
    pointer-events: none;
    transform: translate(-8%, -50%);
}

.hero-petal-orbit span {
    position: absolute;
    top: 27px;
    left: 14px;
    width: 58px;
    height: 120px;
    border: 1px solid rgba(240, 189, 55, 0.62);
    border-radius: 50% 50% 12% 50%;
    box-shadow: inset 0 0 16px rgba(240, 189, 55, 0.08);
    transform-origin: 50% 100%;
}

.hero-petal-orbit span:nth-child(1) {
    transform: rotate(-27deg);
}

.hero-petal-orbit span:nth-child(2) {
    border-color: rgba(255, 255, 255, 0.58);
    transform: rotate(18deg) scale(0.86);
}

.hero-petal-orbit span:nth-child(3) {
    transform: rotate(55deg) scale(0.72);
}

.hero-petal-orbit::before,
.hero-petal-orbit::after {
    position: absolute;
    left: 42px;
    width: 7px;
    height: 7px;
    background: var(--gold-400);
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    box-sizing: content-box;
    content: "";
}

.hero-petal-orbit::before {
    top: 6px;
}

.hero-petal-orbit::after {
    top: 20px;
    transform: scale(0.72);
}

.hero-card {
    position: absolute;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 210px;
    padding: 13px 16px;
    color: var(--purple-950);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-size: 0.68rem;
    line-height: 1.4;
    backdrop-filter: blur(12px);
}

.hero-card::before {
    position: absolute;
    top: -120%;
    left: -45%;
    width: 34%;
    height: 340%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    content: "";
    pointer-events: none;
    transform: rotate(24deg);
    animation: hero-card-sheen 7s ease-in-out infinite;
}

.hero-card > * {
    position: relative;
    z-index: 1;
}

.hero-card strong {
    display: block;
    font-size: 0.76rem;
}

.hero-card:hover {
    animation-play-state: paused;
}

.hero-card-top {
    top: 13%;
    left: 24px;
    animation: hero-card-float 5.8s ease-in-out infinite;
}

.hero-card-bottom {
    right: 24px;
    bottom: 9%;
    animation: hero-card-float-reverse 6.4s ease-in-out 0.35s infinite;
}

.status-dot {
    width: 11px;
    height: 11px;
    background: var(--success);
    border: 3px solid #d7f1e3;
    border-radius: 50%;
    box-sizing: content-box;
    animation: hero-status-pulse 2.4s ease-out infinite;
}

.mini-lotus {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--gold-600);
    background: var(--gold-100);
    border-radius: 50%;
    animation: hero-lotus-turn 7s ease-in-out infinite;
}

@keyframes hero-card-float {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.4deg); }
    50% { transform: translate3d(0, -10px, 0) rotate(0.5deg); }
}

@keyframes hero-card-float-reverse {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0.5deg); }
    50% { transform: translate3d(0, 9px, 0) rotate(-0.4deg); }
}

@keyframes hero-card-sheen {
    0%, 58% { left: -48%; opacity: 0; }
    64% { opacity: 0.8; }
    78%, 100% { left: 125%; opacity: 0; }
}

@keyframes hero-status-pulse {
    0% { box-shadow: 0 0 0 0 rgba(25, 118, 72, 0.42); }
    70%, 100% { box-shadow: 0 0 0 9px rgba(25, 118, 72, 0); }
}

@keyframes hero-lotus-turn {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(90deg) scale(1.08); }
}

.process-section {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 0;
    padding: 0;
    counter-reset: item;
    list-style: none;
}

.process-card {
    min-height: 290px;
    padding: 29px;
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover {
    border-color: #dac8e7;
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.process-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.process-petal {
    position: relative;
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--purple-500), var(--purple-800));
    border-radius: 50% 50% 12% 50%;
    box-shadow: 8px 8px 0 var(--gold-100);
    transform: rotate(45deg);
}

.process-petal::after {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50% 50% 12% 50%;
    content: "";
}

.process-number {
    color: var(--gold-600);
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.process-card h3 {
    margin-bottom: 12px;
    color: var(--purple-950);
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 500;
}

.process-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.why-section {
    overflow: hidden;
    background: #f5effa;
}

.why-section::before {
    position: absolute;
    inset: 0;
    background-image: url("../images/brand-mark.webp");
    background-position: 40px 10px;
    background-repeat: repeat;
    background-size: 270px auto;
    content: "";
    opacity: 0.022;
    pointer-events: none;
}

.why-section::after {
    position: absolute;
    top: -180px;
    right: -140px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(220, 162, 14, 0.16), transparent 68%);
    content: "";
    pointer-events: none;
}

.why-section .container {
    position: relative;
    z-index: 1;
}

.why-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(42px, 7vw, 92px);
    align-items: end;
}

.why-heading h2 {
    margin-bottom: 0;
}

.why-heading > p {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 1.04rem;
}

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

.why-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(76, 22, 139, 0.1);
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(52, 16, 87, 0.055);
    backdrop-filter: blur(4px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
    border-color: rgba(76, 22, 139, 0.22);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.why-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    place-items: center;
    color: var(--purple-700);
    background: linear-gradient(145deg, var(--white), var(--purple-100));
    border: 1px solid rgba(99, 34, 161, 0.12);
    border-radius: 17px;
    box-shadow: inset -5px -5px 12px rgba(99, 34, 161, 0.06), 7px 7px 0 rgba(220, 162, 14, 0.1);
}

.why-icon svg {
    width: 26px;
    height: 26px;
}

.why-card h3 {
    margin-bottom: 14px;
    color: var(--purple-950);
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 500;
}

.why-card p {
    font-size: 0.84rem;
}

.why-effort {
    margin-bottom: 12px;
    color: var(--muted);
}

.why-support {
    margin-bottom: 0;
    padding-top: 12px;
    color: #4b315d;
    border-top: 1px solid var(--purple-100);
}

.why-effort strong,
.why-support strong {
    color: var(--purple-800);
}

.why-outcome {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    margin-top: 26px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.why-outcome p {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 24px 28px;
    background: var(--purple-900);
}

.why-outcome strong {
    color: var(--gold-400);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
}

.why-outcome span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
}

.services-section {
    overflow: hidden;
    background:
        linear-gradient(rgba(251, 248, 244, 0.93), rgba(251, 248, 244, 0.93)),
        url("../images/lotus-texture-1536.webp") center / cover;
}

.media-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
    gap: clamp(54px, 7vw, 96px);
}

.feature-visual {
    position: relative;
    margin: 0;
}

.feature-visual::before {
    position: absolute;
    top: -22px;
    right: -22px;
    bottom: 54px;
    left: 22px;
    z-index: -1;
    background: var(--purple-100);
    border-radius: var(--radius-lg);
    content: "";
}

.feature-visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.feature-visual figcaption {
    position: relative;
    width: calc(100% - 48px);
    margin: -28px auto 0;
    padding: 16px 20px;
    color: var(--purple-950);
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-display);
    font-size: 1.02rem;
    text-align: center;
}

.section-lead {
    color: var(--muted);
    font-size: 1.05rem;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    margin: 28px 0 30px;
    padding: 0;
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 13px;
    color: #4e4354;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(76, 22, 139, 0.08);
    border-radius: 12px;
    font-size: 0.84rem;
    font-weight: 650;
}

.service-list li span,
.plan-card li span {
    color: var(--gold-600);
    font-weight: 900;
}

.team-section {
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 0%, rgba(220, 162, 14, 0.16), transparent 30%),
        linear-gradient(135deg, var(--purple-950), var(--purple-800));
}

.team-section::before,
.team-section::after {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50% 50% 10% 50%;
    content: "";
}

.team-section::before {
    top: -160px;
    left: -100px;
    transform: rotate(28deg);
}

.team-section::after {
    right: -150px;
    bottom: -170px;
    transform: rotate(-38deg);
}

.team-heading {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.team-heading h2,
.team-heading h2 em {
    color: var(--white);
}

.team-heading > p {
    max-width: 650px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.68);
}

.specialist-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.specialist-card {
    display: flex;
    flex-direction: column;
    padding: 26px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    transition: background 0.25s ease, transform 0.25s ease;
}

.specialist-card:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-4px);
}

.specialist-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.specialist-icon {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    object-fit: cover;
    background: #fffaf4;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 19px;
    box-shadow: 0 12px 30px rgba(9, 2, 15, 0.2), 7px 7px 0 rgba(240, 189, 55, 0.12);
}

.role-index {
    display: block;
    margin: 4px 0 0;
    color: var(--gold-400);
    font-family: var(--font-display);
    font-size: 0.9rem;
}

.specialist-card h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.32rem;
    font-weight: 500;
}

.specialist-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.87rem;
}

.packages-section {
    background: var(--white);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 36px 30px 30px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.plan-featured {
    color: var(--white);
    background: linear-gradient(145deg, var(--purple-900), var(--purple-700));
    border-color: transparent;
    box-shadow: 0 24px 60px rgba(76, 22, 139, 0.2);
}

.plan-badge {
    position: absolute;
    top: 0;
    right: 26px;
    padding: 7px 14px;
    color: var(--purple-950);
    background: var(--gold-400);
    border-radius: 0 0 10px 10px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.plan-for {
    margin-bottom: 10px;
    color: var(--purple-700);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-featured .plan-for {
    color: var(--gold-400);
}

.plan-card h3 {
    margin-bottom: 10px;
    color: var(--purple-950);
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
}

.plan-featured h3 {
    color: var(--white);
}

.plan-intro {
    min-height: 52px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 0.9rem;
}

.plan-featured .plan-intro {
    color: rgba(255, 255, 255, 0.68);
}

.plan-price {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--purple-800);
    font-family: var(--font-display);
    font-size: 1.28rem;
}

.plan-featured .plan-price {
    color: var(--gold-400);
    border-color: rgba(255, 255, 255, 0.14);
}

.plan-card ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 30px;
    padding: 0;
    list-style: none;
}

.plan-card li {
    display: flex;
    gap: 9px;
    color: #514757;
    font-size: 0.85rem;
}

.plan-featured li {
    color: rgba(255, 255, 255, 0.78);
}

.plan-card .button {
    width: 100%;
    margin-top: auto;
}

.package-note {
    max-width: 720px;
    margin: 34px auto 0;
    color: var(--muted);
    font-size: 0.87rem;
    text-align: center;
}

.tracker-section {
    overflow: hidden;
    color: var(--white);
    background: #1f0b32;
}

.tracker-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(46px, 8vw, 112px);
}

.coming-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    padding: 7px 12px;
    color: #efdbff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.coming-badge span {
    width: 7px;
    height: 7px;
    background: var(--gold-400);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(240, 189, 55, 0.12);
}

.tracker-copy h2,
.tracker-copy h2 em {
    color: var(--white);
}

.tracker-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.67);
    font-size: 1.02rem;
}

.tracker-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 30px 0 34px;
    padding: 0;
    list-style: none;
}

.tracker-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
}

.tracker-points li span {
    color: var(--gold-400);
    font-family: var(--font-display);
}

.tracker-visual {
    position: relative;
    margin: 0;
}

.tracker-visual::before {
    position: absolute;
    inset: 8% -4% -6% 12%;
    z-index: 0;
    background: radial-gradient(circle, rgba(180, 115, 255, 0.2), transparent 62%);
    content: "";
}

.tracker-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 46% 46% 30px 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.contact-section {
    padding: 90px 0;
    background:
        linear-gradient(rgba(251, 248, 244, 0.9), rgba(251, 248, 244, 0.9)),
        url("../images/lotus-texture-1536.webp") center / cover;
}

.contact-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: center;
    gap: 50px;
    overflow: hidden;
    padding: clamp(34px, 6vw, 68px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-card::after {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(220, 162, 14, 0.15), transparent 68%);
    content: "";
}

.contact-copy {
    position: relative;
    z-index: 1;
}

.contact-copy h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.contact-copy p:last-child {
    max-width: 630px;
    margin-bottom: 0;
    color: var(--muted);
}

.contact-actions {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--muted);
    font-size: 0.75rem;
    text-align: center;
}

.contact-direct strong {
    color: var(--purple-800);
    font-size: 1.02rem;
}

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

.footer-main {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) minmax(140px, 0.55fr) minmax(240px, 0.95fr);
    gap: 70px;
    align-items: start;
    padding-top: 74px;
    padding-bottom: 54px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand > a {
    display: inline-flex;
    margin-bottom: 22px;
    line-height: 0;
}

.footer-brand img {
    width: 190px;
    height: auto;
    margin: 0;
}

.footer-brand p {
    max-width: 390px;
    margin: 0;
    font-size: 0.87rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    font-style: normal;
}

.footer-column h2 {
    margin-bottom: 8px;
    color: var(--gold-400);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-column a {
    font-size: 0.84rem;
    overflow-wrap: anywhere;
    transition: color 0.2s ease;
}

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

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    padding-top: 18px;
    padding-bottom: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.legal-links a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.76rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.legal-links a:hover,
.legal-links a[aria-current="page"] {
    color: var(--gold-400);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.72rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--gold-400);
    font-weight: 750;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px 8px 8px;
    color: var(--white);
    background: #18794e;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    box-shadow: 0 14px 38px rgba(20, 94, 60, 0.3);
    font-size: 0.75rem;
    transition: transform 0.25s ease, background 0.25s ease;
}

.floating-whatsapp:hover {
    background: #11683f;
    transform: translateY(-3px);
}

.floating-whatsapp span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 900;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.js .reveal-delay {
    transition-delay: 0.12s;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1080px) {
    .header-cta {
        display: none;
    }

    .hero {
        min-height: 700px;
    }

    .hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 616px;
        gap: 0;
    }

    .hero-copy {
        padding-right: 30px;
        padding-left: 32px;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 4.35vw, 3.25rem);
    }

    .hero-visual {
        min-height: 616px;
    }

    .hero-card-top {
        left: 16px;
    }

    .hero-card-bottom {
        right: 16px;
    }

    .plan-card {
        padding-right: 23px;
        padding-left: 23px;
    }
}

@media (max-width: 860px) {
    .section {
        padding: 76px 0;
    }

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

    .header-inner {
        min-height: 74px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        top: 74px;
        right: 16px;
        left: 16px;
        display: grid;
        gap: 0;
        padding: 10px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .site-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 13px 15px;
        border-radius: 10px;
        font-size: 0.9rem;
    }

    .site-nav a:hover,
    .site-nav a.active {
        color: var(--purple-800);
        background: var(--purple-50);
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 74px 0 0;
    }

    .hero-grid,
    .media-grid,
    .tracker-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: 0;
    }

    .hero-copy {
        max-width: none;
        padding: 58px 16px;
    }

    .hero-copy h1 {
        font-size: clamp(2.45rem, 6vw, 3.4rem);
    }

    .hero-visual {
        min-height: clamp(260px, 56.25vw, 480px);
        max-width: none;
    }

    .hero-image-shell {
        clip-path: polygon(0 0, 100% 0, 100% 94%, 92% 100%, 8% 100%, 0 94%);
    }

    .hero-image-shell picture,
    .hero-image-shell picture img {
        height: 100%;
    }

    .hero-image-shell img {
        object-position: 56% center;
    }

    .hero-petal-orbit {
        top: 48%;
        left: 4%;
        transform: translate(-8%, -50%) scale(0.82);
    }

    .hero::before {
        inset: 74px 0 48% 0;
        background-position: right -35px top 34px;
        background-size: 390px auto;
    }

    .heading-split {
        grid-template-columns: 1fr;
        gap: 18px;
        align-items: start;
    }

    .heading-split > p {
        max-width: 680px;
    }

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

    .why-heading {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: start;
    }

    .why-heading > p {
        max-width: 720px;
    }

    .media-grid {
        gap: 64px;
    }

    .feature-visual {
        max-width: 680px;
    }

    .feature-copy {
        max-width: 760px;
    }

    .plan-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin-inline: auto;
    }

    .plan-intro {
        min-height: auto;
    }

    .tracker-grid {
        gap: 56px;
    }

    .tracker-copy {
        max-width: 700px;
    }

    .tracker-visual {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .contact-actions {
        max-width: 390px;
    }
}

@media (max-width: 620px) {
    html {
        scroll-padding-top: 74px;
    }

    body {
        font-size: 15px;
        line-height: 1.58;
    }

    .section {
        padding: 58px 0;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

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

    .eyebrow {
        gap: 8px;
        margin-bottom: 13px;
        font-size: 0.67rem;
        letter-spacing: 0.12em;
    }

    .eyebrow > span {
        width: 24px;
    }

    .brand-name strong {
        font-size: 1.22rem;
    }

    .brand-name small {
        font-size: 0.5rem;
    }

    .hero {
        padding-top: 74px;
    }

    h1 {
        font-size: clamp(2.3rem, 10vw, 3.2rem);
    }

    .hero-copy {
        padding: 45px 14px 42px;
    }

    .hero-copy h1 {
        margin-bottom: 17px;
        font-size: clamp(1.9rem, 7.8vw, 2.5rem);
        letter-spacing: -0.055em;
    }

    h2 {
        margin-bottom: 17px;
        font-size: clamp(1.95rem, 8.8vw, 2.65rem);
    }

    .hero-lead {
        margin-bottom: 24px;
        font-size: 0.96rem;
    }

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

    .hero-actions .button {
        width: 100%;
    }

    .hero-promises {
        display: grid;
        gap: 7px;
        margin-top: 24px;
    }

    .hero-image-shell img {
        object-position: 58% center;
    }

    .hero-card {
        display: none;
    }

    .hero-petal-orbit {
        display: none;
    }

    .hero-image-shell::after {
        right: 16px;
        bottom: 12px;
        width: 94px;
        height: 78px;
        opacity: 0.13;
    }

    .process-grid,
    .specialist-grid,
    .why-grid,
    .why-outcome {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 22px;
    }

    .process-card {
        min-height: 0;
        padding: 22px;
    }

    .process-card-top {
        margin-bottom: 23px;
    }

    .process-petal {
        width: 36px;
        height: 36px;
        box-shadow: 6px 6px 0 var(--gold-100);
    }

    .process-petal::after {
        top: 10px;
        left: 10px;
        width: 16px;
        height: 16px;
    }

    .process-card h3,
    .why-card h3 {
        font-size: 1.25rem;
    }

    .why-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 19px;
    }

    .why-icon svg {
        width: 23px;
        height: 23px;
    }

    .why-outcome p {
        min-height: 92px;
        padding: 18px 21px;
    }

    .why-outcome strong {
        font-size: 1.02rem;
    }

    .service-list,
    .tracker-points {
        grid-template-columns: 1fr;
    }

    .feature-visual::before {
        top: -12px;
        right: -9px;
        left: 12px;
    }

    .feature-visual img {
        aspect-ratio: 16 / 10;
        border-radius: var(--radius-md);
    }

    .feature-visual figcaption {
        width: calc(100% - 30px);
        margin-top: -22px;
        padding: 13px 15px;
        font-size: 0.9rem;
    }

    .media-grid,
    .tracker-grid {
        gap: 44px;
    }

    .service-list {
        margin: 22px 0 25px;
    }

    .service-list li,
    .tracker-points li {
        padding: 10px 11px;
    }

    .specialist-card {
        padding: 22px;
    }

    .specialist-card-top {
        margin-bottom: 18px;
    }

    .specialist-icon {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
        border-radius: 16px;
    }

    .specialist-card h3 {
        font-size: 1.2rem;
    }

    .plan-card {
        padding: 27px 21px 22px;
    }

    .plan-card h3 {
        font-size: 1.55rem;
    }

    .tracker-visual {
        width: min(100%, 320px);
    }

    .tracker-copy > p:not(.eyebrow) {
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 48px 0;
    }

    .contact-card {
        gap: 27px;
        padding: 27px 22px;
        border-radius: var(--radius-md);
    }

    .contact-copy h2 {
        font-size: clamp(1.95rem, 8.8vw, 2.6rem);
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 48px;
        padding-bottom: 42px;
    }

    .footer-brand img {
        width: 170px;
    }

    .footer-brand > a {
        margin-bottom: 18px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

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

    .floating-whatsapp strong {
        display: none;
    }

    .floating-whatsapp {
        padding-right: 8px;
    }
}

@media (max-width: 430px) {
    html {
        scroll-padding-top: 68px;
    }

    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .section {
        padding: 50px 0;
    }

    .header-inner {
        min-height: 68px;
    }

    .brand {
        gap: 7px;
    }

    .brand img {
        width: 43px;
        height: 37px;
    }

    .brand-name strong {
        font-size: 1.05rem;
    }

    .brand-name small {
        margin-top: 4px;
        font-size: 0.43rem;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        padding: 9px;
    }

    .site-nav {
        top: 68px;
        right: 12px;
        left: 12px;
    }

    .hero {
        padding-top: 68px;
    }

    .hero-copy {
        padding: 38px 12px 36px;
    }

    .hero-copy h1 {
        font-size: clamp(1.78rem, 8vw, 2.08rem);
    }

    .hero-lead,
    .section-lead {
        font-size: 0.91rem;
    }

    h2 {
        font-size: clamp(1.8rem, 8.6vw, 2.2rem);
    }

    .button {
        min-height: 48px;
        padding: 11px 19px;
        font-size: 0.84rem;
    }

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

    .process-card,
    .why-card,
    .specialist-card,
    .plan-card {
        border-radius: 18px;
    }

    .tracker-visual {
        width: min(100%, 280px);
    }

    .footer-brand img {
        width: 148px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

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

    .hero-card,
    .hero-card::before,
    .status-dot,
    .mini-lotus {
        animation: none !important;
    }
}
