:root {
    --yt-bg: #f5efe5;
    --yt-bg-soft: #fbf7f1;
    --yt-panel: rgba(255, 252, 247, 0.88);
    --yt-panel-solid: #fffdf8;
    --yt-ink: #2f2116;
    --yt-ink-soft: #5d4a3b;
    --yt-line: rgba(83, 58, 34, 0.12);
    --yt-gold: #d49a18;
    --yt-gold-deep: #b7790f;
    --yt-gold-soft: #f2d48b;
    --yt-plum: #54371e;
    --yt-coral: #f46f52;
    --yt-coral-soft: #ffc1b3;
    --yt-sky: #4ea6ff;
    --yt-sky-soft: #d8ecff;
    --yt-success: #3ba56a;
    --yt-success-soft: #dff4e7;
    --yt-peach: #fff0df;
    --yt-white: #ffffff;
    --yt-shadow: 0 24px 70px rgba(58, 34, 18, 0.12);
    --yt-font-body: "Manrope", "Segoe UI", sans-serif;
    --yt-font-display: "Cormorant Garamond", Georgia, serif;
}

body,
.yt-site {
    margin: 0;
    color: var(--yt-ink-soft);
    font-family: var(--yt-font-body);
    background:
        radial-gradient(circle at top left, rgba(212, 154, 24, 0.12), transparent 24%),
        radial-gradient(circle at 85% 12%, rgba(78, 166, 255, 0.12), transparent 20%),
        radial-gradient(circle at 50% 100%, rgba(244, 111, 82, 0.08), transparent 24%),
        linear-gradient(180deg, #fcf8f2 0%, var(--yt-bg) 58%, #ece6db 100%);
    -webkit-font-smoothing: antialiased;
}

.yt-main {
    min-height: 60vh;
}

.yt-container {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
.yt-brand__text {
    font-family: var(--yt-font-display);
    color: var(--yt-ink);
    letter-spacing: -0.03em;
}

a {
    color: inherit;
}

.yt-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 34px 0 0;
    background: transparent;
}

.yt-header__inner,
.yt-footer__top,
.yt-strip__grid,
.yt-card-grid,
.yt-product-grid,
.yt-journey,
.yt-contact-grid,
.yt-detail-grid,
.yt-footer__grid {
    display: grid;
    gap: 24px;
}

.yt-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 20px;
}

.yt-header__shell {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 16px;
    min-height: 74px;
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.96) 0%, rgba(248, 241, 229, 0.94) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 154, 24, 0.14);
    border-radius: 30px;
    padding: 6px 18px;
    box-shadow: 0 18px 42px rgba(84, 55, 30, 0.10);
    isolation: isolate;
}

.yt-brand,
.yt-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.yt-header__mobile-action {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    border: 1px solid rgba(212, 154, 24, 0.14);
    background: rgba(255, 251, 244, 0.94);
    box-shadow: 0 10px 24px rgba(84, 55, 30, 0.08);
    color: #3a281a;
    text-decoration: none;
}

.yt-header__mobile-action svg {
    width: 22px;
    height: 22px;
    display: block;
}

.yt-brand--center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    justify-self: center;
    z-index: 2;
}

.yt-brand__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 114px;
    height: 114px;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 245, 227, 0.94) 100%);
    border: 1px solid rgba(212, 154, 24, 0.18);
    box-shadow: 0 14px 30px rgba(84, 55, 30, 0.12);
    padding: 12px;
    overflow: hidden;
    animation: yt-badge-float 5.8s ease-in-out infinite;
}

@keyframes yt-badge-float {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 14px 30px rgba(84, 55, 30, 0.12);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 18px 34px rgba(84, 55, 30, 0.16);
    }
}

@media (prefers-reduced-motion: reduce) {
    .yt-brand__badge {
        animation: none;
    }
}

.yt-brand__logo {
    display: block;
    width: 108%;
    height: 108%;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

.yt-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(140deg, var(--yt-gold) 0%, #f2bf4e 100%);
    color: #fff8eb;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(180, 121, 15, 0.22);
}

.yt-brand__text {
    font-size: 28px;
    font-weight: 700;
}

.yt-desktop-menu,
.yt-account-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.yt-desktop-menu {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 8px;
    box-shadow: none;
}

.yt-desktop-menu--left {
    justify-self: end;
    padding-right: 88px;
}

.yt-desktop-menu--right {
    justify-self: start;
    padding-left: 88px;
}

.yt-menu-item,
.yt-ghost-link,
.yt-mobile-link,
.yt-footer__links a,
.yt-footer__card a {
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.yt-menu-item,
.yt-ghost-link {
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--yt-ink);
    font-weight: 700;
}

.yt-menu-item.active,
.yt-menu-item:hover,
.yt-ghost-link:hover,
.yt-mobile-link.active,
.yt-mobile-link:hover {
    background: rgba(255, 220, 168, 0.34);
    color: var(--yt-gold-deep);
    text-decoration: none;
}

.yt-nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.yt-nav-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.yt-nav-dropdown__caret {
    font-size: 13px;
    line-height: 1;
    opacity: 0.72;
    transition: transform 0.2s ease;
}

.yt-nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.98);
    border: 1px solid rgba(212, 154, 24, 0.16);
    box-shadow: 0 18px 36px rgba(84, 55, 30, 0.12);
    display: grid;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1200;
}

.yt-nav-dropdown__menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--yt-ink);
    font-weight: 700;
    text-decoration: none;
}

.yt-nav-dropdown__menu a:hover {
    background: rgba(255, 220, 168, 0.34);
    color: var(--yt-gold-deep);
}

.yt-nav-dropdown:hover .yt-nav-dropdown__menu,
.yt-nav-dropdown:focus-within .yt-nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.yt-nav-dropdown:hover .yt-nav-dropdown__caret,
.yt-nav-dropdown:focus-within .yt-nav-dropdown__caret {
    transform: rotate(180deg);
}

.yt-cta,
.yt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 0;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.yt-cta,
.yt-button--primary {
    background: linear-gradient(135deg, var(--yt-plum) 0%, var(--yt-coral) 100%);
    color: var(--yt-white);
    box-shadow: 0 16px 34px rgba(84, 55, 30, 0.22);
}

.yt-cta,
.yt-button--primary,
.yt-button--primary:hover,
.yt-button--primary:focus,
.yt-button--primary:visited {
    color: var(--yt-white) !important;
}

.yt-header .yt-cta {
    min-height: 54px;
    padding: 0 26px;
}

.yt-button--ghost {
    background: rgba(255, 253, 248, 0.82);
    border: 1px solid rgba(244, 111, 82, 0.18);
    color: var(--yt-ink);
}

.yt-button--sand {
    background: linear-gradient(135deg, #f7d47e 0%, #e7ad2c 100%);
    color: #3b2615;
}

.yt-button:hover,
.yt-cta:hover,
.yt-footer__card a:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.yt-talk-submit {
    position: relative;
    overflow: hidden;
}

.yt-talk-submit:active {
    transform: scale(0.98);
}

.yt-talk-submit.is-submitting {
    pointer-events: none;
    opacity: 0.94;
    padding-right: 46px;
    animation: yt-send-pulse 1s ease-in-out infinite;
}

.yt-talk-submit.is-submitting::after {
    content: "";
    position: absolute;
    right: 16px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #ffffff;
    animation: yt-send-spin 0.75s linear infinite;
}

@keyframes yt-send-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes yt-send-pulse {
    0%,
    100% {
        box-shadow: 0 16px 34px rgba(84, 55, 30, 0.22);
    }
    50% {
        box-shadow: 0 12px 22px rgba(84, 55, 30, 0.16);
    }
}

@media (prefers-reduced-motion: reduce) {
    .yt-talk-submit:active {
        transform: none;
    }

    .yt-talk-submit.is-submitting,
    .yt-talk-submit.is-submitting::after {
        animation: none;
    }
}

.yt-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    border: 1px solid rgba(212, 154, 24, 0.14);
    background: rgba(255, 251, 244, 0.94);
    box-shadow: 0 10px 24px rgba(84, 55, 30, 0.08);
    padding: 0;
    z-index: 4;
}

.yt-menu-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    margin: 0;
    border-radius: 999px;
    background: #3a281a;
}

.yt-mobile-nav {
    display: none;
    margin-top: 12px;
    padding: 12px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.97) 0%, rgba(247, 240, 229, 0.96) 100%);
    border: 1px solid rgba(212, 154, 24, 0.12);
    box-shadow: 0 18px 40px rgba(84, 55, 30, 0.10);
}

.yt-mobile-nav__overlay {
    display: none;
}

.yt-mobile-nav.is-open {
    display: grid;
    gap: 8px;
}

.yt-mobile-link {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.54);
    color: var(--yt-ink);
    font-weight: 700;
}

.yt-mobile-link--cta {
    background: linear-gradient(135deg, var(--yt-plum) 0%, var(--yt-coral) 100%);
    color: var(--yt-white);
}

.yt-mobile-submenu {
    display: grid;
    gap: 8px;
}

.yt-mobile-submenu summary {
    list-style: none;
    cursor: pointer;
}

.yt-mobile-submenu summary::-webkit-details-marker {
    display: none;
}

.yt-mobile-submenu__summary {
    position: relative;
    padding-right: 40px;
}

.yt-mobile-submenu__summary::after {
    content: "▾";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    opacity: 0.8;
}

.yt-mobile-submenu[open] .yt-mobile-submenu__summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.yt-mobile-submenu__links {
    display: grid;
    gap: 8px;
    padding-left: 14px;
}

.yt-kicker {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 245, 218, 0.14);
    color: #fff2cf;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.yt-kicker--dark {
    background: rgba(78, 166, 255, 0.10);
    color: var(--yt-sky);
}

.yt-hero,
.yt-page-hero {
    position: relative;
    overflow: hidden;
}

.yt-hero {
    padding: 28px 0 120px;
    background: linear-gradient(180deg, #fff7ef 0%, #f7e8db 52%, #f1ddce 100%);
    color: var(--yt-ink);
}

.yt-hero__banner {
    position: absolute;
    inset: 0;
}

.yt-hero__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.yt-page-hero {
    padding: 108px 0 56px;
    background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.78) 0%, rgba(242, 247, 255, 0.92) 100%);
}

.yt-page-hero--light {
    border-bottom: 1px solid var(--yt-line);
}

.yt-page-hero--center {
    text-align: center;
}

.yt-page-hero--product .yt-container {
    display: grid;
    gap: 14px;
}

.yt-product-detail-banner {
    position: relative;
    margin-top: 8px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(212, 154, 24, 0.16);
    box-shadow: 0 20px 42px rgba(84, 55, 30, 0.12);
    background: rgba(255, 248, 236, 0.86);
}

.yt-product-detail-banner img {
    display: block;
    width: 100%;
    height: min(56vh, 520px);
    object-fit: cover;
    object-position: center 18%;
}

.yt-product-detail-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(25, 21, 17, 0.10) 15%, rgba(25, 21, 17, 0.55) 72%, rgba(25, 21, 17, 0.74) 100%);
}

.yt-product-detail-banner__content {
    position: absolute;
    left: clamp(18px, 3vw, 36px);
    right: clamp(18px, 3vw, 36px);
    bottom: clamp(16px, 2.4vw, 30px);
    z-index: 1;
    display: grid;
    gap: 8px;
}

.yt-product-detail-banner__content h1 {
    margin: 0;
    max-width: 18ch;
    color: #ffffff;
    font-size: clamp(34px, 4.6vw, 64px);
    line-height: 0.98;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.26);
}

.yt-product-detail-banner__content p {
    margin: 0;
    max-width: 62ch;
    color: rgba(255, 252, 247, 0.95);
    font-size: clamp(15px, 1.34vw, 21px);
    line-height: 1.35;
}

.yt-product-detail-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.yt-product-highlights {
    padding-top: 26px;
}

.yt-icon-card {
    gap: 10px;
}

.yt-icon-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--yt-coral);
    background: rgba(244, 111, 82, 0.12);
    border: 1px solid rgba(244, 111, 82, 0.18);
}

.yt-icon-card__icon svg {
    width: 22px;
    height: 22px;
}

.yt-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 247, 239, 0.96) 0%, rgba(255, 247, 239, 0.86) 34%, rgba(255, 247, 239, 0.38) 60%, rgba(255, 247, 239, 0.18) 100%),
        linear-gradient(180deg, rgba(255, 252, 247, 0.18) 0%, rgba(255, 252, 247, 0.10) 100%);
}

.yt-hero__grid,
.yt-contact-grid,
.yt-journey {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

.yt-hero__grid {
    position: relative;
    z-index: 1;
    gap: 0;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    min-height: 420px;
}

.yt-hero__copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    max-width: 640px;
    padding: 28px 32px 24px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.58) 0%, rgba(255, 250, 244, 0.42) 100%);
    border: 1px solid rgba(255, 250, 244, 0.46);
    box-shadow: 0 24px 48px rgba(84, 55, 30, 0.08);
    backdrop-filter: blur(14px);
}

.yt-hero .yt-kicker {
    justify-self: start;
    padding: 7px 14px;
    background: rgba(255, 248, 236, 0.82);
    border: 1px solid rgba(212, 154, 24, 0.18);
    color: rgba(183, 121, 15, 0.88);
    box-shadow: 0 8px 18px rgba(84, 55, 30, 0.06);
}

.yt-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 240, 219, 0.88);
    border: 1px solid rgba(212, 154, 24, 0.14);
    color: var(--yt-gold-deep);
    font-size: 13px;
    font-weight: 700;
}

.yt-hero__eyebrow-text--mobile {
    display: none;
}

.yt-hero__title,
.yt-page-hero h1 {
    margin: 0;
    font-size: clamp(36px, 4.1vw, 58px);
    line-height: 1.02;
    max-width: none;
}

.yt-hero__title-accent {
    display: block;
    color: var(--yt-coral);
    text-shadow: none;
}

.yt-page-hero h1 {
    font-size: clamp(36px, 4.8vw, 58px);
}

.yt-hero__text,
.yt-page-hero p,
.yt-section-heading p,
.yt-info-card p,
.yt-product-card p,
.yt-step-card p,
.yt-callout p,
.yt-sidebar-card p,
.yt-legal-card p {
    font-size: 16px;
    line-height: 1.75;
}

.yt-hero__text {
    max-width: 48ch;
    color: rgba(47, 33, 22, 0.84);
    font-size: 18px;
    margin: 0;
}

.yt-hero__actions,
.yt-product-card__actions,
.yt-callout__actions,
.yt-form__actions,
.yt-hero__actions--center {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.yt-hero__actions {
    margin-top: 6px;
}

.yt-hero__signals,
.yt-hero-panel__footer,
.yt-sidebar-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.yt-hero__proof {
    margin: 8px 0 4px;
    display: block;
    width: 100%;
}

.yt-hero-insight {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.94) 0%, rgba(255, 247, 236, 0.90) 100%);
    border: 1px solid rgba(212, 154, 24, 0.12);
    box-shadow: 0 10px 22px rgba(84, 55, 30, 0.08);
}

.yt-hero-insight__item {
    display: grid;
    gap: 4px;
    align-content: center;
    padding: 8px 12px;
}

.yt-hero-insight__item + .yt-hero-insight__item {
    border-left: 1px solid rgba(83, 58, 34, 0.12);
}

.yt-hero-insight__label {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(84, 55, 30, 0.60);
}

.yt-hero-insight__value {
    display: block;
    color: var(--yt-ink);
    font-size: clamp(16px, 1.35vw, 21px);
    line-height: 1.1;
    font-weight: 800;
}

.yt-hero-insight__value--path {
    font-size: clamp(14px, 1.15vw, 18px);
    line-height: 1.25;
    font-weight: 700;
}

.yt-hero__signals,
.yt-hero__proof,

.yt-hero__signals span,
.yt-pill,
.yt-footer__tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.yt-hero__signals span,
.yt-pill {
    background: rgba(255, 247, 235, 0.94);
    color: var(--yt-ink-soft);
    border: 1px solid rgba(212, 154, 24, 0.10);
}

.yt-pill--dark {
    background: rgba(255, 239, 222, 0.94);
}

.yt-hero-panel,
.yt-info-card,
.yt-product-card,
.yt-step-card,
.yt-callout,
.yt-contact-card,
.yt-sidebar-card,
.yt-legal-card {
    background: var(--yt-panel);
    border: 1px solid rgba(255, 252, 247, 0.34);
    box-shadow: var(--yt-shadow);
    backdrop-filter: blur(18px);
}

.yt-highlight-card,
.yt-strip__grid > div,
.yt-product-card__facts,
.yt-step-card,
.yt-sidebar-links,
.yt-form,
.yt-footer__card {
    display: grid;
    gap: 12px;
}

.yt-highlight-card {
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.90) 0%, rgba(248, 239, 255, 0.76) 100%);
    border: 1px solid rgba(244, 111, 82, 0.10);
    border-radius: 20px;
    padding: 16px 18px;
}

.yt-highlight-card span,
.yt-strip__label,
.yt-product-card__eyebrow,
.yt-detail-grid span,
.yt-footer__eyebrow {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--yt-coral);
}

.yt-highlight-card strong,
.yt-strip__grid strong,
.yt-detail-grid strong {
    color: var(--yt-ink);
    font-size: 22px;
}

.yt-highlight-card--accent {
    background: linear-gradient(135deg, rgba(255, 212, 109, 0.62) 0%, rgba(217, 236, 255, 0.90) 100%);
}


/* ── Service Cards ─────────────────────────────────── */
.yt-hero-offers {
    position: relative;
    z-index: 3;
    margin-top: -78px;
}

.yt-hero-offers__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.yt-calculator {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: start;
}

.yt-calculator__form,
.yt-calculator__summary {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.90) 0%, rgba(247, 255, 250, 0.84) 100%);
    border: 1px solid rgba(59, 165, 106, 0.10);
    box-shadow: 0 18px 40px rgba(84, 55, 30, 0.08);
    backdrop-filter: blur(18px);
}

.yt-calculator__field {
    display: grid;
    gap: 12px;
}

.yt-calculator__field label {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    color: var(--yt-ink);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.yt-calculator__label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.yt-calculator__label-row strong {
    color: var(--yt-ink);
    font-size: 18px;
    font-weight: 800;
}

.yt-calculator__range-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
    color: rgba(84, 55, 30, 0.64);
    font-weight: 700;
}

.yt-calculator select {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(83, 58, 34, 0.12);
    background: rgba(255, 253, 248, 0.92);
    color: var(--yt-ink);
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.yt-calculator select:focus {
    border-color: rgba(244, 111, 82, 0.38);
    box-shadow: 0 0 0 4px rgba(244, 111, 82, 0.10);
}

.yt-calculator input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(59, 165, 106, 0.22) 0%, rgba(59, 165, 106, 0.22) 50%, rgba(83, 58, 34, 0.14) 50%, rgba(83, 58, 34, 0.14) 100%);
    outline: none;
}

.yt-calculator input[type="range"]::-webkit-slider-runnable-track {
    height: 12px;
    border-radius: 999px;
    background: transparent;
}

.yt-calculator input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    margin-top: -8px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.96);
    background: linear-gradient(180deg, #51c47c 0%, #34a164 100%);
    box-shadow: 0 8px 18px rgba(59, 165, 106, 0.24);
    cursor: pointer;
}

.yt-calculator input[type="range"]::-moz-range-track {
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(83, 58, 34, 0.14);
}

.yt-calculator input[type="range"]::-moz-range-progress {
    height: 12px;
    border-radius: 999px;
    background: rgba(59, 165, 106, 0.26);
}

.yt-calculator input[type="range"]::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(255, 255, 255, 0.96);
    border-radius: 50%;
    background: linear-gradient(180deg, #51c47c 0%, #34a164 100%);
    box-shadow: 0 8px 18px rgba(59, 165, 106, 0.24);
    cursor: pointer;
}

.yt-calculator input[type="range"]:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.yt-calculator input[type="range"]:disabled::-webkit-slider-thumb,
.yt-calculator input[type="range"]:disabled::-moz-range-thumb {
    cursor: not-allowed;
}

.yt-calculator__product-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.yt-calculator__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.yt-calculator__summary-card {
    display: grid;
    gap: 8px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(59, 165, 106, 0.10);
}

.yt-calculator__summary-card--featured {
    background: linear-gradient(135deg, rgba(223, 244, 231, 0.96) 0%, rgba(255, 250, 242, 0.96) 100%);
    border-color: rgba(59, 165, 106, 0.18);
}

.yt-calculator__summary-card span {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--yt-coral);
}

.yt-calculator__summary-card--featured span,
.yt-calculator__product-meta .yt-calculator__summary-card span {
    color: var(--yt-success);
}

.yt-calculator__summary-card strong {
    color: var(--yt-ink);
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1;
    white-space: nowrap;
}

.yt-calculator__summary-card p,
.yt-calculator__note {
    margin: 0;
    color: var(--yt-ink-soft);
}

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

.yt-calculator__summary-card--compact strong {
    font-size: clamp(20px, 2.1vw, 30px);
    white-space: nowrap;
}

.yt-button--disabled {
    pointer-events: none;
    opacity: 0.55;
    box-shadow: none;
    filter: grayscale(0.2);
}

.yt-service-card {
    display: grid;
    align-content: start;
    justify-items: start;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(83, 58, 34, 0.08);
    border-top-width: 4px;
    border-radius: 26px;
    padding: 24px;
    text-align: left;
    box-shadow: 0 16px 36px rgba(58, 34, 18, 0.10);
    transition: box-shadow 0.22s, transform 0.22s;
}

.yt-service-card--personal {
    border-color: rgba(244, 111, 82, 0.22);
    border-top-color: var(--yt-coral);
}

.yt-service-card--business {
    border-color: rgba(78, 166, 255, 0.24);
    border-top-color: var(--yt-sky);
}

.yt-service-card--support {
    border-color: rgba(212, 154, 24, 0.24);
    border-top-color: var(--yt-gold);
}

.yt-service-card:hover {
    box-shadow: 0 18px 42px rgba(244, 111, 82, 0.14);
    transform: translateY(-4px);
}

.yt-service-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(244, 111, 82, 0.10);
    color: var(--yt-coral);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.yt-service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 238, 222, 0.92) 0%, rgba(255, 248, 239, 0.92) 100%);
    margin: 14px 0 16px;
}

.yt-service-card__icon svg {
    width: 32px;
    height: 32px;
}

.yt-service-card h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.02;
}

.yt-service-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--yt-ink-soft);
    margin: 0 0 18px;
}

.yt-service-card__link {
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
    color: var(--yt-coral);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.yt-service-card__link:hover {
    text-decoration: underline;
}

.yt-strip__grid > div,
.yt-info-card,
.yt-product-card,
.yt-step-card,
.yt-callout,
.yt-contact-card,
.yt-sidebar-card,
.yt-legal-card {
    border-radius: 24px;
    padding: 24px;
}

.yt-section {
    padding: 92px 0;
}

.yt-section--cream {
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.54) 0%, rgba(244, 248, 255, 0.92) 100%);
}

.yt-section--dark {
    background:
        radial-gradient(circle at 15% 22%, rgba(240, 196, 97, 0.14), transparent 20%),
        radial-gradient(circle at 88% 18%, rgba(78, 166, 255, 0.16), transparent 18%),
        linear-gradient(135deg, #2d1d12 0%, #4b2435 40%, #7d3f16 100%);
    color: rgba(255, 244, 224, 0.86);
}

.yt-section--dark h2,
.yt-section--dark h3,
.yt-section--dark p,
.yt-section--dark .yt-step-card__index {
    color: inherit;
}

.yt-section-heading {
    max-width: 980px;
    margin-bottom: 30px;
}

.yt-section-heading p {
    max-width: 58ch;
}

.yt-section-heading h2,
.yt-callout h2,
.yt-contact-card h2,
.yt-sidebar-card h3,
.yt-legal-card h2 {
    margin: 14px 0 10px;
    font-size: clamp(32px, 4vw, 48px);
}

.yt-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.yt-legal-stack {
    display: grid;
    gap: 20px;
}

.yt-legal-card {
    display: grid;
    gap: 14px;
}

.yt-legal-card h3 {
    margin: 0;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.08;
    color: var(--yt-ink);
}

.yt-legal-card h4 {
    margin: 4px 0 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--yt-ink);
}

.yt-legal-card p {
    margin: 0;
}

.yt-legal-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
}

.yt-legal-list li {
    color: var(--yt-ink-soft);
    line-height: 1.7;
}

.yt-legal-highlight {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    width: fit-content;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(244, 111, 82, 0.10);
    color: var(--yt-coral);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.yt-legal-note {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 249, 239, 0.9);
    border: 1px solid rgba(212, 154, 24, 0.12);
}

.yt-story-card {
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid rgba(255, 226, 175, 0.16);
    border-radius: 28px;
    box-shadow: var(--yt-shadow);
    overflow: hidden;
}

.yt-story-card__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 249, 239, 0.94) 0%, rgba(255, 243, 231, 0.94) 100%);
}

.yt-story-card__image-wrap img {
    width: min(100%, 260px);
    height: auto;
    display: block;
    object-fit: contain;
}

.yt-story-card__body {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.yt-story-card__body h3 {
    margin: 0;
    font-size: 30px;
}

.yt-story-card__body p {
    margin: 0;
}

.yt-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.yt-info-card h3,
.yt-product-card h2,
.yt-product-card h3,
.yt-step-card h3,
.yt-footer__card h4 {
    margin: 0;
    font-size: 30px;
}

.yt-footer__card h4 {
    font-size: 20px;
    line-height: 1.1;
}

.yt-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
}

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

.yt-product-card__facts,
.yt-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 10px 0 6px;
}

.yt-product-card {
    display: grid;
    align-content: start;
    gap: 16px;
    min-height: 100%;
    padding: 22px;
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 248, 240, 0.88) 100%);
    border: 1px solid rgba(244, 111, 82, 0.10);
    box-shadow: 0 14px 34px rgba(84, 55, 30, 0.08);
    position: relative;
    overflow: hidden;
}

.yt-product-card__image-wrap {
    margin: -22px -22px 8px;
    border-radius: 26px 26px 0 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(244, 111, 82, 0.14);
    background: rgba(255, 248, 240, 0.82);
}

.yt-product-card__image {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.yt-product-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--yt-coral) 0%, var(--yt-gold) 55%, var(--yt-sky) 100%);
}

.yt-product-card__top {
    display: grid;
    gap: 10px;
}

.yt-product-card__top p {
    margin: 0;
    max-width: 100%;
    color: var(--yt-ink-soft);
    font-size: 14px;
    line-height: 1.55;
}

.yt-product-card h3 {
    font-size: clamp(22px, 2.1vw, 30px);
    line-height: 1.02;
}

.yt-product-card__requirements {
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 250, 242, 0.86);
    border: 1px solid rgba(244, 111, 82, 0.10);
}

.yt-product-card__requirements-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--yt-coral);
}

.yt-product-card__requirements-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.yt-product-card__requirements-list li {
    position: relative;
    padding-left: 18px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--yt-ink-soft);
}

.yt-product-card__requirements-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yt-coral) 0%, var(--yt-gold) 100%);
}

.yt-product-card__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.yt-product-card__fact {
    display: grid;
    gap: 6px;
    padding: 12px 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(212, 154, 24, 0.10);
}

.yt-product-card__fact span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(84, 55, 30, 0.62);
}

.yt-product-card__fact strong {
    font-size: 16px;
    line-height: 1.3;
    color: var(--yt-ink);
}

.yt-product-card__footer {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.yt-product-card__note {
    margin: 0;
    color: rgba(84, 55, 30, 0.72);
    font-size: 13px;
    line-height: 1.45;
}

.yt-detail-grid {
    gap: 16px;
}

.yt-product-card--detail {
    gap: 18px;
    padding: 22px;
}

.yt-product-card--detail .yt-product-card__image {
    height: 230px;
}

.yt-product-card--detail .yt-product-card__top {
    gap: 10px;
}

.yt-product-card--detail h2 {
    margin: 0;
    font-size: clamp(20px, 1.8vw, 28px);
    line-height: 1.08;
}

.yt-product-card--detail .yt-product-card__top p {
    font-size: 13px;
    line-height: 1.5;
}

.yt-product-card--detail .yt-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    margin: 0;
}

.yt-product-card--detail .yt-detail-grid > div {
    display: grid;
    align-content: start;
    gap: 6px;
    min-height: 100%;
    padding: 14px 14px 16px;
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.84);
    border: 1px solid rgba(212, 154, 24, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.yt-product-card--detail .yt-detail-grid span {
    font-size: 10px;
}

.yt-product-card--detail .yt-detail-grid strong {
    font-size: 16px;
    line-height: 1.35;
}

.yt-product-card--detail .yt-product-card__actions {
    margin-top: 2px;
    gap: 10px;
}

.yt-product-card--detail .yt-product-card__actions .yt-button {
    padding-inline: 18px;
}

.yt-journey__list {
    display: grid;
    gap: 16px;
}

.yt-step-card {
    grid-template-columns: auto 1fr;
    align-items: start;
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.12) 0%, rgba(226, 247, 242, 0.10) 100%);
    border: 1px solid rgba(190, 233, 225, 0.14);
}

.yt-step-card__index {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 247, 242, 0.16);
    color: #fff0cd;
    font-weight: 800;
}

.yt-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.yt-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--yt-ink);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.yt-form input,
.yt-form select,
.yt-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(83, 58, 34, 0.12);
    background: rgba(255, 253, 248, 0.92);
    color: var(--yt-ink);
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.yt-form input:focus,
.yt-form select:focus,
.yt-form textarea:focus {
    border-color: rgba(244, 111, 82, 0.38);
    box-shadow: 0 0 0 4px rgba(244, 111, 82, 0.10);
}

.yt-sidebar-links a,
.yt-footer__card a,
.yt-footer__links a {
    color: var(--yt-coral);
    font-weight: 800;
}

.yt-contact-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: start;
}

.yt-contact-sidebar {
    display: grid;
    gap: 20px;
    align-content: start;
}

.yt-sidebar-card {
    display: grid;
    gap: 14px;
}

.yt-sidebar-card h3 {
    font-size: clamp(28px, 2.5vw, 36px);
    line-height: 1.04;
}

.yt-contact-sidebar .yt-sidebar-card p {
    max-width: 34ch;
    margin: 0;
}

.yt-contact-sidebar .yt-sidebar-links {
    display: grid;
    gap: 12px;
}

.yt-contact-sidebar .yt-sidebar-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    width: fit-content;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    background: rgba(244, 111, 82, 0.08);
    border: 1px solid rgba(244, 111, 82, 0.10);
}

.yt-sidebar-links a:hover,
.yt-footer__links a:hover {
    color: var(--yt-ink);
}

.yt-section--map {
    background: linear-gradient(180deg, rgba(255, 252, 246, 0.78) 0%, rgba(242, 249, 255, 0.94) 100%);
}

.yt-map-card {
    padding: 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(212, 154, 24, 0.12);
    box-shadow: 0 22px 46px rgba(84, 55, 30, 0.10);
    overflow: hidden;
}

.yt-uganda-map-figure {
    width: 100%;
    height: auto;
    display: block;
}

.yt-uganda-map-shape {
    fill: #e8a068;
    stroke: #1f1a16;
    stroke-width: 3.1;
    stroke-linejoin: round;
    stroke-linecap: round;
    filter: drop-shadow(0 10px 16px rgba(58, 44, 29, 0.12));
}

.yt-map-point {
    fill: #f46f52;
    stroke: #fff7ea;
    stroke-width: 3;
}

.yt-map-line {
    stroke: rgba(61, 111, 74, 0.42);
    stroke-width: 1.6;
}

.yt-map-text {
    font-family: var(--yt-font-display);
    font-weight: 700;
    color: #ef6324;
    font-size: clamp(24px, 2vw, 36px);
    line-height: 1;
    fill: #ef6324;
}

.yt-impact-panel {
    padding: 72px 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(78, 166, 255, 0.14), transparent 32%),
        radial-gradient(circle at 90% 85%, rgba(212, 154, 24, 0.16), transparent 36%),
        linear-gradient(180deg, #fff7ef 0%, #f8ecdc 100%);
}

.yt-impact-panel__wrap {
    display: grid;
    gap: 26px;
    padding: 26px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(212, 154, 24, 0.14);
    box-shadow: 0 22px 42px rgba(84, 55, 30, 0.10);
}

.yt-impact-panel__heading {
    display: grid;
    gap: 10px;
}

.yt-impact-panel__heading h2 {
    margin: 0;
    max-width: 22ch;
    font-size: clamp(32px, 3.6vw, 58px);
    line-height: 1.05;
    color: var(--yt-ink);
}

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

.yt-impact-tile {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 254, 251, 0.94) 0%, rgba(253, 245, 234, 0.88) 100%);
    border: 1px solid rgba(244, 111, 82, 0.12);
}

.yt-impact-tile h3 {
    margin: 0;
    font-size: clamp(36px, 4vw, 60px);
    line-height: 1;
    color: var(--yt-coral);
}

.yt-impact-tile p {
    margin: 0;
    color: var(--yt-ink-soft);
    font-size: 16px;
    line-height: 1.45;
    max-width: 28ch;
}

.yt-impact-meter {
    height: 10px;
    border-radius: 999px;
    background: rgba(83, 58, 34, 0.14);
    overflow: hidden;
}

.yt-impact-meter span {
    display: block;
    width: var(--meter);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--yt-coral) 0%, var(--yt-gold) 60%, #2f80d8 100%);
}

.o_footer_copyright,
.o_footer_copyright_name,
#footer .o_footer_copyright {
    display: none !important;
}

.yt-footer {
    padding: 18px 0 22px;
    background:
        radial-gradient(circle at top left, rgba(78, 166, 255, 0.10), transparent 18%),
        radial-gradient(circle at 85% 25%, rgba(59, 165, 106, 0.12), transparent 18%),
        linear-gradient(180deg, #f6efe6 0%, #f5eadc 100%);
    color: var(--yt-ink-soft);
}

.yt-talk-section {
    padding: 10px 0 14px;
    background: transparent;
    overflow-x: clip;
}

.yt-talk-section .yt-container,
.yt-footer-talk,
.yt-footer-talk__left,
.yt-footer-talk__form,
.yt-footer-talk__grid {
    min-width: 0;
}

.yt-footer__shell {
    padding: 24px 26px 18px;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.94) 0%, rgba(255, 247, 236, 0.92) 100%);
    border: 1px solid rgba(212, 154, 24, 0.12);
    box-shadow: 0 20px 46px rgba(84, 55, 30, 0.10);
}

.yt-footer-talk {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    gap: 12px;
    padding: 24px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    background: var(--yt-panel);
    border: 1px solid rgba(255, 252, 247, 0.34);
    box-shadow: var(--yt-shadow);
    backdrop-filter: blur(18px);
}

.yt-footer-talk__left {
    display: grid;
    gap: 8px;
    align-content: start;
}

.yt-footer-talk__left h3 {
    margin: 0;
    font-size: clamp(26px, 2.4vw, 36px);
    line-height: 1.05;
}

.yt-footer-talk__left p {
    margin: 0;
    max-width: 46ch;
}

.yt-footer-talk__form {
    margin-top: 2px;
}

.yt-footer-talk__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    max-width: 100%;
}

.yt-phone-input {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid rgba(83, 58, 34, 0.12);
    background: rgba(255, 253, 248, 0.92);
    border-radius: 16px;
    padding: 0 14px;
}

.yt-phone-input span {
    font-weight: 800;
    color: var(--yt-plum);
    letter-spacing: 0.02em;
}

.yt-phone-input input {
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    padding-left: 10px;
    min-width: 0;
}

.yt-footer-talk__right {
    position: relative;
    border-left: 0;
    padding-left: 8px;
    min-height: 260px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 50%, rgba(245, 239, 229, 0.28) 0%, rgba(245, 239, 229, 0.04) 42%, rgba(245, 239, 229, 0.0) 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%),
        url('/yooandtuu_frontend/static/src/img/contact.jpg') center center / 96% auto no-repeat,
        rgba(255, 250, 242, 0.56);
}

.yt-footer-talk__right img {
    display: none;
}

.yt-form-alert {
    border-radius: 14px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 700;
}

.yt-form-alert--success {
    color: #1f6a46;
    background: #e7f7ee;
    border: 1px solid rgba(31, 122, 90, 0.26);
}

.yt-form-alert--error {
    color: #9b1b2d;
    background: #ffebee;
    border: 1px solid rgba(155, 27, 45, 0.22);
}

.yt-footer__mast {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
    gap: 20px;
    align-items: start;
}

.yt-footer__intro {
    display: grid;
    gap: 12px;
    align-content: start;
    justify-items: start;
}

.yt-footer__brand-block {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.yt-footer__eyebrow {
    color: var(--yt-coral);
}

.yt-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.yt-footer__logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.yt-footer__logo {
    display: block;
    max-height: 118px;
    max-width: 260px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.yt-footer__intro h3 {
    margin: 0;
    font-size: clamp(24px, 2vw, 30px);
    line-height: 1.02;
    max-width: none;
}

.yt-footer__lead {
    max-width: 40ch;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.yt-footer__actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
}

.yt-footer__actions .yt-button {
    white-space: nowrap;
}

.yt-footer .yt-button--primary {
    background: linear-gradient(135deg, #1f7a5a 0%, #2ea56f 100%);
    color: var(--yt-white);
    box-shadow: 0 12px 26px rgba(31, 122, 90, 0.22);
}

.yt-footer .yt-button--ghost {
    background: rgba(255, 253, 248, 0.9);
    border-color: rgba(244, 111, 82, 0.16);
    color: var(--yt-plum);
}

.yt-footer__panel-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.yt-footer__panel {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(212, 154, 24, 0.10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.yt-footer__panel h4 {
    margin: 0;
    font-size: 18px;
    line-height: 1.1;
}

.yt-footer__link-list,
.yt-footer__contact-list {
    display: grid;
    gap: 10px;
}

.yt-footer__panel--nav .yt-footer__link-list {
    grid-template-columns: 1fr;
}

.yt-footer__link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
    padding: 0 2px 8px;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(244, 111, 82, 0.12);
    color: var(--yt-ink);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.yt-footer__link-list a::after {
    content: "+";
    color: var(--yt-coral);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.yt-footer__link-list a:hover {
    background: transparent;
    color: var(--yt-coral);
}

.yt-footer__contact-list p {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 11px 13px;
    border-radius: 14px;
    background: rgba(247, 255, 250, 0.88);
    border: 1px solid rgba(59, 165, 106, 0.12);
}

.yt-footer__contact-list strong {
    color: var(--yt-success);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.yt-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(83, 58, 34, 0.10);
}

.yt-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.yt-footer__bottom p {
    margin: 0;
    font-size: 14px;
}

.yt-footer__links a {
    color: rgba(84, 55, 30, 0.82);
}

.yt-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1380px) {
    .yt-product-grid--full {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .yt-hero__grid,
    .yt-contact-grid,
    .yt-journey,
    .yt-story-layout,
    .yt-product-grid--full,
    .yt-card-grid--three,
    .yt-footer__mast,
    .yt-calculator,
    .yt-hero-offers__grid {
        grid-template-columns: 1fr;
    }

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

    .yt-footer__panel-wrap {
        grid-template-columns: 1fr;
    }

    .yt-footer-talk {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .yt-impact-panel__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yt-footer-talk__right {
        border-top: 1px solid rgba(255, 252, 247, 0.34);
        padding-left: 0;
        padding-top: 14px;
        min-height: 210px;
    }

    .yt-footer__panel--nav .yt-footer__link-list {
        grid-template-columns: 1fr;
    }

    .yt-footer__actions {
        flex-wrap: wrap;
    }

    .yt-hero__title {
        max-width: 14ch;
    }

    .yt-footer-talk__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .yt-callout {
        flex-direction: column;
        align-items: flex-start;
    }

    .yt-hero__copy,
    .yt-calculator__form,
    .yt-calculator__summary {
        padding: 24px;
    }
}

@media (max-width: 1024px) {
    .yt-container {
        width: min(100%, calc(100% - 36px));
    }

    .yt-hero__copy {
        max-width: 100%;
    }

    .yt-footer__intro h3 {
        font-size: clamp(22px, 3vw, 28px);
    }
}

@media (max-width: 920px) {
    .yt-header {
        padding-top: 28px;
    }

    .yt-desktop-menu {
        display: none;
    }

    .yt-product-grid {
        grid-template-columns: 1fr;
    }

    .yt-menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .yt-strip__grid,
    .yt-product-card__facts,
    .yt-detail-grid,
    .yt-form__grid,
    .yt-calculator__summary-grid {
        grid-template-columns: 1fr;
    }

    .yt-header__shell {
        grid-template-columns: 1fr;
        border-radius: 24px;
        min-height: 70px;
        padding: 0 76px;
        overflow: visible;
        justify-items: center;
    }

    .yt-brand--center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        justify-self: center;
        grid-column: auto;
    }

    .yt-menu-toggle {
        position: absolute;
        top: 50%;
        left: 14px;
        transform: translateY(-50%);
        grid-column: auto;
        justify-self: auto;
    }

    .yt-header__mobile-action {
        display: inline-flex;
        position: absolute;
        top: 50%;
        right: 14px;
        transform: translateY(-50%);
        grid-column: auto;
        justify-self: auto;
        z-index: 4;
    }

    .yt-hero__proof {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .yt-brand__badge {
        width: 108px;
        height: 108px;
        padding: 8px;
        box-shadow: 0 16px 30px rgba(84, 55, 30, 0.14);
    }

    .yt-brand__logo {
        width: 108%;
        height: 108%;
        max-width: none;
        max-height: none;
    }

    .yt-mobile-nav__overlay {
        position: fixed;
        inset: 0;
        display: block;
        background: rgba(47, 33, 22, 0.22);
        backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
        z-index: 1098;
    }

    .yt-mobile-nav__overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .yt-mobile-nav {
        position: fixed;
        top: 12px;
        left: 12px;
        bottom: 12px;
        width: min(320px, calc(100vw - 24px));
        margin-top: 0;
        padding: 18px 14px;
        border-radius: 28px;
        display: grid;
        align-content: start;
        gap: 8px;
        overflow-y: auto;
        transform: translateX(calc(-100% - 24px));
        transition: transform 0.28s ease;
        z-index: 1099;
    }

    .yt-mobile-nav.is-open {
        transform: translateX(0);
    }

    .yt-hero__grid {
        min-height: 480px;
    }

    .yt-map-text {
        font-size: clamp(20px, 2.6vw, 30px);
    }

    .yt-calculator__actions,
    .yt-footer__actions,
    .yt-callout__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .yt-calculator__actions .yt-button,
    .yt-footer__actions .yt-button,
    .yt-callout__actions .yt-button,
    .yt-product-card__actions .yt-button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .yt-container {
        width: min(100%, calc(100% - 28px));
    }

    .yt-hero {
        padding: 56px 0 36px;
    }

    .yt-map-card {
        padding: 14px;
    }

    .yt-map-text {
        font-size: 17px;
    }

    .yt-impact-panel {
        padding: 56px 0;
    }

    .yt-impact-panel__wrap {
        padding: 18px;
        gap: 18px;
    }

    .yt-impact-panel__grid {
        grid-template-columns: 1fr;
    }

    .yt-product-detail-banner img {
        height: min(46vh, 360px);
        object-position: center 20%;
    }

    .yt-product-detail-banner__content h1 {
        max-width: none;
        font-size: clamp(30px, 8vw, 42px);
    }

    .yt-product-detail-banner__content p {
        font-size: 14px;
        line-height: 1.4;
    }

    .yt-product-detail-banner__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .yt-product-detail-banner__actions .yt-button {
        width: 100%;
    }

    .yt-hero__copy {
        gap: 16px;
        padding: 18px;
        border-radius: 24px;
    }

    .yt-hero__title,
    .yt-page-hero h1 {
        max-width: none;
        font-size: clamp(32px, 8.8vw, 44px);
        line-height: 1.06;
    }

    .yt-hero__eyebrow {
        min-height: auto;
        padding: 9px 14px;
        font-size: 12px;
        line-height: 1.35;
    }

    .yt-hero__text {
        font-size: 17px;
        line-height: 1.62;
    }

    .yt-hero__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .yt-hero__actions .yt-button {
        width: 100%;
    }

    .yt-hero-insight {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yt-hero-offers {
        margin-top: 18px;
    }

    .yt-hero-offers__grid {
        gap: 16px;
    }

    .yt-product-card__facts {
        grid-template-columns: 1fr;
    }

    .yt-section--dark .yt-journey__intro,
    .yt-section--dark .yt-journey__list,
    .yt-section--dark .yt-step-card,
    .yt-section--dark .yt-journey__intro .yt-kicker {
        justify-items: center;
        text-align: center;
    }

    .yt-section--dark .yt-journey__intro p,
    .yt-section--dark .yt-step-card p {
        max-width: 34ch;
        margin-left: auto;
        margin-right: auto;
    }

    .yt-step-card {
        justify-items: center;
        text-align: center;
    }

    .yt-calculator__product-meta {
        grid-template-columns: 1fr;
    }

    .yt-calculator__product-meta .yt-calculator__summary-card,
    .yt-calculator__summary-card--featured,
    .yt-calculator__summary-grid .yt-calculator__summary-card,
    .yt-calculator__note {
        text-align: center;
    }

    .yt-calculator__summary-card {
        justify-items: center;
    }

    .yt-footer__logo {
        max-height: 96px;
        max-width: 220px;
    }
}

@media (max-width: 640px) {
    .yt-header {
        padding-top: 22px;
    }

    .yt-header__shell {
        min-height: 60px;
        gap: 10px;
        padding: 0 68px;
    }

    .yt-brand--center {
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .yt-brand__badge {
        width: 100px;
        height: 100px;
        padding: 7px;
    }

    .yt-brand__logo {
        width: 109%;
        height: 109%;
    }

    .yt-mobile-nav {
        top: 10px;
        left: 10px;
        bottom: 10px;
        width: min(300px, calc(100vw - 20px));
        padding: 16px 12px;
        border-radius: 24px;
    }

    .yt-hero {
        padding: 48px 0 26px;
    }

    .yt-hero__grid {
        min-height: auto;
    }

    .yt-hero__copy {
        gap: 14px;
        padding: 16px;
        max-width: 100%;
    }

    .yt-hero__title {
        font-size: clamp(31px, 10vw, 40px);
        line-height: 1.08;
    }

    .yt-hero__eyebrow {
        padding: 8px 12px;
        font-size: 11px;
    }

    .yt-hero__eyebrow-text--desktop {
        display: none;
    }

    .yt-hero__eyebrow-text--mobile {
        display: inline;
    }

    .yt-hero__text {
        font-size: 16px;
        line-height: 1.56;
    }

    .yt-hero__proof {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 2px;
    }

    .yt-hero__proof {
        margin-top: 4px;
    }

    .yt-hero-insight {
        grid-template-columns: 1fr;
        padding: 10px;
        border-radius: 16px;
    }

    .yt-hero-insight__item {
        padding: 10px 10px;
        gap: 3px;
    }

    .yt-hero-insight__item + .yt-hero-insight__item {
        border-left: 0;
        border-top: 1px solid rgba(83, 58, 34, 0.12);
    }

    .yt-hero-insight__value {
        font-size: 18px;
    }

    .yt-hero-insight__value--path {
        font-size: 16px;
    }

    .yt-product-card {
        gap: 14px;
    }

    .yt-product-card__image {
        height: 180px;
    }

    .yt-product-card--detail .yt-product-card__image {
        height: 190px;
    }

    .yt-product-card h3 {
        font-size: clamp(20px, 7vw, 28px);
    }

    .yt-product-card__requirements {
        padding: 14px;
        border-radius: 16px;
    }

    .yt-product-card__requirements-list li {
        padding-left: 16px;
        font-size: 12px;
        line-height: 1.45;
    }

    .yt-product-card__fact {
        padding: 11px 12px 13px;
        border-radius: 14px;
        text-align: center;
    }

    .yt-product-card__fact strong {
        font-size: 14px;
        line-height: 1.35;
    }

    .yt-hero-offers {
        margin-top: 14px;
    }

    .yt-hero-offers__grid {
        gap: 14px;
    }

    .yt-calculator__label-row,
    .yt-calculator__range-meta {
        gap: 10px;
    }

    .yt-calculator__label-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .yt-section--dark .yt-journey__intro h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .yt-section--dark .yt-journey__intro,
    .yt-section--dark .yt-step-card {
        text-align: center;
    }

    .yt-step-card__index {
        margin-left: auto;
        margin-right: auto;
    }

    .yt-footer__intro,
    .yt-footer__brand-block,
    .yt-footer__panel,
    .yt-footer__bottom {
        justify-items: center;
        text-align: center;
    }

    .yt-footer-talk {
        padding: 18px;
    }

    .yt-footer-talk__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .yt-footer-talk__right {
        display: none;
    }

    .yt-footer__lead {
        max-width: 30ch;
    }

    .yt-footer__actions,
    .yt-footer__links {
        justify-content: center;
        width: 100%;
    }

    .yt-footer__links {
        display: grid;
        gap: 10px;
    }

    .yt-footer__links a {
        text-align: center;
    }

    .yt-footer__link-list a,
    .yt-footer__contact-list p {
        text-align: left;
    }

    .yt-section,
    .yt-footer {
        padding-top: 72px;
        padding-bottom: 28px;
    }

    .yt-footer__shell {
        padding: 22px 18px 18px;
    }

    .yt-strip {
        margin-top: -20px;
    }

    .yt-strip__grid > div,
    .yt-info-card,
    .yt-product-card,
    .yt-step-card,
    .yt-callout,
    .yt-contact-card,
    .yt-sidebar-card,
    .yt-legal-card {
        padding: 20px;
    }

    .yt-hero__actions,
    .yt-product-card__actions,
    .yt-callout__actions,
    .yt-form__actions,
    .yt-hero__actions--center {
        flex-direction: column;
        align-items: stretch;
    }

    .yt-hero__actions {
        display: flex;
    }

    .yt-hero__actions .yt-button,
    .yt-product-card__actions .yt-button,
    .yt-form__actions .yt-button,
    .yt-callout__actions .yt-button,
    .yt-hero__actions--center .yt-button {
        width: 100%;
    }

    .yt-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .yt-legal-list {
        padding-left: 18px;
    }
}