:root {
    --nav-height: 64px;
    --container-wide: 1080px;
    --container-content: 880px;
    --orange: #e11d48;
    --orange-light: #fb7185;
    --red: #e11d48;
    --pink: #fb7185;
    --yellow: #ffc233;
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --green: #10b981;
    --dark: #1a1a2e;
    --dark-soft: #2d2d44;
    --white: #ffffff;
    --off-white: #ffffff;
    --gray: #94a3b8;
    --gray-light: #f1f5f9;
    --category-rose: #fdf2f8;
    --border: rgba(0,0,0,0.08);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-pill: 50px;
    --border-main: 1px solid rgba(0,0,0,0.08);
    --shadow: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
    --gradient-main: linear-gradient(135deg, #be123c 0%, #e11d48 55%, #fb7185 100%);
    --gradient-warm: linear-gradient(135deg, #be123c 0%, #e11d48 100%);
    --gradient-card: linear-gradient(135deg, #fff4ee 0%, #fff0f5 100%);
    --button-primary-gradient: linear-gradient(95deg, #e11d48 0%, #e11d53 48%, #bd1747 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
section[id] { scroll-margin-top: var(--nav-height); }

body {
    font-family: 'Geist', sans-serif;
    background: #ffffff;
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ═══════ NAV ═══════ */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 32px;
    min-height: var(--nav-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    width: 100%;
    max-width: var(--container-wide);
    min-height: var(--nav-height);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.logo img {
    display: block;
    width: auto;
    height: 27px;
}

.nav-cta {
    background: var(--red);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.2px;
    text-decoration: none;
    transition: opacity 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    border: none;
    cursor: pointer;
    font-family: 'Geist', sans-serif;
    box-shadow: none;
}
.nav-cta:hover {
    box-shadow: none;
}

.nav-link {
    color: var(--dark-soft);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--dark);
}

.nav-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 51, 102, 0.1);
    color: var(--red);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 51, 102, 0.2);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.top-zone {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
       
/* ═══════ HERO ═══════ */
.hero {
    min-height: 100svh;
    padding: var(--nav-height) 32px 80px;
    position: relative;
    overflow: hidden;
    background: #fafafa;
    box-sizing: border-box;
}
.hero-inner {
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    position: relative;
    min-height: calc(100svh - var(--nav-height) - 80px);
    padding: 0;
}
.hero-copy {
    max-width: 560px;
    text-align: left;
    min-height: calc(100svh - var(--nav-height) - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}
.hero-meta {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
    animation: heroSlideIn 0.55s ease-out both;
}
.hero h1 {
    font-family: 'Geist', sans-serif;
    font-size: clamp(56px, 6.4vw, 76px);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -2.2px;
    margin-bottom: 18px;
    animation: heroSlideIn 0.55s ease-out 0.04s both;
}
.hero h1 .rotating-wrapper {
    display: inline-block;
    min-width: 0;
}
.hero h1 .rotating-word {
    display: inline-block;
    color: var(--red);
    opacity: 1;
}
.hero h1 .rotating-word.swap {
    animation: wordSwap 0.42s ease both;
}
.hero-sub {
    font-size: clamp(17px, 1.7vw, 19px);
    line-height: 1.55;
    color: rgba(45,45,68,0.92);
    max-width: 42ch;
    margin: 0 0 34px;
    font-weight: 400;
    animation: heroSlideIn 0.55s ease-out 0.08s both;
}
.hero-cta-group {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    animation: heroSlideIn 0.55s ease-out 0.12s both;
}
.hero-proof {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.hero-secondary-link {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(45,45,68,0.82);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}
.hero-secondary-link:hover {
    color: var(--dark);
    transform: translateX(2px);
}
.hero-surface {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -40px;
    width: min(41vw, 560px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroGalleryIn 0.7s ease-out 0.08s both;
    transform: none;
}
.hero-gallery-label {
    position: absolute;
    top: 30px;
    left: 18px;
    z-index: 2;
    color: rgba(45,45,68,0.58);
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding: 8px 11px;
    border: 1px solid rgba(26,26,46,0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
}
.hero-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    opacity: 1;
    filter: none;
    transform: rotate(-1deg);
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 6%, #000 96%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 6%, #000 96%, transparent 100%);
}
.hero-gallery-column {
    display: grid;
    gap: 12px;
    align-content: start;
}
.hero-gallery-column--right {
    padding-top: 42px;
}
.mini-profile {
    align-self: start;
    padding: 14px;
    border: 1px solid rgba(30,41,59,0.08);
    border-radius: 14px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 12px 32px rgba(30,41,59,0.06);
}
.mini-profile img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.96) contrast(0.99);
    border-radius: 10px;
    margin-bottom: 12px;
}
.mini-profile strong {
    display: block;
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}
.mini-profile span {
    display: block;
    margin-top: 5px;
    color: var(--gray);
    font-size: 13px;
    font-weight: 500;
}
.avatar-stack {
    display: flex;
    align-items: center;
}
.avatar-stack img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.9);
    margin-left: -10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    background: var(--white);
}
.avatar-stack img:first-child {
    margin-left: 0;
}
.avatar-stack-more {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    border: 2px solid rgba(255,255,255,0.9);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.96);
    color: rgba(45,45,68,0.72);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.btn-big {
    background: var(--red);
    color: var(--white);
    padding: 18px 44px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.2px;
    text-decoration: none;
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
    border: none;
    cursor: pointer;
    font-family: 'Geist', sans-serif;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-big:hover {
    box-shadow: none;
}
.btn-big .arrow {
    transition: transform 0.3s ease;
}
.btn-big:hover .arrow {
    transform: translateX(4px);
}

.btn-outline {
    background: var(--white);
    color: var(--dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: var(--border-main);
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    cursor: pointer;
}
.btn-outline:hover {
    background: #fff8fa;
    border-color: var(--orange);
    color: var(--orange);
}

@keyframes bounceIn {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroSlideIn {
    from { transform: translateY(14px); }
    to { transform: translateY(0); }
}
@keyframes heroGalleryIn {
    from { transform: translateY(18px) rotate(-0.5deg); }
    to { transform: translateY(0) rotate(0); }
}
@keyframes wordSwap {
    from { opacity: 0.38; transform: translateY(7px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

/* ═══════ SECTIONS ═══════ */
.section {
    padding: 92px 32px;
}
.section-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
}
.section-label {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}
.section-title {
    font-family: 'Geist', sans-serif;
    font-size: clamp(42px, 4.6vw, 52px);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 42px;
    letter-spacing: -1.7px;
}
.section-title .highlight {
    color: var(--red);
}

/* ═══════ PROFILE BENEFITS ═══════ */
.profile-benefits-section {
    padding-top: 112px;
    padding-bottom: 112px;
    background: #fafafa;
}
.profile-benefits-section .section-inner {
    max-width: 1080px;
}
.profile-benefits-heading {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
}
.profile-benefits-heading .section-title {
    max-width: 14ch;
    margin: 0 auto;
}
.profile-benefits-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: clamp(56px, 7vw, 84px);
    align-items: center;
}
.profile-benefits-visual {
    position: relative;
    width: min(100%, 460px);
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #f1f5f9;
}
.profile-benefits-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 38%;
}
.profile-benefits-visual figcaption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    padding: 7px 12px;
    overflow: hidden;
    border: 1px solid rgba(225,29,72,0.14);
    border-radius: 999px;
    background: rgba(253,242,248,0.96);
    color: var(--red);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}
.profile-benefits-list {
    width: 100%;
    align-self: center;
}
.profile-benefit {
    padding: 28px 0 30px;
    border-bottom: 1px solid rgba(26,26,46,0.12);
}
.profile-benefit:last-child {
    border-bottom: 0;
}
.profile-benefit h3 {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.4px;
    line-height: 1.25;
}
.profile-benefit p {
    max-width: 50ch;
    margin: 0;
    color: var(--dark-soft);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

/* ═══════ JOIN REASSURANCE ═══════ */
.join-reassurance {
    padding: 64px 32px 70px;
    background: var(--category-rose);
    text-align: center;
}
.join-reassurance-inner {
    width: min(100%, 760px);
    margin: 0 auto;
}
.join-reassurance-kicker {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;
    line-height: 1;
    text-transform: uppercase;
}
.join-reassurance-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--red);
}
.join-reassurance-icon .ph {
    font-size: 20px;
    line-height: 1;
}
.join-reassurance h2 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(30px, 3.2vw, 38px);
    font-weight: 700;
    letter-spacing: -1.1px;
    line-height: 1.12;
}
.join-reassurance p {
    max-width: 48ch;
    margin: 18px auto 0;
    color: var(--dark-soft);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

/* ═══════ PREVIEW ═══════ */
.preview-section {
    padding: 88px 32px;
    background: #ffffff;
    position: relative;
    border-top: none;
}
.preview-inner {
    max-width: var(--container-content);
    margin: 0 auto;
}
.preview-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}
.preview-copy {
    max-width: 760px;
}
.preview-copy .section-label {
    margin-bottom: 14px;
}
.preview-copy .section-title {
    margin-bottom: 16px;
}
.preview-copy p {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(45,45,68,0.76);
    font-weight: 400;
    max-width: 42ch;
    margin: 0 auto;
}

.listing-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 22px;
    border: 1px solid rgba(26,26,46,0.11);
    box-shadow: 0 8px 24px rgba(26,26,46,0.055);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    width: 100%;
    max-width: 760px;
    text-align: left;
}
.listing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(26,26,46,0.065);
}
.listing-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 30px;
    align-items: stretch;
}
.listing-media {
    min-width: 0;
}
.listing-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.listing-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 0;
}
.listing-gallery img {
    width: 100%;
    aspect-ratio: 2 / 3;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: none;
    box-shadow: 0 8px 18px rgba(26,26,46,0.08);
    background: #f5f5f5;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.listing-gallery img:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.listing-gallery-wrap {
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 2px;
}
.listing-header {
    display: block;
    margin-bottom: 0;
}
.listing-avatar {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 0;
    box-shadow: none;
    display: block;
}
.listing-name {
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 6px;
}
.listing-skill {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4;
}
.listing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    margin-bottom: 16px;
}
.listing-tag {
    background: var(--category-rose);
    color: var(--red);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
}
.listing-tag.alt {
    background: rgba(36,99,235,0.08);
    color: var(--blue);
}
.listing-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 14px;
}
.listing-summary-item {
    display: grid;
    gap: 4px;
}
.listing-summary-label {
    color: var(--gray);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}
.listing-summary-value {
    color: var(--dark);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}
.listing-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-soft);
    margin-bottom: 18px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.listing-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 0;
}
.listing-action-btn {
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--red);
    background: #ffffff;
    color: var(--red);
    font-family: 'Geist', sans-serif;
    white-space: nowrap;
}
.listing-action-btn:hover {
    color: var(--red);
    background: var(--category-rose);
    transform: none;
}
.listing-action-btn .arrow {
    transition: transform 0.2s ease;
}
.listing-action-btn:hover .arrow {
    transform: translateX(3px);
}

/* ═══════ FULL PROFILE EXPERIENCE ═══════ */
.profile-modal {
    position: fixed;
    inset: 0;
    z-index: 220;
    background: rgba(15, 23, 42, 0.48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}
.profile-modal.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.profile-modal-shell {
    width: 100%;
    height: 100svh;
    background: #ffffff;
    transform: translateY(18px);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}
.profile-modal.visible .profile-modal-shell {
    transform: translateY(0);
}
.profile-modal-nav {
    height: 76px;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(26, 26, 46, 0.1);
    background: rgba(255, 255, 255, 0.96);
    position: relative;
    z-index: 4;
}
.profile-modal-logo {
    width: auto;
    display: inline-flex;
    align-items: center;
}
.profile-modal-logo img {
    display: block;
    width: auto;
    height: 27px;
}
.profile-modal-context {
    color: rgba(45, 45, 68, 0.68);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.profile-modal-close {
    justify-self: end;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(26, 26, 46, 0.12);
    background: #ffffff;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.profile-modal-close:hover {
    background: #f7f7f8;
    border-color: rgba(26, 26, 46, 0.2);
}
.profile-modal-close:focus-visible,
.profile-contact-primary:focus-visible,
.profile-contact-secondary:focus-visible,
.profile-mobile-action button:focus-visible {
    outline: 2px solid rgba(225, 29, 72, 0.3);
    outline-offset: 3px;
}
.profile-modal-scroll {
    height: calc(100svh - 76px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
}
.profile-page {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 58px 32px 120px;
}
.profile-page-header {
    margin-bottom: 30px;
}
.profile-page-heading {
    max-width: 760px;
}
.profile-page-eyebrow,
.profile-demo-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}
.profile-page-name {
    margin: 0 0 8px;
    color: var(--dark);
    font-family: 'Lora', serif;
    font-size: clamp(42px, 4.2vw, 58px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -2.4px;
}
.profile-page-skill {
    margin: 0;
    color: rgba(45, 45, 68, 0.78);
    font-size: 20px;
    line-height: 1.45;
    font-weight: 400;
}
.profile-page-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    max-width: none;
    margin-top: 18px;
}
.profile-page-tag {
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--category-rose);
    color: var(--red);
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
}
.profile-page-tag-business {
    background: rgba(36, 99, 235, 0.08);
    color: var(--blue);
}
.profile-media-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 220px);
    gap: 10px;
    border-radius: 22px;
    overflow: hidden;
    background: #f3f4f6;
}
.profile-media-grid figure {
    margin: 0;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    position: relative;
    background: #f3f4f6;
}
.profile-media-grid img,
.profile-media-grid video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.profile-media-grid figure:hover img,
.profile-media-grid figure:hover video {
    transform: scale(1.025);
}
.profile-media-main {
    grid-column: 1;
    grid-row: 1 / span 2;
}
.profile-media-video {
    grid-column: auto;
}
.profile-media-video-label {
    position: absolute;
    left: 16px;
    bottom: 16px;
    min-height: 38px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    box-shadow: 0 5px 16px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(8px);
}
.profile-media-more-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.28);
    pointer-events: none;
}
.profile-media-more {
    position: absolute;
    z-index: 1;
    right: 14px;
    bottom: 14px;
    min-height: 36px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    backdrop-filter: blur(8px);
}
.profile-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 72px;
    align-items: start;
    padding-top: 52px;
}
.profile-page-main {
    min-width: 0;
}
.profile-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 36px;
    width: 100%;
    margin: 0;
    padding: 0 0 32px;
    border: 0;
    border-bottom: 1px solid rgba(26, 26, 46, 0.11);
    border-radius: 0;
    background: transparent;
}
.profile-facts-overview {
    margin-bottom: 0;
}
.profile-fact {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 82px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(26, 26, 46, 0.075);
}
.profile-fact:nth-child(4),
.profile-fact:nth-child(5) {
    grid-column: auto;
}
.profile-fact:nth-last-child(-n + 2) {
    border-bottom: 0;
}
.profile-fact-icon {
    width: 32px;
    height: 32px;
    border-radius: 0;
    background: transparent;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}
.profile-fact > div {
    min-width: 0;
}
.profile-fact dt,
.profile-contact-label {
    color: #94a3b8;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}
.profile-fact dd {
    margin: 0;
    color: var(--dark);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
}
.profile-content-section {
    padding: 38px 0;
    border-bottom: 1px solid rgba(26, 26, 46, 0.11);
}
.profile-content-section h3 {
    margin: 0 0 18px;
    color: var(--dark);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.7px;
}
.profile-content-section p {
    max-width: 66ch;
    margin: 0 0 14px;
    color: rgba(45, 45, 68, 0.79);
    font-size: 17px;
    line-height: 1.72;
    font-weight: 400;
}
.profile-content-section p:last-child {
    margin-bottom: 0;
}
.profile-outcomes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.profile-outcomes li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}
.profile-outcomes .ph {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    background: var(--category-rose);
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.profile-session-list {
    display: grid;
}
.profile-session-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(26, 26, 46, 0.08);
}
.profile-session-row:last-child {
    padding-bottom: 0;
}
.profile-session-row > .ph {
    color: var(--red);
    font-size: 24px;
    padding-top: 2px;
}
.profile-session-row div {
    display: grid;
    gap: 3px;
}
.profile-session-row strong {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}
.profile-session-row span {
    color: rgba(45, 45, 68, 0.7);
    font-size: 15px;
    line-height: 1.5;
}
.profile-provider-story {
    padding-bottom: 42px;
    border-bottom: 0;
}
.profile-provider-intro {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: start;
    gap: 28px;
}
.profile-provider-intro img {
    width: 180px;
    aspect-ratio: 4 / 5;
    height: auto;
    display: block;
    border-radius: 18px;
    object-fit: cover;
    object-position: center 30%;
}
.profile-provider-intro > div {
    min-width: 0;
}
.profile-provider-intro h4 {
    margin: 0 0 14px;
    color: var(--dark);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.35px;
}
.profile-provider-quote {
    max-width: 28ch;
    margin: 30px 0 0 208px;
    padding-top: 24px;
    border-top: 1px solid rgba(26, 26, 46, 0.11);
    color: var(--dark);
    font-family: 'Lora', serif;
    font-size: 21px;
    line-height: 1.5;
    font-weight: 500;
}
.profile-contact-panel {
    position: sticky;
    top: 32px;
    padding: 28px;
    border: 1px solid rgba(26, 26, 46, 0.11);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(26, 26, 46, 0.075);
}
.profile-contact-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.profile-contact-kicker > .ph {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 999px;
    background: var(--category-rose);
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}
.profile-contact-panel h3 {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 25px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.6px;
}
.profile-contact-panel > p {
    margin: 0 0 22px;
    color: rgba(45, 45, 68, 0.7);
    font-size: 15px;
    line-height: 1.55;
}
.profile-contact-primary,
.profile-contact-secondary {
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.profile-contact-primary {
    border: 1px solid var(--red);
    background: var(--red);
    color: #ffffff;
}
.profile-contact-primary:hover {
    border-color: var(--red);
}
.profile-contact-secondary {
    margin-top: 10px;
    border: 1px solid rgba(26, 26, 46, 0.14);
    background: #ffffff;
    color: var(--dark);
}
.profile-contact-secondary:hover {
    border-color: rgba(26, 26, 46, 0.28);
    background: #f8f8f9;
}
.profile-demo-banner {
    margin-top: 0;
    padding: 58px 64px;
    border: 0;
    border-radius: 24px;
    background: var(--dark);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
}
.profile-demo-banner > div {
    min-width: 0;
    max-width: 700px;
}
.profile-demo-separator {
    margin: 40px 0;
    border: 0;
    border-top: 1px solid rgba(26, 26, 46, 0.11);
}
.profile-demo-banner h3 {
    max-width: 24ch;
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1px;
}
.profile-demo-banner p {
    max-width: 42ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.55;
}
.profile-demo-kicker {
    color: #ff86a8;
}
.profile-demo-cta {
    flex-shrink: 0;
    min-height: 52px;
    padding: 15px 22px;
    border-radius: 999px;
    border: 1px solid var(--red);
    background: var(--red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}
.profile-demo-cta:hover {
    border-color: var(--red);
}
.profile-mobile-action {
    display: none;
}

@media (max-width: 980px) {
    .profile-page-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 42px;
    }
    .profile-media-grid {
        grid-template-rows: repeat(2, 190px);
    }
    .profile-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .profile-fact,
    .profile-fact:nth-child(4),
    .profile-fact:nth-child(5) {
        grid-column: auto;
    }
}

.contact-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.46);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 240;
}
.contact-modal.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.contact-modal-card {
    width: min(100%, 560px);
    max-height: min(88vh, 760px);
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid rgba(26, 26, 46, 0.1);
    border-radius: 24px;
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.2);
    padding: 34px;
    position: relative;
    transform: translateY(14px) scale(0.985);
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-modal.visible .contact-modal-card {
    transform: translateY(0) scale(1);
}
.contact-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(26, 26, 46, 0.12);
    background: #ffffff;
    color: var(--dark);
    font-size: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.contact-modal-close:hover {
    background: #f7f7f8;
    border-color: rgba(26, 26, 46, 0.2);
}
.contact-modal-close:focus-visible {
    outline: 2px solid rgba(225, 29, 72, 0.3);
    outline-offset: 3px;
}
.contact-modal-kicker {
    display: block;
    margin: 4px 58px 14px 0;
    color: var(--red);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.contact-modal-profile {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}
.contact-modal-avatar {
    width: 92px;
    height: 92px;
    border-radius: 18px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}
.contact-modal-profile-copy {
    min-width: 0;
}
.contact-modal-title {
    font-family: 'Lora', serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: var(--dark);
    margin: 0 54px 12px 0;
}
.contact-modal-skill {
    font-size: 16px;
    line-height: 1.45;
    color: #64748b;
    font-weight: 500;
}
.contact-modal-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(45, 45, 68, 0.72);
    font-weight: 400;
    margin: 0 0 24px;
    max-width: 42ch;
}
.contact-modal-preview-label {
    display: block;
    margin-bottom: 9px;
    color: #94a3b8;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}
.contact-modal-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 46, 0.09);
    border-radius: 16px;
    background: #fafafa;
}
.contact-modal-preview-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 52px;
    padding: 12px 10px;
    border-right: 1px solid rgba(26, 26, 46, 0.08);
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}
.contact-modal-preview-item:last-child {
    border-right: 0;
}
.contact-modal-preview-item .ph {
    font-size: 17px;
    color: var(--red);
}
.contact-modal-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(30, 41, 59, 0.78);
    font-weight: 500;
    margin: 0 0 22px;
}
.contact-modal-note .ph {
    flex: 0 0 auto;
    color: var(--red);
    font-size: 18px;
}
.contact-modal-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-modal-cta:focus-visible {
    outline: 2px solid rgba(225, 29, 72, 0.28);
    outline-offset: 3px;
}
.contact-modal-methods {
    display: grid;
    gap: 12px;
}
.contact-modal-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.contact-modal-method:hover {
    border-color: rgba(225, 29, 72, 0.2);
    background: #ffffff;
}
.contact-modal-method-main {
    min-width: 0;
}
.contact-modal-method-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 4px;
}
.contact-modal-method-value {
    font-size: 16px;
    line-height: 1.45;
    color: var(--dark);
    font-weight: 600;
    word-break: break-word;
}
.contact-modal-method-icon {
    flex-shrink: 0;
    font-size: 20px;
    color: rgba(30, 41, 59, 0.45);
}

body.modal-open {
    overflow: hidden;
}

/* ═══════ BENEFITS ═══════ */
.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.benefits-section {
    background: #ffffff;
}
.benefit-card {
    border: 1px solid rgba(26,26,46,0.08);
    border-radius: 22px;
    padding: 24px;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: start;
    column-gap: 18px;
    row-gap: 8px;
}
.benefit-card-wide {
    grid-column: 1 / -1;
    max-width: calc((100% - 20px) / 2);
    width: 100%;
    justify-self: center;
}
.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(26,26,46,0.06);
    border-color: rgba(225,29,72,0.16);
}
.benefit-top {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-row: 1 / span 2;
}
.benefit-emoji {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--category-rose);
    color: var(--red);
}
.benefit-card h3 {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.1;
    margin-top: 2px;
}
.benefit-card p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--dark-soft);
    font-weight: 500;
    max-width: 34ch;
}

/* ═══════ FORM ═══════ */
.form-section {
    display: flex;
    align-items: center;
    min-height: 620px;
    padding: 96px 32px;
    background-color: #181827;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 28px 28px;
    color: #ffffff;
    position: relative;
    overflow: visible;
}
.form-section::before {
    display: none;
}

.form-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    align-items: center;
    gap: clamp(56px, 7vw, 96px);
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.form-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 9px 15px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.76);
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
}
.form-status-pill::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(225,29,72,0.14);
}
.form-section .section-title {
    max-width: 12ch;
    margin-bottom: 28px;
    color: #ffffff;
    font-size: clamp(50px, 4.8vw, 60px);
    line-height: 1.02;
    letter-spacing: -2.4px;
}
.form-section .section-title .highlight {
    color: var(--red);
}
.form-free {
    font-size: 18px;
    line-height: 1.45;
    color: rgba(255,255,255,0.92);
    margin: 0 0 14px;
    font-weight: 500;
}
.form-free strong {
    color: var(--red);
    font-weight: 700;
}
.form-intro {
    max-width: 46ch;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.58);
    margin: 0;
    font-weight: 400;
}
.form-shell {
    background: var(--white);
    border: 1px solid rgba(26,26,46,0.08);
    border-radius: 28px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    padding: 34px;
}
.form-grid { display: grid; gap: 20px; }
.form-block {
    padding: 0;
}
.form-block + .form-block {
    border-top: 1px solid rgba(26,26,46,0.08);
    padding-top: 32px;
    margin-top: 12px;
}
.form-block-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    margin-bottom: 24px;
}
.form-block-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--category-rose);
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    line-height: 1;
}
.form-block-title {
    font-family: 'Lora', serif;
    font-size: 30px;
    line-height: 1.15;
    color: var(--dark);
    font-weight: 700;
    margin: 0 0 6px;
}
.form-block-copy {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(30, 41, 59, 0.68);
    font-weight: 500;
    margin: 0;
    max-width: 44ch;
}
.form-block-optional > summary,
.form-extra > summary {
    list-style: none;
    cursor: pointer;
}
.form-block-optional > summary::-webkit-details-marker,
.form-extra > summary::-webkit-details-marker {
    display: none;
}
.form-block-optional > summary {
    grid-template-columns: auto 1fr auto;
}
.form-block-optional:not([open]) > summary {
    margin-bottom: 0;
}
.form-block-optional > summary:focus-visible,
.form-extra > summary:focus-visible {
    outline: 2px solid rgba(225,29,72,0.28);
    outline-offset: 4px;
    border-radius: 4px;
}
.optional-toggle {
    color: var(--red);
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    padding-top: 6px;
}
.form-block-optional[open] .optional-toggle {
    transform: rotate(45deg);
}
.form-extra {
    border-top: 1px solid rgba(26,26,46,0.08);
    padding-top: 14px;
}
.form-extra > summary {
    position: relative;
    padding-right: 28px;
    color: var(--red);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}
.form-extra > summary::after {
    content: '+';
    position: absolute;
    top: -2px;
    right: 4px;
    color: var(--red);
    font-size: 22px;
    font-weight: 400;
}
.form-extra[open] > summary::after { content: '\2212'; }
.form-extra-grid {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
.form-section label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(45,45,68,0.9);
}
.form-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(45,45,68,0.9);
}
.optional-label {
    color: rgba(45,45,68,0.48);
    font-size: 12px;
    font-weight: 500;
}
.form-help {
    margin-top: -2px;
    color: rgba(45,45,68,0.58);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;
}
.form-section .form-note {
    color: var(--gray);
}
.form-section input,
.form-section textarea {
    background: #ffffff;
    border: 1px solid rgba(26,26,46,0.16);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 16px;
    color: var(--dark);
    font-family: 'Geist', sans-serif;
    font-weight: 400;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    outline: none;
    width: 100%;
}
.form-section input:hover,
.form-section textarea:hover {
    border-color: rgba(26,26,46,0.24);
}
.form-section input::placeholder,
.form-section textarea::placeholder {
    color: rgba(26,26,46,0.42);
    font-weight: 500;
}
.form-section input:focus,
.form-section textarea:focus {
    border-color: var(--orange);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(225,29,72,0.12);
}
.form-group.has-error input,
.form-group.has-error textarea {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(225,29,72,0.12);
}
.field-error {
    display: none;
    font-size: 13px;
    line-height: 1.45;
    color: var(--red);
    font-weight: 600;
}
.form-group.has-error .field-error {
    display: block;
}
.form-section textarea {
    resize: vertical;
    min-height: 150px;
}
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 4px 2px 0;
}
.checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}
.checkbox-row label {
    margin: 0;
    letter-spacing: 0;
    text-transform: none;
    font-size: 14px;
    font-weight: 500;
    color: rgba(45,45,68,0.9);
}

.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--white);
    border: 1px solid rgba(26,26,46,0.12);
    padding: 12px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 14px;
    font-weight: 400;
    color: var(--dark);
    user-select: none;
    font-family: 'Geist', sans-serif;
    line-height: 1.2;
}
.chip:hover { border-color: var(--orange); }
.chip:focus-visible {
    outline: 2px solid rgba(225,29,72,0.3);
    outline-offset: 2px;
}
.chip.active {
    gap: 7px;
    background: var(--category-rose);
    border-color: var(--orange);
    color: var(--dark);
    font-weight: 600;
    transform: none;
    box-shadow: none;
}
.chip.active::before {
    content: '\2713';
    color: var(--orange);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}

.company-option-group {
    margin-top: 4px;
}
.form-section .company-option {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: fit-content;
    margin: 0;
    padding: 12px 22px;
    border: 1px solid rgba(26,26,46,0.12);
    border-radius: 50px;
    background: #ffffff;
    color: var(--dark);
    cursor: pointer;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    user-select: none;
    transition: border-color 0.18s ease, background-color 0.18s ease;
}
.form-section .company-option:hover {
    border-color: var(--orange);
}
.form-section .company-option:has(input:checked) {
    gap: 7px;
    border-color: var(--orange);
    background: var(--category-rose);
    font-weight: 600;
}
.form-section .company-option:has(input:checked)::before {
    content: '\2713';
    color: var(--orange);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
}
.form-section .company-option:has(input:focus-visible) {
    outline: 2px solid rgba(225,29,72,0.3);
    outline-offset: 2px;
}
.form-section .company-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-submit {
    margin-top: 2px;
    margin-bottom: 0;
}
.form-submit .btn-big {
    width: 100%;
    justify-content: center;
    padding: 22px;
    font-size: 19px;
}
.consent-group {
    width: 100%;
    max-width: none;
    margin: 8px 0 0;
}
.consent-group .checkbox-row {
    gap: 10px;
    padding-top: 0;
}
.consent-group .checkbox-row label {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(45,45,68,0.72);
    font-weight: 500;
}
.consent-group .checkbox-row label a {
    color: var(--dark);
    text-decoration-color: rgba(45,45,68,0.22);
    text-underline-offset: 2px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.consent-group .checkbox-row label a:hover {
    color: var(--orange);
    text-decoration-color: rgba(225,29,72,0.4);
}
.consent-group .field-error {
    margin-top: 6px;
    margin-left: 30px;
    font-size: 12px;
}
.form-status {
    display: none;
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}
.form-status.visible {
    display: block;
}
.form-status.error {
    color: var(--red);
}
.form-status.success {
    color: var(--green);
}
.form-reassurance {
    margin-top: 10px;
    text-align: center;
    color: rgba(45,45,68,0.6);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
}

.form-invite {
    display: block;
    padding: 18px 0 18px clamp(48px, 6vw, 76px);
    border-left: 1px solid rgba(255,255,255,0.14);
}
.form-invite-kicker,
.application-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--red);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}
.form-invite-kicker {
    margin-bottom: 22px;
    color: rgba(255,255,255,0.62);
}
.form-invite h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(30px, 2.8vw, 38px);
    line-height: 1.08;
    letter-spacing: -1.7px;
}
.form-invite-main p {
    max-width: 36ch;
    margin: 0;
    color: rgba(255,255,255,0.62);
    font-size: 16px;
    line-height: 1.6;
}
.form-invite .btn-big {
    width: min(100%, 360px);
    min-width: 0;
    margin-top: 34px;
    justify-content: center;
    padding: 18px 28px;
    font-size: 17px;
}
.form-invite-points {
    display: grid;
    gap: 13px;
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
}
.form-invite-points span {
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-invite-points span::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 50%;
    color: rgba(255,255,255,0.76);
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
}

body.application-open {
    overflow: hidden;
}
.application-flow {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    background: #fafafa;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
    z-index: 300;
}
.application-flow.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.application-progress {
    position: absolute;
    top: -1px;
    right: 0;
    left: 0;
    width: auto;
}
.application-progress-meta {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.application-progress-track {
    height: 3px;
    overflow: hidden;
    border-radius: 0;
    background: rgba(26,26,46,0.08);
}
.application-progress-track span {
    display: block;
    width: 16.6667%;
    height: 100%;
    border-radius: 0 999px 999px 0;
    background: var(--red);
    transition: width 0.3s ease;
}
.application-close {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 304;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(26, 26, 46, 0.12);
    border-radius: 999px;
    background: #ffffff;
    color: var(--dark);
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.application-close:hover {
    background: #f7f7f8;
    border-color: rgba(26, 26, 46, 0.2);
}
.application-close:focus-visible {
    outline: 2px solid rgba(225, 29, 72, 0.3);
    outline-offset: 3px;
}
.application-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.application-stage {
    width: min(100% - 48px, 720px);
    min-height: 100%;
    margin: 0 auto;
    padding: 48px 0 116px;
}
.application-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 42px;
}
.application-brand img {
    display: block;
    width: auto;
    height: 27px;
}
.application-step[hidden] {
    display: none;
}
.application-step.active {
    animation: applicationStepIn 0.3s ease both;
}
@keyframes applicationStepIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.application-step .form-block-head {
    display: block;
    margin-bottom: 34px;
}
.application-step .form-block-title {
    margin-bottom: 10px;
    font-family: 'Geist', sans-serif;
    font-size: clamp(38px, 4.5vw, 54px);
    line-height: 1.02;
    letter-spacing: -2px;
    font-weight: 700;
}
.application-step .form-block-copy {
    max-width: 50ch;
    font-size: 16px;
}
.application-step h2:focus {
    outline: none;
}
.application-step .form-grid {
    gap: 22px;
}
.application-step textarea {
    min-height: 132px;
}
.application-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 302;
    margin: 0;
    padding: 16px 24px calc(16px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(26,26,46,0.09);
    background: #ffffff;
    box-shadow: none;
}
.application-actions-inner {
    width: min(100%, 720px);
    margin: 0 auto;
}
.application-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 48px;
    margin-top: 0;
}
.application-back,
.application-success-close {
    border: 0;
    background: transparent;
    color: rgba(45,45,68,0.72);
    cursor: pointer;
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
}
.application-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 0;
    transition: color 0.18s ease;
}
.application-back:hover {
    color: var(--dark);
}
.application-back svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    stroke-width: 2;
}
.application-back[disabled] {
    visibility: hidden;
}
.application-next,
.application-actions .form-submit {
    width: auto;
    min-width: 164px;
    margin: 0 0 0 auto;
}
.application-next,
.application-actions .form-submit .btn-big {
    min-height: 48px;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 16px;
}
.application-actions .form-submit .btn-big {
    width: 100%;
}
.submit-button-spinner {
    display: none;
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    border: 2px solid rgba(255,255,255,0.38);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: submit-button-spin 0.7s linear infinite;
}
.form-submit .btn-big.is-loading {
    cursor: wait;
    transform: none;
}
.form-submit .btn-big.is-loading .submit-button-spinner {
    display: inline-block;
}
.application-next.is-loading .submit-button-spinner {
    display: inline-block;
}
@keyframes submit-button-spin {
    to { transform: rotate(360deg); }
}
.application-actions .form-submit {
    display: none;
}
.application-flow.is-final .application-next {
    display: none;
}
.application-flow.is-final .application-actions .form-submit {
    display: block;
}
.application-flow .form-status {
    margin: 20px 0 -20px;
    text-align: left;
}
.application-flow .success-message {
    width: min(100%, 680px);
    max-width: none;
    margin: 0 auto;
    padding: clamp(68px, 10vh, 112px) 20px 120px;
}
.application-returning {
    display: none;
    width: min(100%, 620px);
    margin: 0 auto;
    padding: clamp(68px, 10vh, 112px) 20px 120px;
    text-align: center;
}
.application-returning.visible {
    display: block;
    animation: applicationStepIn 0.3s ease both;
}
.application-returning-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--dark);
    font-size: 28px;
}
.application-returning h3 {
    margin: 0 0 16px;
    color: var(--dark);
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1.8px;
}
.application-returning h3:focus {
    outline: none;
}
.application-returning-copy {
    max-width: 540px;
    margin: 0 auto;
    color: rgba(45, 45, 68, 0.72);
    font-size: 17px;
    line-height: 1.65;
}
.application-returning-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
}
.application-returning-actions .btn-big {
    min-width: 220px;
    justify-content: center;
    text-decoration: none;
}
.application-returning-reset {
    min-height: 44px;
    padding: 10px 14px;
    border: 0;
    background: transparent;
    color: rgba(45, 45, 68, 0.72);
    cursor: pointer;
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-weight: 600;
}
.application-returning-reset:hover {
    color: var(--dark);
}
.application-returning-reset:focus-visible {
    outline: 2px solid rgba(225, 29, 72, 0.3);
    outline-offset: 2px;
}
.application-flow .success-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: var(--category-rose);
    color: var(--red);
    font-size: 28px;
}
.application-flow .success-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--red);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.application-flow .success-message h3 {
    margin: 0 0 16px;
    color: var(--dark);
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1.8px;
}
.application-flow .success-message .success-intro {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(45, 45, 68, 0.72);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
}
.success-share-prompt {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    margin: 38px 0 28px;
    padding: 20px 22px;
    border: 1px solid rgba(26, 26, 46, 0.1);
    border-radius: 18px;
    background: #fafafa;
    text-align: left;
}
.success-share-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: var(--category-rose);
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}
.success-share-prompt strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}
.application-flow .success-message .success-share-prompt p {
    margin: 0;
    color: rgba(45, 45, 68, 0.66);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
}
.application-success-share {
    min-height: 44px;
    padding: 11px 16px;
    border: 1px solid rgba(26, 26, 46, 0.14);
    border-radius: 999px;
    background: #ffffff;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    font-family: 'Geist', sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.application-success-share:hover {
    border-color: rgba(26, 26, 46, 0.26);
    background: #f7f7f8;
}
.application-success-share.is-copied {
    border-color: rgba(225, 29, 72, 0.25);
    color: var(--red);
}
.application-success-close {
    min-height: 50px;
    margin-top: 0;
    padding: 13px 24px;
    border: 1px solid var(--red);
    border-radius: 999px;
    background: var(--red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.application-success-close:hover {
    border-color: var(--red);
    color: #ffffff;
}
.application-success-close:focus-visible,
.application-success-share:focus-visible {
    outline: 2px solid rgba(225, 29, 72, 0.3);
    outline-offset: 3px;
}

/* ═══════ FAQ ═══════ */
.faq-section {
    padding: 92px 32px;
    background: #ffffff;
}
.faq-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.faq-section .section-title {
    max-width: 760px;
    margin: 0 auto 34px;
}
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    border-top: 1px solid rgba(26,26,46,0.1);
    text-align: left;
}
.faq-item {
    padding: 22px 0;
    border-bottom: 1px solid rgba(26,26,46,0.1);
}
.faq-item:last-child {
    border-bottom: 0;
}
.faq-item h3 {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}
.faq-item p {
    max-width: 64ch;
    color: var(--dark-soft);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}
.faq-item a {
    color: var(--red);
    text-underline-offset: 3px;
}

/* ═══════ SUCCESS ═══════ */
.success-message {
    display: none;
    text-align: center;
    padding: 60px 20px;
}
.success-message.visible {
    display: block;
    animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-emoji {
    font-size: 72px;
    margin-bottom: 24px;
    display: block;
}
.success-message h3 {
    font-family: 'Geist', sans-serif;
    font-size: 36px;
    margin-bottom: 12px;
}
.success-message p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

/* ═══════ COOKIE CONSENT ═══════ */
.cookie-consent {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 240;
    display: none;
}
.cookie-consent.visible {
    display: block;
    animation: bounceIn 0.45s ease;
}
.cookie-consent-card {
    max-width: 920px;
    margin: 0 auto;
    background: rgba(255,255,255,0.985);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(26,26,46,0.14);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(26,26,46,0.2);
    padding: 24px 24px 20px;
    max-height: calc(100svh - 48px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}
.cookie-consent-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
}
.cookie-consent-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--category-rose);
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.cookie-consent-copy h3 {
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -1.2px;
    margin-bottom: 10px;
    color: var(--dark);
}
.cookie-consent-copy p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(45,45,68,0.8);
    max-width: 62ch;
}
.cookie-consent-copy a {
    color: var(--dark);
    text-decoration-color: rgba(45,45,68,0.18);
    text-underline-offset: 2px;
}
.cookie-consent-copy a:hover {
    color: var(--orange);
    text-decoration-color: rgba(225,29,72,0.35);
}
.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}
.cookie-btn {
    border-radius: 999px;
    padding: 14px 20px;
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(26,26,46,0.08);
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.cookie-btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.cookie-btn-primary:hover {
    border-color: var(--red);
}
.cookie-btn-secondary {
    background: transparent;
    color: rgba(45,45,68,0.82);
    border-color: transparent;
    padding-left: 6px;
    padding-right: 6px;
    font-weight: 600;
}
.cookie-btn-secondary:hover {
    color: var(--dark);
}
.cookie-btn-ghost {
    background: var(--white);
    color: var(--dark);
}
.cookie-btn-ghost:hover {
    background: #f7f7f8;
    border-color: rgba(26, 26, 46, 0.16);
}
.cookie-consent-preferences {
    display: none;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(26,26,46,0.08);
    gap: 14px;
}
.cookie-consent-preferences.visible {
    display: grid;
}
.cookie-pref {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 14px 0;
}
.cookie-pref + .cookie-pref {
    border-top: 1px solid rgba(26,26,46,0.06);
}
.cookie-pref strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}
.cookie-pref p {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(45,45,68,0.72);
}
.cookie-switch {
    width: 52px;
    height: 32px;
    border-radius: 999px;
    background: rgba(148,163,184,0.35);
    border: none;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.cookie-switch::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    transition: transform 0.2s ease;
}
.cookie-switch.active {
    background: rgba(225,29,72,0.75);
}
.cookie-switch.active::after {
    transform: translateX(20px);
}
.cookie-switch[disabled] {
    cursor: not-allowed;
    opacity: 0.7;
}
.cookie-pref-note {
    font-size: 12px;
    font-weight: 700;
    color: rgba(45,45,68,0.56);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

/* ═══════ FOOTER ═══════ */
.site-footer {
    padding: 72px 32px 40px;
    border-top: 1px solid rgba(26,26,46,0.1);
    background: #fafafa;
    color: var(--dark-soft);
}
.footer-inner {
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
}
.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 400px) minmax(480px, 1fr);
    align-items: flex-start;
    justify-content: space-between;
    gap: 72px;
    padding-bottom: 42px;
}
.footer-brand {
    max-width: 310px;
}
.footer-wordmark {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    text-decoration: none;
}
.footer-wordmark img {
    display: block;
    width: auto;
    height: 42px;
}
.footer-brand p {
    color: rgba(45,45,68,0.66);
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: end;
    gap: clamp(28px, 3vw, 56px);
    max-width: none;
    padding-top: 4px;
}
.footer-link-group {
    display: grid;
    align-content: start;
    gap: 12px;
}
.footer-link-label {
    color: rgba(45,45,68,0.42);
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-links a,
.footer-link-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(26,26,46,0.76);
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}
.footer-links a:hover,
.footer-link-button:hover {
    color: var(--red);
}
.footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid rgba(26,26,46,0.1);
    color: rgba(45,45,68,0.5);
    font-size: 12px;
    line-height: 1.55;
    font-weight: 500;
}

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

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 768px) {
    :root {
        --nav-height: 58px;
    }
    .site-nav { padding: 0 20px; }
    .logo img { height: 27px; }
    .nav-cta { padding: 10px 20px; font-size: 13px; }
    .nav-link { font-size: 13px; }
    .nav-cta {
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
    }
    .nav-cta.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-right {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
        max-width: 62%;
    }

    .catalog-body .nav-cta {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
    .nav-badge {
        background: transparent;
        border: none;
        padding: 0;
        border-radius: 0;
        font-size: 12px;
    }
    .hero {
        min-height: 0;
        padding: var(--nav-height) 24px 40px;
    }
    .hero-inner {
        min-height: auto;
        padding: 0;
    }
    .hero-copy {
        max-width: none;
        text-align: left;
        min-height: calc(100svh - var(--nav-height) - 40px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: start;
        margin: 0;
        padding: 34px 0 44px;
    }
    .hero-meta {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .hero h1 {
        font-size: clamp(40px, 11.8vw, 46px);
        margin-bottom: 14px;
        letter-spacing: -1.6px;
    }
    .hero h1 .rotating-wrapper {
        min-width: 8.5ch;
    }
    .hero-sub {
        max-width: 27ch;
        margin-bottom: 28px;
    }
    .hero-proof {
        margin-top: 0;
        padding-top: 0;
        gap: 16px;
    }
    .hero-surface {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 420px;
        transform: none;
        margin-top: 14px;
        overflow: hidden;
        align-items: flex-start;
    }
    .hero-surface::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        height: 82px;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(to bottom, rgba(250,250,250,0), #fafafa 88%);
    }
    .hero-gallery-label {
        top: -4px;
        left: 0;
    }
    .hero-gallery {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        opacity: 1;
        filter: none;
        transform: none;
        padding-top: 38px;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .hero-gallery-column {
        gap: 10px;
    }
    .hero-gallery-column--right {
        padding-top: 36px;
    }
    .mini-profile {
        padding: 14px;
    }
    .mini-profile img {
        height: 130px;
        margin-bottom: 12px;
    }
    .mini-profile strong {
        font-size: 16px;
    }
    .mini-profile span {
        font-size: 13px;
    }
    .section-title {
        font-size: 36px;
        line-height: 1.08;
        letter-spacing: -1.15px;
        margin-bottom: 32px;
    }
    .section { padding: 68px 24px; }
    .profile-benefits-section {
        padding: 88px 24px 96px;
    }
    .profile-benefits-heading {
        margin-bottom: 40px;
    }
    .profile-benefits-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .profile-benefits-list { align-self: stretch; }
    .profile-benefits-heading .section-title {
        max-width: 13ch;
    }
    .profile-benefits-visual {
        width: 100%;
        margin-top: 0;
    }
    .profile-benefits-visual figcaption {
        left: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
        font-size: 12px;
    }
    .profile-benefit {
        padding: 24px 0 26px;
    }
    .profile-benefit h3 {
        font-size: 20px;
    }
    .join-reassurance {
        padding: 48px 24px 54px;
    }
    .join-reassurance-kicker {
        margin-bottom: 20px;
    }
    .join-reassurance h2 {
        font-size: 28px;
        letter-spacing: -0.7px;
    }
    .join-reassurance p {
        margin-top: 14px;
        font-size: 17px;
    }
    .preview-section {
        padding: 96px 24px 104px;
        position: relative;
        z-index: 2;
    }
    .preview-layout {
        gap: 44px;
    }
    .section-inner,
    .preview-inner,
    .form-inner {
        width: 100%;
    }
    .form-section {
        min-height: 0;
        padding: 92px 24px 100px;
    }
    .form-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .benefits { grid-template-columns: 1fr; gap: 16px; }
    .benefit-card {
        background: rgba(0,0,0,0.018);
        border: 1px solid rgba(26,26,46,0.08);
        box-shadow: none;
        padding: 18px;
        border-radius: 18px;
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 14px;
        row-gap: 6px;
    }
    .benefit-card:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(26,26,46,0.08);
    }
    .benefit-card-wide {
        max-width: none;
        justify-self: stretch;
    }
    .benefit-emoji {
        width: 52px;
        height: 52px;
        border-radius: 15px;
    }
    .benefit-card h3 {
        font-size: 20px;
        margin-top: 0;
    }
    .benefit-card p {
        font-size: 15px;
        line-height: 1.5;
    }
    .preview-layout { gap: 26px; }
    .listing-card { padding: 15px; }
    .listing-layout {
        grid-template-columns: minmax(108px, 36%) minmax(0, 1fr);
        gap: 16px;
        align-items: stretch;
    }
    .listing-media {
        width: 100%;
        margin: 0;
        grid-column: 1;
        grid-row: 1;
    }
    .listing-content {
        display: flex;
        grid-column: 2;
        grid-row: 1;
        justify-content: center;
    }
    .listing-header {
        text-align: left;
        margin: 0;
    }
    .listing-name {
        font-size: 26px;
        letter-spacing: -0.35px;
    }
    .listing-skill {
        font-size: 14px;
        line-height: 1.35;
    }
    .listing-gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }
    .listing-gallery img {
        width: 100%;
        aspect-ratio: 2 / 3;
        height: auto;
    }
    .listing-avatar {
        width: 100%;
        height: 100%;
        min-height: 238px;
        aspect-ratio: auto;
        border-radius: var(--radius-md);
        margin: 0;
    }
    .listing-tags {
        justify-content: flex-start;
        gap: 6px;
        margin: 11px 0 0;
    }
    .listing-tag {
        padding: 5px 10px;
        font-size: 11px;
    }
    .listing-tag.alt {
        display: none;
    }
    .listing-summary {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 12px 0;
    }
    .listing-summary-item {
        gap: 2px;
    }
    .listing-summary-label {
        font-size: 9px;
    }
    .listing-summary-value {
        font-size: 13px;
    }
    .listing-desc {
        display: none;
    }
    .listing-actions {
        flex-direction: row;
        align-items: center;
        margin-top: 10px;
    }
    .listing-action-btn {
        width: auto;
        flex: 0 0 auto;
        font-size: 13px;
    }
    .profile-modal-nav {
        height: 64px;
        padding: 0 16px;
    }
    .profile-modal-logo {
        width: auto;
    }
    .profile-modal-context {
        font-size: 10px;
        letter-spacing: 0.85px;
    }
    .profile-modal-close {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    .profile-modal-scroll {
        height: calc(100svh - 64px);
        padding-bottom: 78px;
        scrollbar-gutter: auto;
    }
    .profile-page {
        padding: 30px 18px 52px;
    }
    .profile-page-header {
        margin-bottom: 24px;
    }
    .profile-page-name {
        margin-bottom: 7px;
        font-size: clamp(32px, 9.5vw, 40px);
        letter-spacing: -1.4px;
    }
    .profile-page-skill {
        max-width: 29ch;
        font-size: 17px;
        line-height: 1.42;
    }
    .profile-page-tags {
        margin-top: 14px;
        gap: 7px;
    }
    .profile-page-tag {
        padding: 7px 11px;
        font-size: 11px;
    }
    .profile-media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto repeat(2, minmax(110px, 34vw));
        gap: 6px;
        border-radius: 16px;
    }
    .profile-media-main {
        grid-column: 1 / span 2;
        grid-row: 1;
        aspect-ratio: 5 / 4;
    }
    .profile-media-video {
        grid-column: 1;
        grid-row: 2;
    }
    .profile-media-video-label {
        left: 10px;
        bottom: 10px;
        min-height: 32px;
        padding: 7px 10px;
        font-size: 11px;
    }
    .profile-media-more {
        right: 10px;
        bottom: 10px;
        min-height: 32px;
        padding: 7px 10px;
        font-size: 11px;
    }
    .profile-page-layout {
        display: block;
        padding-top: 30px;
    }
    .profile-facts {
        grid-template-columns: 1fr;
        column-gap: 0;
        margin-bottom: 0;
        padding: 0 0 24px;
        border: 0;
        border-bottom: 1px solid rgba(26, 26, 46, 0.11);
        border-radius: 0;
        background: transparent;
    }
    .profile-fact,
    .profile-fact:nth-child(4),
    .profile-fact:nth-child(5) {
        grid-column: auto;
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 12px;
        min-height: 0;
        padding: 15px 0;
        border-bottom: 1px solid rgba(26, 26, 46, 0.075);
    }
    .profile-fact:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(26, 26, 46, 0.075);
    }
    .profile-fact:last-child {
        border-bottom: 0;
    }
    .profile-fact-icon {
        width: 32px;
        height: 32px;
        font-size: 15px;
    }
    .profile-fact dt {
        font-size: 10px;
    }
    .profile-fact dd {
        font-size: 15px;
        line-height: 1.42;
    }
    .profile-content-section {
        padding: 30px 0;
    }
    .profile-content-section h3 {
        margin-bottom: 14px;
        font-size: 24px;
        letter-spacing: -0.5px;
    }
    .profile-content-section p {
        font-size: 16px;
        line-height: 1.66;
    }
    .profile-outcomes {
        gap: 13px;
    }
    .profile-outcomes li {
        align-items: flex-start;
        font-size: 15px;
    }
    .profile-session-row {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 12px;
        padding: 16px 0;
    }
    .profile-session-row > .ph {
        font-size: 21px;
    }
    .profile-session-row strong {
        font-size: 15px;
    }
    .profile-session-row span {
        font-size: 14px;
    }
    .profile-provider-intro {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 18px;
    }
    .profile-provider-intro img {
        width: 112px;
        height: auto;
        border-radius: 15px;
    }
    .profile-provider-intro h4 {
        margin-bottom: 9px;
        font-size: 18px;
        line-height: 1.32;
    }
    .profile-provider-intro p {
        font-size: 15px;
        line-height: 1.58;
    }
    .profile-provider-quote {
        max-width: none;
        margin: 26px 0 0;
        padding-top: 22px;
        font-size: 19px;
        line-height: 1.5;
    }
    .profile-contact-panel {
        display: none;
    }
    .profile-demo-banner {
        margin-top: 0;
        padding: 36px 28px;
        border-radius: 18px;
        display: block;
    }
    .profile-demo-banner h3 {
        max-width: none;
        margin-bottom: 10px;
        font-size: 30px;
        line-height: 1.16;
    }
    .profile-demo-banner p {
        max-width: none;
        font-size: 16px;
    }
    .profile-demo-cta {
        width: 100%;
        margin-top: 22px;
    }
    .profile-mobile-action {
        position: fixed;
        z-index: 5;
        left: 0;
        right: 0;
        bottom: 0;
        min-height: 76px;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(26, 26, 46, 0.1);
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(14px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        transform: translateY(100%);
        transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .profile-modal.visible .profile-mobile-action {
        transform: translateY(0);
    }
    .profile-mobile-action > div {
        display: grid;
        gap: 2px;
    }
    .profile-mobile-action span {
        color: #94a3b8;
        font-size: 9px;
        line-height: 1.1;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
    }
    .profile-mobile-action strong {
        color: var(--dark);
        font-size: 18px;
        line-height: 1.2;
        font-weight: 700;
    }
    .profile-mobile-action button {
        min-width: 148px;
        min-height: 48px;
        padding: 12px 22px;
        border: 0;
        border-radius: 999px;
        background: var(--red);
        color: #ffffff;
        font-family: 'Geist', sans-serif;
        font-size: 15px;
        font-weight: 600;
    }
    .contact-modal {
        padding: 16px;
        align-items: flex-end;
    }
    .contact-modal-card {
        width: 100%;
        padding: 28px 20px 20px;
        border-radius: 24px 24px 20px 20px;
        max-height: min(84svh, 720px);
    }
    .contact-modal-close {
        top: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    .contact-modal-kicker {
        margin-top: 2px;
        margin-bottom: 12px;
    }
    .contact-modal-profile {
        gap: 14px;
    }
    .contact-modal-avatar {
        width: 76px;
        height: 76px;
        border-radius: 16px;
    }
    .contact-modal-title {
        margin-right: 42px;
        font-size: 31px;
    }
    .contact-modal-skill {
        font-size: 15px;
    }
    .contact-modal-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .contact-modal-preview {
        gap: 0;
        margin-bottom: 16px;
    }
    .contact-modal-preview-item {
        min-height: 48px;
        padding: 10px 6px;
        font-size: 12px;
    }
    .contact-modal-note {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .contact-modal-method {
        padding: 14px 16px;
    }
    .contact-modal-method-value {
        font-size: 15px;
    }
    .form-intro {
        display: none;
    }
    .form-free {
        margin-bottom: 0;
        font-size: 16px;
    }
    .form-section .section-title {
        margin-bottom: 18px;
        font-size: clamp(36px, 9.8vw, 38px);
        letter-spacing: -1.4px;
    }
    .form-grid {
        gap: 16px;
    }
    .form-shell {
        padding: 24px 18px;
        border-radius: 24px;
    }
    .form-block + .form-block {
        padding-top: 24px;
        margin-top: 8px;
    }
    .form-block-head {
        grid-template-columns: auto 1fr;
        gap: 12px;
        align-items: start;
        margin-bottom: 18px;
    }
    .form-block-optional > summary {
        grid-template-columns: auto 1fr auto;
    }
    .form-block-index {
        min-width: 38px;
        height: 38px;
        font-size: 12px;
    }
    .form-block-title {
        font-size: 26px;
        margin-bottom: 5px;
    }
    .form-block-copy {
        font-size: 14px;
    }
    .form-row { grid-template-columns: 1fr; }
    .form-status-pill {
        margin-bottom: 18px;
    }
    .hero-cta-group { flex-direction: column; align-items: stretch; gap: 15px; }
    .hero-proof {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }
    .btn-big { width: 100%; text-align: center; justify-content: center; }
    .hero-secondary-link {
        width: auto;
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        font-size: 16px;
        font-weight: 600;
        color: rgba(45,45,68,0.82);
        text-align: left;
        justify-content: flex-start;
        align-self: flex-start;
        margin-top: 18px;
    }
    .form-submit .btn-big {
        min-height: 58px;
        padding: 16px 18px;
        font-size: 17px;
    }
    .form-invite {
        padding: 24px 0 0;
        border-top: 1px solid rgba(255,255,255,0.14);
        border-left: 0;
    }
    .form-invite-main h3,
    .form-invite-main p {
        display: none;
    }
    .form-invite-kicker {
        margin-bottom: 0;
    }
    .form-invite .btn-big {
        width: 100%;
        min-width: 0;
        margin-top: 18px;
    }
    .form-invite-points {
        margin-top: 18px;
        padding-top: 18px;
    }
    .form-invite-points span:first-child {
        display: flex;
    }
    .application-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    .application-stage {
        width: 100%;
        min-height: calc(100% - 1px);
        padding: 28px 20px 108px;
    }
    .application-brand {
        margin-bottom: 30px;
    }
    .application-brand img {
        height: 24px;
    }
    .application-eyebrow {
        display: block;
        margin-bottom: 10px;
    }
    .application-step .form-block-head {
        margin-bottom: 26px;
    }
    .application-step .form-block-title {
        font-size: clamp(34px, 10vw, 44px);
        letter-spacing: -1.5px;
    }
    .application-step .form-block-copy {
        font-size: 15px;
    }
    .application-step .form-grid {
        gap: 18px;
    }
    .application-step .checkbox-row {
        min-height: 44px;
        padding-top: 9px;
        padding-bottom: 9px;
    }
    .application-step .checkbox-row input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
    .application-actions {
        padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    }
    .application-action-row {
        gap: 14px;
        min-height: 48px;
        margin-top: 0;
    }
    .application-flow[data-current-step="1"] .application-next {
        width: min(100%, 170px);
        max-width: none;
    }
    .application-flow[data-current-step="1"] .application-back {
        display: none;
    }
    .application-next,
    .application-actions .form-submit {
        width: min(100%, 180px);
    }
    .application-next,
    .application-actions .form-submit .btn-big {
        min-height: 48px;
        padding: 12px 18px;
        font-size: 16px;
    }
    .application-flow .success-message {
        margin-top: 0;
        padding: 46px 0 84px;
    }
    .application-returning {
        padding: 46px 0 84px;
    }
    .application-returning h3 {
        margin-bottom: 14px;
        font-size: 36px;
        letter-spacing: -1.2px;
    }
    .application-returning-copy {
        font-size: 16px;
        line-height: 1.58;
    }
    .application-flow .success-message h3 {
        margin-bottom: 14px;
        font-size: 36px;
        letter-spacing: -1.2px;
    }
    .application-flow .success-message .success-intro {
        font-size: 16px;
        line-height: 1.58;
    }
    .success-share-prompt {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
        margin: 30px 0 22px;
        padding: 18px;
        border-radius: 16px;
    }
    .success-share-icon {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }
    .application-success-share {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 2px;
    }
    .application-success-close {
        width: 100%;
    }
    .faq-section {
        padding: 68px 24px;
    }
    .faq-section .section-title {
        margin-bottom: 24px;
    }
    .faq-item {
        padding: 20px 0 22px;
    }
    .site-footer {
        padding: 60px 24px 32px;
    }
    .footer-main {
        display: block;
        padding-bottom: 36px;
    }
    .footer-brand {
        max-width: 280px;
    }
    .footer-wordmark {
        margin-bottom: 12px;
    }
    .footer-wordmark img {
        height: 39px;
    }
    .footer-links {
        display: grid;
        grid-template-columns: 1fr;
        justify-content: stretch;
        gap: 14px;
        max-width: none;
        margin-top: 28px;
        padding-top: 0;
        border-top: 0;
    }
    .footer-link-group {
        display: contents;
    }
    .footer-link-label {
        display: none;
    }
    .footer-links a,
    .footer-link-button {
        width: max-content;
        padding: 0;
        border-bottom: 0;
        text-align: left;
    }
    .footer-links a:hover,
    .footer-link-button:hover {
        color: rgba(26,26,46,0.76);
    }
    .footer-meta {
        display: grid;
        justify-content: start;
        gap: 6px;
        padding-top: 26px;
    }
    .hero-secondary-link:hover {
        color: var(--dark);
        transform: none;
    }
    .cookie-consent {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }
    .cookie-consent-card {
        padding: 18px 18px 16px;
        border-radius: 22px;
        max-height: calc(100svh - 28px);
    }
    .cookie-consent-top {
        grid-template-columns: 1fr;
    }
    .cookie-consent-copy h3 {
        font-size: 22px;
    }
    .cookie-consent-copy p {
        font-size: 14px;
    }
    .cookie-consent-actions {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 10px 14px;
    }
    .cookie-btn {
        width: auto;
        text-align: center;
    }
    .cookie-btn-primary {
        grid-column: 1 / -1;
        width: 100%;
    }
    .cookie-btn-secondary {
        justify-self: start;
        width: auto;
        text-align: left;
        padding: 0;
    }
    #cookie-manage.cookie-btn-secondary {
        justify-self: end;
        text-align: right;
    }
    .cookie-btn-ghost {
        justify-self: end;
        width: auto;
        text-align: right;
        padding: 0;
        border-color: transparent;
        background: transparent;
    }
    .cookie-pref {
        grid-template-columns: 1fr;
    }
}

/* Primary actions use one restrained tonal shift without moving the control. */
.nav-cta,
.btn-big,
.profile-contact-primary,
.profile-demo-cta,
.contact-modal-cta,
.application-success-close,
.cookie-btn-primary,
.profile-mobile-action button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--red);
    background-image: none;
    transition:
        color 320ms ease,
        opacity 320ms ease,
        box-shadow 320ms ease;
}

.nav-cta::before,
.btn-big::before,
.profile-contact-primary::before,
.profile-demo-cta::before,
.contact-modal-cta::before,
.application-success-close::before,
.cookie-btn-primary::before,
.profile-mobile-action button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: var(--button-primary-gradient);
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms ease;
}

.nav-cta:hover::before,
.btn-big:hover::before,
.profile-contact-primary:hover::before,
.profile-demo-cta:hover::before,
.contact-modal-cta:hover::before,
.application-success-close:hover::before,
.cookie-btn-primary:hover::before,
.profile-mobile-action button:hover::before {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .nav-cta,
    .btn-big,
    .profile-contact-primary,
    .profile-demo-cta,
    .contact-modal-cta,
    .application-success-close,
    .cookie-btn-primary,
    .profile-mobile-action button {
        transition: none;
    }

    .nav-cta::before,
    .btn-big::before,
    .profile-contact-primary::before,
    .profile-demo-cta::before,
    .contact-modal-cta::before,
    .application-success-close::before,
    .cookie-btn-primary::before,
    .profile-mobile-action button::before {
        transition: none;
    }
}
