:root {
    --ink: #081a23;
    --ink-soft: #18313b;
    --paper: #f7f8f4;
    --white: #ffffff;
    --mist: #e7ece9;
    --line: #d5ddda;
    --blue: #1c71e8;
    --blue-dark: #1256b2;
    --green: #25d366;
    --green-dark: #159447;
    --lime: #b7f04a;
    --amber: #f5b642;
    --red: #ef6a64;
    --text: #29424b;
    --muted: #63767c;
    --shadow: 0 24px 60px rgba(8, 26, 35, 0.12);
    --container: 1180px;
    --header-height: 76px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
    background: var(--paper);
}

body {
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

button {
    font: inherit;
}

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

.section {
    padding: 112px 0;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    color: var(--white);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header:not(.menu-active) {
    border-bottom: 1px solid rgba(8, 26, 35, 0.1);
    background: rgba(242, 244, 240, 0.96);
    color: var(--ink);
}

.site-header:not(.menu-active) .brand {
    color: var(--ink);
}

.site-header:not(.menu-active) .brand-copy span {
    color: rgba(8, 26, 35, 0.58);
}

.site-header:not(.menu-active) .desktop-nav a {
    color: rgba(8, 26, 35, 0.68);
}

.site-header:not(.menu-active) .desktop-nav a:hover {
    color: var(--ink);
}

.site-header:not(.menu-active) .header-cta,
.site-header:not(.menu-active) .menu-button {
    border-color: rgba(8, 26, 35, 0.24);
    color: var(--ink);
}

.site-header:not(.menu-active) .header-cta:hover {
    border-color: var(--ink);
    background: rgba(8, 26, 35, 0.06);
}

.site-header.scrolled {
    background: rgba(242, 244, 240, 0.96);
    box-shadow: 0 1px 0 rgba(8, 26, 35, 0.12);
    backdrop-filter: blur(16px);
}

.site-header.menu-active {
    background: rgba(8, 26, 35, 0.98);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
}

.brand-mark {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    font-family: "Manrope", sans-serif;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}

.brand-copy span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 160ms ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--lime);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
}

.desktop-nav a:hover {
    color: var(--white);
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    padding: 0 16px;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 160ms ease, border-color 160ms ease;
}

.header-cta:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.header-cta svg,
.menu-button svg {
    width: 18px;
    height: 18px;
}

.menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.mobile-nav,
.mobile-nav-backdrop {
    display: none;
}

.site-header:not(.menu-active),
.site-header.scrolled {
    border-bottom: 0;
    background: rgba(11, 16, 18, 0.96);
    box-shadow: none;
    color: var(--white);
}

.site-header:not(.menu-active) .brand {
    color: var(--white);
}

.site-header:not(.menu-active) .brand-copy span {
    color: rgba(255, 255, 255, 0.58);
}

.site-header:not(.menu-active) .desktop-nav a {
    color: rgba(255, 255, 255, 0.7);
}

.site-header:not(.menu-active) .desktop-nav a:hover {
    color: var(--white);
}

.site-header:not(.menu-active) .header-cta,
.site-header:not(.menu-active) .menu-button {
    border-color: rgba(255, 255, 255, 0.24);
    color: var(--white);
}

.site-header:not(.menu-active) .header-cta:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

.hero {
    position: relative;
    display: flex;
    min-height: min(900px, calc(100svh - 32px));
    padding-top: var(--header-height);
    background: #0b1012;
    color: var(--white);
    isolation: isolate;
    overflow: hidden;
}

.hero-backdrop,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-backdrop {
    z-index: -3;
    background: #0b1012;
}

.backdrop-block {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48%;
    background: #131a1c;
    clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

.backdrop-word {
    position: absolute;
    right: -52px;
    bottom: 32px;
    color: rgba(255, 255, 255, 0.018);
    font-family: "Manrope", sans-serif;
    font-size: 96px;
    font-weight: 800;
    line-height: 0.8;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-overlay {
    z-index: -2;
    top: 23%;
    right: 39.5%;
    bottom: auto;
    left: auto;
    width: 14px;
    height: 14px;
    background: var(--lime);
}

.hero::after {
    content: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(100svh - var(--header-height) - 32px);
    padding-bottom: 34px;
}

.hero-layout {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 36px 0 24px;
}

.hero-copy {
    width: min(820px, 72%);
    margin: 0;
    padding: 0;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    color: var(--blue);
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--lime);
}

.eyebrow-dot,
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(183, 240, 74, 0.14);
}

.hero h1 {
    max-width: 720px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(40px, 3.75vw, 54px);
    font-weight: 700;
    line-height: 1.06;
}

.hero h1 span {
    color: var(--lime);
}

.hero-description {
    max-width: 670px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(17px, 1.65vw, 20px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    gap: 12px;
    border: 0;
    border-radius: 6px;
    padding: 0 22px;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
}

.button-primary {
    background: var(--green);
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.22);
    color: #062a15;
}

.button-primary:hover {
    background: #42e57e;
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

.hero-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.hero-note svg {
    width: 17px;
    height: 17px;
    color: var(--lime);
}

.hero-proof {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1.4fr;
    align-items: center;
    width: min(680px, 58%);
    min-height: 82px;
    gap: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.proof-item strong {
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.proof-item span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
}

.proof-divider {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.14);
}

.section-heading {
    max-width: 670px;
}

.section-heading-wide {
    max-width: 900px;
}

.section-heading h2,
.solution-copy h2,
.final-cta-copy h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4.3vw, 54px);
    font-weight: 700;
    line-height: 1.12;
}

.section-heading > p {
    max-width: 750px;
    margin-top: 24px;
    color: var(--text);
    font-size: 18px;
}

.diagnosis {
    background: var(--paper);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.problem-card {
    position: relative;
    min-height: 340px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 34px;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.card-number {
    position: absolute;
    top: 24px;
    right: 26px;
    color: #dce3df;
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.card-icon,
.method-icon,
.booking-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 7px;
}

.card-icon svg,
.method-icon svg,
.booking-icon svg {
    width: 23px;
    height: 23px;
}

.card-icon-red {
    background: rgba(239, 106, 100, 0.12);
    color: #c44540;
}

.card-icon-amber {
    background: rgba(245, 182, 66, 0.16);
    color: #a36c05;
}

.card-icon-blue {
    background: rgba(28, 113, 232, 0.12);
    color: var(--blue);
}

.problem-card h3 {
    margin-top: 58px;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.problem-card p {
    margin-top: 16px;
    color: var(--muted);
}

.solution {
    position: relative;
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
}

.solution::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 36%;
    height: 6px;
    background: var(--lime);
    content: "";
}

.solution-layout {
    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(56px, 8vw, 110px);
}

.portrait-block {
    position: relative;
}

.portrait-frame {
    height: 570px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 28px 28px 0 rgba(183, 240, 74, 0.08);
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.portrait-caption {
    position: absolute;
    right: -24px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 260px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    background: rgba(8, 26, 35, 0.94);
    padding: 15px 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.portrait-caption .status-dot {
    flex-shrink: 0;
    color: var(--green);
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.12);
}

.section-kicker-light {
    color: var(--lime);
}

.solution-copy h2 span {
    color: var(--lime);
}

.solution-copy > p {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
}

.solution-copy > p strong {
    color: var(--white);
}

.solution-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.12);
}

.solution-principles div {
    display: flex;
    flex-direction: column;
    min-height: 128px;
    gap: 18px;
    background: var(--ink);
    padding: 20px 16px;
}

.solution-principles svg {
    width: 24px;
    height: 24px;
    color: var(--lime);
}

.solution-principles span {
    color: rgba(255, 255, 255, 0.84);
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.method {
    background: var(--white);
}

.method-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 80px;
}

.method-intro > p {
    border-left: 3px solid var(--blue);
    padding-left: 24px;
    color: var(--muted);
}

.method-list {
    margin-top: 58px;
    border-top: 1px solid var(--line);
}

.method-item {
    display: grid;
    grid-template-columns: 56px 56px minmax(0, 1fr) 100px;
    align-items: center;
    gap: 28px;
    border-bottom: 1px solid var(--line);
    padding: 36px 10px;
    transition: background 180ms ease, padding 180ms ease;
}

.method-item:hover {
    background: #f5f8f6;
    padding-right: 24px;
    padding-left: 24px;
}

.method-number {
    color: #aebbb6;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.method-icon {
    background: #e9f1fc;
    color: var(--blue);
}

.method-copy h3 {
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    font-weight: 800;
}

.method-copy p {
    max-width: 760px;
    margin-top: 8px;
    color: var(--muted);
}

.method-tag {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 7px 10px;
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.audience {
    padding: 88px 0;
    background: #e7eee9;
}

.audience-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 90px;
}

.audience-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #bdcbc5;
    border-left: 1px solid #bdcbc5;
}

.audience-items div {
    display: flex;
    align-items: flex-start;
    min-height: 124px;
    gap: 16px;
    border-right: 1px solid #bdcbc5;
    border-bottom: 1px solid #bdcbc5;
    padding: 24px;
}

.audience-items svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--blue);
}

.audience-items span {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.final-cta {
    position: relative;
    background: #102d38;
    color: var(--white);
    overflow: hidden;
}

.final-cta::before {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    mask-image: linear-gradient(to right, black, transparent 75%);
}

.final-cta-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.7fr);
    align-items: center;
    gap: 90px;
}

.final-cta-copy > p {
    max-width: 690px;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
}

.meeting-details {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.meeting-details div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.meeting-details svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    color: var(--lime);
}

.booking-panel {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: var(--white);
    padding: 38px;
    color: var(--ink);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.booking-icon {
    margin-bottom: 30px;
    background: rgba(28, 113, 232, 0.12);
    color: var(--blue);
}

.booking-label {
    color: var(--blue);
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.booking-panel h3 {
    margin-top: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    line-height: 1.18;
}

.booking-panel p {
    margin-top: 16px;
    color: var(--muted);
}

.button-full {
    width: 100%;
    margin-top: 28px;
}

.booking-panel small {
    display: block;
    margin-top: 14px;
    color: #87979c;
    font-size: 11px;
    text-align: center;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--ink);
    color: rgba(255, 255, 255, 0.52);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 110px;
    gap: 32px;
    font-size: 12px;
}

.brand-footer {
    justify-self: start;
}

.footer-inner p {
    text-align: center;
}

.footer-inner > span {
    justify-self: end;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 12px 30px rgba(8, 26, 35, 0.24);
    color: #073719;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.whatsapp-float.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.whatsapp-float:hover {
    background: #42e57e;
    transform: translateY(-3px);
}

.whatsapp-float svg {
    width: 25px;
    height: 25px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1024px) {
    .desktop-nav {
        gap: 20px;
    }

    .hero-copy {
        width: min(760px, 78%);
    }

    .hero-proof {
        width: min(720px, 78%);
    }

    .problem-card {
        padding: 28px;
    }

    .solution-layout {
        gap: 60px;
    }

    .portrait-frame {
        height: 520px;
    }

    .portrait-caption {
        right: -10px;
    }

    .method-intro,
    .audience-layout,
    .final-cta-layout {
        gap: 54px;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 68px;
    }

    .section {
        padding: 84px 0;
    }

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

    .menu-button {
        display: flex;
    }

    .mobile-nav-backdrop {
        position: fixed;
        z-index: 1001;
        inset: 0;
        display: block;
        border: 0;
        background: rgba(2, 6, 7, 0.72);
        opacity: 0;
        pointer-events: none;
        transition: opacity 280ms ease;
    }

    .mobile-nav-backdrop.open {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-nav {
        position: fixed;
        z-index: 1002;
        top: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        width: 70vw;
        max-width: 380px;
        min-width: 224px;
        height: 100dvh;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        background: #111819;
        padding: 22px;
        color: var(--white);
        box-shadow: -28px 0 70px rgba(0, 0, 0, 0.34);
        overflow-y: auto;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .mobile-nav.open {
        pointer-events: auto;
        transform: translateX(0);
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 46px;
        color: rgba(255, 255, 255, 0.5);
        font-family: "Manrope", sans-serif;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .mobile-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 6px;
        background: transparent;
        color: var(--white);
        cursor: pointer;
    }

    .mobile-nav-close svg {
        width: 20px;
        height: 20px;
    }

    .mobile-nav-links {
        margin-top: 42px;
        border-top: 1px solid rgba(255, 255, 255, 0.13);
    }

    .mobile-nav-links a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 72px;
        gap: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.88);
        font-family: "Manrope", sans-serif;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
    }

    .mobile-nav-links a > span {
        display: flex;
        align-items: baseline;
        gap: 12px;
    }

    .mobile-nav-links small {
        color: var(--lime);
        font-size: 9px;
        font-weight: 800;
    }

    .mobile-nav-links svg {
        width: 17px;
        height: 17px;
        flex-shrink: 0;
        color: rgba(255, 255, 255, 0.42);
    }

    .mobile-nav .mobile-nav-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 58px;
        gap: 9px;
        margin-top: 28px;
        border: 0;
        border-radius: 6px;
        background: var(--green);
        padding: 12px;
        color: #062a15;
        font-family: "Manrope", sans-serif;
        font-size: 12px;
        font-weight: 800;
        text-align: center;
        text-decoration: none;
    }

    .mobile-nav-cta svg {
        width: 17px;
        height: 17px;
        flex-shrink: 0;
    }

    .mobile-nav-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: auto;
        padding-top: 32px;
        color: rgba(255, 255, 255, 0.5);
        font-family: "Manrope", sans-serif;
        font-size: 9px;
        line-height: 1.3;
        text-transform: uppercase;
    }

    .mobile-nav-brand img {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }

    .mobile-nav-brand span {
        display: flex;
        flex-direction: column;
    }

    .mobile-nav-brand strong {
        color: var(--white);
        font-size: 12px;
    }

    .hero {
        min-height: 860px;
    }

    .backdrop-block {
        width: 62%;
        opacity: 0.55;
    }

    .backdrop-word {
        display: none;
    }

    .hero-overlay {
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
        width: 38%;
        height: 4px;
    }

    .hero-layout {
        display: block;
    }

    .hero-copy,
    .hero-proof {
        width: 88%;
    }

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

    .problem-card {
        min-height: 280px;
    }

    .solution-layout {
        grid-template-columns: 1fr;
    }

    .portrait-block {
        width: min(100%, 580px);
        margin-inline: auto;
    }

    .portrait-frame {
        height: 560px;
    }

    .method-intro,
    .audience-layout,
    .final-cta-layout {
        grid-template-columns: 1fr;
    }

    .method-intro {
        align-items: start;
        gap: 28px;
    }

    .method-item {
        grid-template-columns: 44px 50px minmax(0, 1fr);
        gap: 20px;
    }

    .method-tag {
        display: none;
    }

    .audience-layout {
        gap: 42px;
    }

    .final-cta-layout {
        gap: 52px;
    }

    .booking-panel {
        width: min(100%, 560px);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        min-height: 180px;
        gap: 12px;
        padding: 28px 0;
        text-align: center;
    }

    .brand-footer,
    .footer-inner > span {
        justify-self: center;
    }
}

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

    .section {
        padding: 72px 0;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .brand-copy strong {
        font-size: 14px;
    }

    .hero {
        min-height: 790px;
    }

    .backdrop-block {
        width: 76%;
    }

    .hero-content {
        padding-top: 0;
        padding-bottom: 24px;
    }

    .hero-layout {
        padding: 72px 0 24px;
    }

    .hero-copy {
        width: 100%;
        margin-top: 0;
        padding: 28px 0 24px;
    }

    .eyebrow {
        margin-bottom: 18px;
        font-size: 10px;
    }

    .hero h1 {
        font-size: clamp(32px, 9.5vw, 42px);
        line-height: 1.08;
    }

    .hero-description {
        margin-top: 20px;
        font-size: 16px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }

    .button {
        min-height: 62px;
        padding: 12px 16px;
        font-size: 13px;
    }

    .hero-note {
        justify-content: center;
        font-size: 11px;
    }

    .hero-proof {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        min-height: 78px;
        gap: 12px;
    }

    .proof-divider {
        display: none;
    }

    .proof-item strong {
        font-size: 17px;
    }

    .proof-item span {
        font-size: 10px;
        line-height: 1.25;
    }

    .section-heading h2,
    .solution-copy h2,
    .final-cta-copy h2 {
        font-size: clamp(31px, 9vw, 42px);
    }

    .section-heading > p {
        font-size: 16px;
    }

    .problem-grid {
        margin-top: 40px;
    }

    .problem-card {
        min-height: 0;
        padding: 26px;
    }

    .problem-card h3 {
        margin-top: 40px;
    }

    .portrait-frame {
        height: min(510px, 125vw);
    }

    .portrait-caption {
        right: 12px;
        bottom: 12px;
        left: 12px;
        max-width: none;
    }

    .solution-principles {
        grid-template-columns: 1fr;
    }

    .solution-principles div {
        flex-direction: row;
        align-items: center;
        min-height: 72px;
    }

    .method-list {
        margin-top: 42px;
    }

    .method-item {
        grid-template-columns: 42px minmax(0, 1fr);
        align-items: start;
        gap: 16px;
        padding: 28px 0;
    }

    .method-number {
        display: none;
    }

    .method-copy h3 {
        font-size: 19px;
    }

    .audience-items {
        grid-template-columns: 1fr;
    }

    .audience-items div {
        min-height: 90px;
    }

    .booking-panel {
        padding: 28px 22px;
    }

    .booking-panel h3 {
        font-size: 25px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 50px;
        height: 50px;
    }
}

@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;
    }

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