/* Fresh Ortho Club — seminar landing
   Palette from event poster: forest green + lime */

:root {
    --green-950: #0d1a0e;
    --green-900: #132205;
    --green-800: #1b431e;
    --green-700: #245528;
    --green-600: #2f6a34;
    --lime: #eefc56;
    --lime-soft: #f4ff8a;
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-20: rgba(255, 255, 255, 0.18);
    --white-12: rgba(255, 255, 255, 0.12);
    --ink: #101810;
    --font-display: "Unbounded", sans-serif;
    --font-body: "Manrope", sans-serif;
    --radius: 18px;
    --container: 1120px;
    --header-h: 72px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background: var(--green-800);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn--lg {
    padding: 16px 28px;
    font-size: 1rem;
}

.btn--lime {
    background: var(--lime);
    color: var(--ink);
}

.btn--lime:hover {
    background: var(--lime-soft);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: var(--white-20);
}

.btn--ghost:hover {
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-h);
    background: rgba(27, 67, 30, 0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.header.is-scrolled {
    background: rgba(13, 26, 14, 0.92);
    border-bottom-color: var(--white-12);
}

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

.header__logo {
    height: 44px;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 28px;
}

.header__nav a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white-90);
    transition: color 0.2s ease;
}

.header__nav a:hover {
    color: var(--lime);
}

.header__burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.header__burger span {
    display: block;
    height: 2px;
    width: 22px;
    margin-inline: auto;
    background: var(--white);
    transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

.header.is-open .header__burger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header.is-open .header__burger span:nth-child(2) {
    opacity: 0;
}

.header.is-open .header__burger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header__mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background: var(--green-950);
    border-bottom: 1px solid var(--white-12);
}

.header__mobile a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}

.header.is-open .header__mobile {
    display: flex;
}

.header.is-open .header__mobile[hidden] {
    display: flex;
}

/* Hero — full-bleed portrait on the right edge */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 78% 45%, rgba(47, 106, 52, 0.45), transparent 58%),
        linear-gradient(160deg, #1f4d24 0%, var(--green-800) 45%, #142e16 100%);
    z-index: 0;
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.28;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero__layout {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 40vw);
    align-items: stretch;
    overflow: hidden;
}

.hero__copy {
    position: relative;
    z-index: 2;
    min-width: 0;
    width: auto;
    max-width: min(560px, 100%);
    margin-left: max(20px, calc((100vw - var(--container)) / 2));
    margin-right: clamp(16px, 3vw, 40px);
    padding: calc(var(--header-h) + 48px) 8px 56px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.hero__brand {
    height: 58px;
    width: auto;
    margin-bottom: 28px;
    opacity: 0;
    animation: rise 0.9s var(--ease) 0.1s forwards;
}

.hero__eyebrow {
    font-family: var(--font-display);
    font-size: clamp(0.8rem, 1.4vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 14px;
    opacity: 0;
    animation: rise 0.9s var(--ease) 0.2s forwards;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: rise 0.9s var(--ease) 0.3s forwards;
    overflow-wrap: anywhere;
}

.hero__lead {
    max-width: 34ch;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--white-90);
    margin-bottom: 28px;
    opacity: 0;
    animation: rise 0.9s var(--ease) 0.4s forwards;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
    margin-bottom: 32px;
    opacity: 0;
    animation: rise 0.9s var(--ease) 0.5s forwards;
}

.hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.98rem;
}

.hero__meta-item svg {
    color: var(--lime);
    flex-shrink: 0;
}

.hero__meta-divider {
    width: 1px;
    height: 18px;
    background: var(--white-20);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    opacity: 0;
    animation: rise 0.9s var(--ease) 0.6s forwards;
}

.hero__visual {
    position: relative;
    z-index: 1;
    align-self: stretch;
    min-width: 0;
    min-height: 100%;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    animation: rise-photo 1.1s var(--ease) 0.2s forwards;
    pointer-events: none;
}

.hero__visual::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: min(40%, 180px);
    z-index: 1;
    background: linear-gradient(90deg, rgba(27, 67, 30, 0.98), transparent);
    pointer-events: none;
}

.hero__visual picture {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100svh;
}

.hero__photo {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100svh;
    object-fit: cover;
    object-position: 62% 8%;
    border-radius: 0;
}

.hero__caption {
    position: absolute;
    left: 8%;
    bottom: 8%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
    pointer-events: auto;
}

.hero__caption span {
    font-size: 0.9rem;
    color: var(--white-70);
}

.hero__caption strong {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Offer bar */
.offer {
    padding: 0 0 56px;
    background: linear-gradient(180deg, transparent, rgba(13, 26, 14, 0.35));
}

.offer__bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--lime);
    color: var(--ink);
    border-radius: 16px;
    font-weight: 700;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

.offer__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-800);
    color: var(--lime);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
}

/* Sections shared */
.section-label {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 12px;
}

.section-label--on-lime {
    color: var(--green-800);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
}

.check-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.check-list li {
    position: relative;
    padding-left: 36px;
    font-size: 1.05rem;
    color: var(--white-90);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: inset 0 0 0 5px var(--green-800);
}

/* Audience */
.audience {
    padding: 88px 0;
    background: var(--green-800);
}

.audience__list {
    list-style: none;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--white-12);
}

.audience__list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px 28px;
    align-items: baseline;
    padding: 28px 0;
    border-bottom: 1px solid var(--white-12);
}

.audience__num {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lime);
    letter-spacing: 0.08em;
}

.audience__list p {
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-weight: 600;
    line-height: 1.35;
    max-width: 36ch;
}

/* Proof gallery */
.proof {
    padding: 72px 0 64px;
    background: var(--green-950);
}

.proof .section-title {
    max-width: 760px;
    margin-bottom: 30px;
}

.proof__grid {
    columns: 3 280px;
    column-gap: 14px;
}

.proof__item {
    position: relative;
    display: inline-flex;
    width: 100%;
    margin: 0 0 14px;
    flex-direction: column;
    overflow: hidden;
    break-inside: avoid;
    border: 1px solid var(--white-12);
    border-radius: 8px;
    background: var(--green-900);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    vertical-align: top;
}

.proof__item img,
.proof__item .book,
.proof__item .cert {
    display: block;
    width: 100%;
    object-fit: cover;
    background: var(--green-800);
}

.proof__item--case img {
    aspect-ratio: 1;
}

.proof__item--case-side img {
    aspect-ratio: 5 / 4;
}

.proof__item--book .book {
    aspect-ratio: 4 / 5;
}

.proof__item--cert .cert {
    aspect-ratio: 5 / 4;
}

.proof__item--poster img {
    aspect-ratio: 724 / 900;
    object-fit: cover;
    object-position: center;
}

.proof__item picture {
    display: block;
    line-height: 0;
}

.proof__item figcaption {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-height: 66px;
    padding: 12px 14px 13px;
    border-top: 1px solid var(--white-12);
    background: rgba(255, 255, 255, 0.035);
}

.proof__item figcaption strong {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
}

.proof__item figcaption span {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--white-70);
}

.book,
.cert {
    display: grid;
    place-items: center;
    overflow: hidden;
}

.book__cover {
    width: 62%;
    height: 74%;
    padding: 22px 18px;
    border-radius: 4px 10px 10px 4px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0 8px, transparent 8px),
        linear-gradient(160deg, #2f6a34, #132205);
    border: 1px solid rgba(238, 252, 86, 0.35);
    box-shadow: 10px 14px 30px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
}

.book__eyebrow,
.book__author {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lime);
    font-weight: 700;
}

.book__title {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    line-height: 1.2;
    text-transform: uppercase;
}

.cert__inner {
    width: 76%;
    height: 68%;
    padding: 22px 18px;
    border-radius: 12px;
    background: linear-gradient(160deg, #f7ffe0, #eefc56);
    color: var(--ink);
    border: 1px solid rgba(16, 24, 16, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.cert__brand {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-800);
}

.cert__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cert__line {
    width: 42%;
    height: 2px;
    background: var(--green-800);
    opacity: 0.35;
}

.cert__name {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.35;
}

/* FAQ */
.faq {
    padding: 88px 0;
    background: var(--green-900);
}

.faq__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: start;
}

.faq__lead {
    color: var(--white-70);
    max-width: 34ch;
    margin-top: -16px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--white-12);
}

.faq__item {
    border-bottom: 1px solid var(--white-12);
}

.faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 36px 20px 0;
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 700;
    position: relative;
    transition: color 0.2s ease;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lime);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
}

.faq__item[open] summary::after {
    content: "–";
}

.faq__item summary:hover {
    color: var(--lime);
}

.faq__item p {
    padding: 0 0 22px;
    color: var(--white-90);
    max-width: 58ch;
    line-height: 1.6;
}

/* Speaker */
.speaker {
    padding: 88px 0;
    background: var(--green-900);
}

.speaker__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.speaker__ig {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    text-decoration: none;
    font-weight: 700;
    color: var(--lime);
    transition: opacity 0.2s ease;
}

.speaker__ig:hover {
    opacity: 0.8;
}

/* Program */
.program {
    padding: 88px 0;
    background:
        radial-gradient(ellipse 50% 40% at 0% 0%, rgba(47, 106, 52, 0.4), transparent 55%),
        var(--green-800);
}

.program__days {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.program__day {
    padding: 8px 0 0;
    border-top: 2px solid var(--lime);
}

.program__day-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin: 20px 0 24px;
}

.program__day-head h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
}

.program__day-head time {
    font-weight: 700;
    color: var(--lime);
    white-space: nowrap;
}

/* Price */
.price {
    padding: 88px 0;
    background: var(--green-950);
}

.countdown {
    margin: -12px 0 40px;
    padding: 24px 0;
    border-top: 1px solid var(--white-12);
    border-bottom: 1px solid var(--white-12);
}

.countdown.is-ended .countdown__grid,
.countdown.is-ended .countdown__label {
    display: none;
}

.countdown__label {
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

.countdown__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 120px));
    gap: 12px;
}

.countdown__unit {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.countdown__value {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    font-variant-numeric: tabular-nums;
}

.countdown__name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white-70);
    text-transform: lowercase;
}

.countdown__ended {
    font-weight: 700;
    color: var(--white-90);
}

.price__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.price__item {
    padding: 28px 0;
    border-bottom: 1px solid var(--white-12);
}

.price__item--early {
    border-bottom-color: var(--lime);
}

.price__label {
    font-weight: 700;
    color: var(--white-70);
    margin-bottom: 10px;
}

.price__value {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.price__value span {
    font-size: 0.4em;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.price__note {
    color: var(--lime);
    font-weight: 700;
}

.price__item:not(.price__item--early) .price__note {
    color: var(--white-70);
}

.price__payment {
    max-width: 760px;
    margin: -8px 0 32px;
    padding-left: 18px;
    border-left: 3px solid var(--lime);
    color: var(--white-90);
    font-weight: 600;
    line-height: 1.6;
}

.price__perks {
    max-width: 640px;
}

/* Place */
.place {
    padding: 88px 0;
    background: var(--green-800);
}

.place__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: end;
}

.place__name {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.4vw, 1.55rem);
    font-weight: 700;
    margin: -12px 0 16px;
}

.place__address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--white-90);
    margin-bottom: 28px;
}

.place__address svg {
    color: var(--lime);
    margin-top: 2px;
    flex-shrink: 0;
}

.place__map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 320px;
    border: 1px solid var(--white-12);
}

.place__map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    filter: grayscale(0.25) contrast(1.05);
}

/* Registration */
.registration {
    padding: 88px 0;
    background: var(--lime);
    color: var(--ink);
}

.registration__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 56px;
    align-items: start;
}

.registration__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    text-align: left;
}

.registration__phones {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
}

.registration__phones a {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.4vw, 1.7rem);
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.registration__phones a:hover {
    opacity: 0.7;
}

.registration__messengers {
    display: flex;
    gap: 12px;
}

.msg {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green-800);
    color: var(--lime);
    text-decoration: none;
    transition: transform 0.3s var(--ease), background 0.2s ease;
}

.msg:hover {
    transform: translateY(-3px);
    background: var(--green-950);
}

.btn--dark {
    background: var(--green-900);
    color: var(--lime);
    border-color: var(--green-900);
    width: 100%;
}

.btn--dark:hover {
    background: var(--green-950);
    transform: translateY(-2px);
}

.lead-form {
    background: rgba(16, 24, 16, 0.08);
    border: 1px solid rgba(16, 24, 16, 0.12);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: left;
}

.lead-form__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.lead-form__hint {
    font-size: 0.92rem;
    opacity: 0.75;
    margin-bottom: 20px;
}

.lead-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 0.88rem;
}

.lead-form__field input {
    font: inherit;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 16px;
    border-radius: 14px;
    border: 2px solid transparent;
    background: var(--white);
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s ease;
}

.lead-form__field input::placeholder {
    color: rgba(16, 24, 16, 0.4);
    font-weight: 500;
}

.lead-form__field input:focus {
    border-color: var(--green-800);
}

.lead-form__field input.is-invalid {
    border-color: #b42318;
}

.lead-form__trap {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.lead-form__submit {
    margin-top: 8px;
}

.lead-form__submit:disabled {
    cursor: wait;
    opacity: 0.7;
}

.lead-form__success,
.lead-form__error {
    margin-top: 14px;
    font-size: 0.92rem;
    font-weight: 600;
}

.lead-form__error {
    color: #8a1c14;
}

.lead-form.is-sent .lead-form__field,
.lead-form.is-sent .lead-form__submit,
.lead-form.is-sent .lead-form__hint {
    display: none;
}

/* Floating mobile CTA */
.fab {
    display: none;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    align-items: center;
    justify-content: center;
    height: 54px;
    border-radius: 999px;
    background: var(--lime);
    color: var(--ink);
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

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

/* Footer */
.footer {
    padding: 36px 0;
    background: var(--green-950);
    border-top: 1px solid var(--white-12);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__logo {
    height: 40px;
    width: auto;
}

.footer__copy {
    color: var(--white-70);
    font-size: 0.9rem;
}

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

.footer__phones a {
    text-decoration: none;
    font-weight: 700;
}

.footer__phones a:hover {
    color: var(--lime);
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rise-photo {
    from {
        opacity: 0;
        transform: translateY(36px) scale(1.03);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

::selection {
    background: var(--lime);
    color: var(--ink);
}

/* Responsive */
@media (max-width: 980px) {
    .header__nav,
    .header__inner > .btn {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .hero__grid,
    .speaker__grid,
    .program__days,
    .price__row,
    .place__grid,
    .registration__layout,
    .faq__grid {
        grid-template-columns: 1fr;
    }

    .proof__grid {
        columns: 2 280px;
    }

    .hero__layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero {
        min-height: auto;
    }

    .hero__visual {
        order: -1;
        min-height: min(68vh, 560px);
        width: 100%;
        pointer-events: auto;
    }

    .hero__visual picture,
    .hero__photo {
        min-height: min(68vh, 560px);
        height: min(68vh, 560px);
        object-position: 50% 10%;
    }

    .hero__copy {
        z-index: 2;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
        width: min(100% - 28px, var(--container));
        margin-inline: auto;
        padding: 28px 0 40px;
    }

    .hero__brand {
        display: none;
    }

    .hero__caption {
        left: 20px;
        bottom: 20px;
    }

    .program__day + .program__day {
        margin-top: 12px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__meta-divider {
        display: none;
    }

    .offer__bar {
        align-items: flex-start;
        padding: 16px;
    }

    .countdown__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .countdown__value {
        font-size: 1.45rem;
    }

    .proof__grid {
        columns: 1 100%;
    }

    .audience__list p {
        max-width: none;
    }

    .registration__phones {
        flex-direction: column;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__phones {
        justify-content: center;
    }

    .fab {
        display: flex;
    }

    body.has-fab {
        padding-bottom: 88px;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .hero__brand,
    .hero__eyebrow,
    .hero__title,
    .hero__lead,
    .hero__meta,
    .hero__actions,
    .hero__visual,
    .reveal {
        opacity: 1;
        transform: none;
    }
}
