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

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--font-family);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
}

img,
svg,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--c-accent-dark);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    font-family: inherit;
    cursor: pointer;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--c-text);
    font-weight: 700;
    letter-spacing: -0.018em;
}

p {
    margin: 0;
}

:focus-visible {
    outline: 2px solid var(--c-accent-dark);
    outline-offset: 3px;
    border-radius: 10px;
}

:root {
    
    --c-text: #0B1320;
    --c-text-secondary: #6B7280;
    --c-text-muted: #94A3B8;

    --c-accent: #47DA78;
    --c-accent-dark: #39B261;
    --c-accent-deep: #1F8C4A;
    --c-accent-light: #D7F5E1;
    --c-accent-soft: #EAF9EF;

    --c-border: #E6EAF2;
    --c-border-soft: rgba(15, 32, 60, 0.08);
    --c-error: #EE0000;

    --c-bg: #FFFFFF;
    --c-bg-soft: #F7F9FC;
    --c-bg-warm: #FCF7F2;

    --c-nutrient-fat: #FDC350;
    --c-nutrient-protein: #42A5F5;
    --c-nutrient-carbs: #FF7A00;

    
    --glass-bg: rgba(255, 255, 255, 0.62);
    --glass-bg-strong: rgba(255, 255, 255, 0.78);
    --glass-border: rgba(255, 255, 255, 0.55);
    --glass-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset,
        0 12px 32px rgba(13, 22, 32, 0.08),
        0 28px 60px -28px rgba(13, 22, 32, 0.18);
    --glass-shadow-soft: 0 1px 0 rgba(255, 255, 255, 0.55) inset,
        0 8px 24px rgba(13, 22, 32, 0.06);

    
    --font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

    --fs-caption: 12px;
    --fs-body-sm: 14px;
    --fs-body: 16px;
    --fs-title-sm: 20px;
    --fs-title-md: 26px;
    --fs-title-lg: 32px;
    --fs-hero: 40px;
    --fs-hero-lg: 56px;

    --lh-caption: 16px;
    --lh-body-sm: 20px;
    --lh-body: 24px;
    --lh-title-sm: 28px;
    --lh-title-md: 34px;
    --lh-title-lg: 40px;
    --lh-hero: 48px;
    --lh-hero-lg: 64px;

    
    --space-4: 4px;
    --space-6: 6px;
    --space-8: 8px;
    --space-12: 12px;
    --space-20: 20px;
    --space-32: 32px;
    --space-48: 48px;
    --space-72: 72px;
    --space-96: 96px;

    
    --r-card: 22px;
    --r-card-lg: 28px;
    --r-inner: 12px;
    --r-pill: 999px;

    
    --container-max: 1200px;
    --container-narrow: 920px;

    
    --shadow-soft: 0 1px 2px rgba(15, 32, 60, 0.04), 0 8px 24px rgba(15, 32, 60, 0.06);
    --shadow-card-strong: 0 6px 16px rgba(15, 32, 60, 0.08), 0 24px 48px rgba(15, 32, 60, 0.10);
    --transition-base: 180ms ease;
}

.bg-aurora {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 50%, #FFFFFF 0%, #F7FBF8 60%, #EEF6F0 100%);
    pointer-events: none;
}

.bg-aurora__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    will-change: transform;
}

.bg-aurora__blob--green {
    width: 620px;
    height: 620px;
    top: -180px;
    right: -120px;
    background: radial-gradient(circle, rgba(71, 218, 120, 0.45) 0%, rgba(71, 218, 120, 0) 70%);
    animation: aurora-drift-1 22s ease-in-out infinite alternate;
}

.bg-aurora__blob--rose {
    width: 540px;
    height: 540px;
    top: 18%;
    left: -160px;
    background: radial-gradient(circle, rgba(255, 138, 168, 0.35) 0%, rgba(255, 138, 168, 0) 70%);
    animation: aurora-drift-2 26s ease-in-out infinite alternate;
}

.bg-aurora__blob--peach {
    width: 480px;
    height: 480px;
    top: 52%;
    right: 5%;
    background: radial-gradient(circle, rgba(253, 195, 80, 0.32) 0%, rgba(253, 195, 80, 0) 70%);
    animation: aurora-drift-3 30s ease-in-out infinite alternate;
}

.bg-aurora__blob--sky {
    width: 460px;
    height: 460px;
    bottom: -160px;
    left: 22%;
    background: radial-gradient(circle, rgba(66, 165, 245, 0.28) 0%, rgba(66, 165, 245, 0) 70%);
    animation: aurora-drift-4 28s ease-in-out infinite alternate;
}

.bg-aurora__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    opacity: 0.4;
    mix-blend-mode: overlay;
}

@keyframes aurora-drift-1 {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(-80px, 60px, 0) scale(1.1); }
}
@keyframes aurora-drift-2 {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(90px, -40px, 0) scale(0.95); }
}
@keyframes aurora-drift-3 {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(-50px, -70px, 0) scale(1.08); }
}
@keyframes aurora-drift-4 {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(60px, 50px, 0) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .bg-aurora__blob {
        animation: none !important;
    }
}

.container {
    width: 100%;
    max-width: var(--container-max);
    padding-left: var(--space-20);
    padding-right: var(--space-20);
    margin-left: auto;
    margin-right: auto;
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding-top: var(--space-96);
    padding-bottom: var(--space-96);
    position: relative;
}

.section--tight {
    padding-top: var(--space-48);
    padding-bottom: var(--space-48);
}

.section__head {
    text-align: center;
    margin-bottom: var(--space-48);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section__kicker {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    color: var(--c-accent-dark);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: var(--space-12);
}

.section__kicker::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--c-accent-dark);
}

.section__title {
    font-size: var(--fs-title-lg);
    line-height: var(--lh-title-lg);
    font-weight: 700;
    color: var(--c-text);
    margin: 0 0 var(--space-20);
    letter-spacing: -0.022em;
}

.section__subtitle {
    font-size: 17px;
    line-height: 26px;
    color: var(--c-text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

.section__head--start {
    text-align: left;
    margin-left: 0;
}

.section__head--start .section__kicker {
    
}

.text-accent {
    color: var(--c-accent-dark);
}

.text-gradient {
    background: linear-gradient(95deg, #1F8C4A 0%, #47DA78 60%, #38BDF8 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shimmer 9s ease-in-out infinite alternate;
}

@keyframes shimmer {
    from { background-position: 0% 50%; }
    to   { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    .text-gradient {
        animation: none !important;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    height: 48px;
    padding: 0 var(--space-20);
    border: none;
    border-radius: var(--r-pill);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition-base), color var(--transition-base),
        border-color var(--transition-base), transform var(--transition-base),
        box-shadow var(--transition-base);
}

.btn:hover {
    text-decoration: none;
}

.btn--primary {
    background: var(--c-accent);
    color: #ffffff;
}

.btn--primary:hover {
    background: var(--c-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(71, 218, 120, 0.35);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--secondary {
    background: var(--c-accent-light);
    color: var(--c-accent-dark);
}

.btn--secondary:hover {
    background: #c4ecd0;
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.7);
    color: var(--c-text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(0, 0, 0, 0.08);
}

.btn--lg {
    height: 56px;
    padding: 0 24px;
    font-size: 17px;
}

.btn__icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.btn--lg .btn__icon {
    width: 22px;
    height: 22px;
}

.btn-appstore {
    display: inline-flex;
    align-items: center;
    gap: var(--space-12);
    height: 56px;
    padding: 0 22px 0 18px;
    background: #0B0F14;
    color: #ffffff;
    border-radius: 16px;
    text-decoration: none;
    transition: transform var(--transition-base), box-shadow var(--transition-base),
        background var(--transition-base);
    box-shadow: 0 10px 28px -10px rgba(11, 15, 20, 0.55);
}

.btn-appstore:hover {
    background: #1a2230;
    transform: translateY(-1px);
    box-shadow: 0 16px 36px -10px rgba(11, 15, 20, 0.65);
    text-decoration: none;
}

.btn-appstore__icon {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    flex-shrink: 0;
}

.btn-appstore__label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.btn-appstore__top {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.btn-appstore__bottom {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.btn-appstore--sm {
    height: 44px;
    padding: 0 16px 0 14px;
    border-radius: 12px;
    gap: var(--space-8);
}

.btn-appstore--sm .btn-appstore__icon {
    width: 20px;
    height: 20px;
}

.btn-appstore--sm .btn-appstore__top {
    font-size: 10px;
}

.btn-appstore--sm .btn-appstore__bottom {
    font-size: 14px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-base), background var(--transition-base),
        box-shadow var(--transition-base);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.82);
    border-bottom-color: rgba(15, 32, 60, 0.06);
    box-shadow: 0 8px 24px -16px rgba(15, 32, 60, 0.12);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-20);
    height: 72px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    height: 32px;
    width: auto;
}

.site-logo:hover {
    text-decoration: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: var(--space-32);
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-32);
}

.site-nav__link {
    color: var(--c-text);
    font-size: var(--fs-body);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-base);
}

.site-nav__link:hover {
    color: var(--c-accent-dark);
    text-decoration: none;
}

.site-nav__cta-group {
    display: flex;
    align-items: center;
    gap: var(--space-12);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--r-pill);
    align-items: center;
    justify-content: center;
}

.menu-toggle__bars {
    width: 18px;
    height: 12px;
    position: relative;
}

.menu-toggle__bars::before,
.menu-toggle__bars::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: transform var(--transition-base);
}

.menu-toggle__bars::before { top: 0; }
.menu-toggle__bars::after  { bottom: 0; }

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
    transform: translateY(5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
    transform: translateY(-5px) rotate(-45deg);
}

.hero {
    position: relative;
    padding-top: var(--space-32);
    padding-bottom: var(--space-72);
    overflow: hidden;
}

.hero__stage {
    position: relative;
    margin: 0 var(--space-20);
    border-radius: var(--r-card-lg);
    overflow: hidden;
    min-height: 640px;
    isolation: isolate;
    box-shadow: 0 30px 80px -30px rgba(15, 32, 60, 0.25);
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 35%;
    z-index: 0;
}

.hero__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.85) 30%,
            rgba(255, 255, 255, 0.35) 55%,
            rgba(255, 255, 255, 0) 75%);
    pointer-events: none;
}

.hero__veil::after {
    
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 32%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    min-height: 640px;
    padding: var(--space-72) var(--space-48);
}

.hero__content {
    max-width: 600px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    padding: 8px 16px 8px 8px;
    margin-bottom: var(--space-20);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--r-pill);
    font-size: var(--fs-body-sm);
    color: var(--c-text);
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(15, 32, 60, 0.08);
}

.hero__badge-mark {
    width: 28px;
    height: 21px;
    flex-shrink: 0;
    display: block;
}

.hero__title {
    font-size: var(--fs-hero-lg);
    line-height: var(--lh-hero-lg);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-20);
    color: var(--c-text);
}

.hero__title-accent {
    background: linear-gradient(95deg, #1F8C4A 0%, #47DA78 60%, #38BDF8 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero__subtitle {
    font-size: 19px;
    line-height: 29px;
    color: var(--c-text);
    margin-bottom: var(--space-32);
    max-width: 520px;
    
    opacity: 0.78;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-12);
    margin-bottom: var(--space-32);
}

.hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-12);
}

.hero__cta-caption {
    color: var(--c-text-secondary);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-sm);
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-32);
    align-items: center;
    color: var(--c-text-secondary);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-sm);
}

.hero__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.hero__meta-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--c-text);
    font-weight: 600;
    font-size: 15px;
}

.hero__rating-stars {
    color: #FDB827;
    letter-spacing: 1px;
    font-size: 14px;
}

.hero__quote {
    position: absolute;
    right: var(--space-48);
    bottom: var(--space-48);
    display: flex;
    align-items: center;
    gap: var(--space-12);
    padding: 14px 18px 14px 14px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 18px;
    box-shadow: 0 10px 30px -10px rgba(15, 32, 60, 0.25);
    color: var(--c-text);
    max-width: 280px;
    z-index: 3;
}

.hero__quote-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--r-pill);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(15, 32, 60, 0.12);
}

.hero__quote-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__quote-text {
    font-size: 14px;
    line-height: 20px;
    color: var(--c-text);
}

.hero__quote-author {
    display: block;
    margin-top: 2px;
    color: var(--c-text-secondary);
    font-size: 12px;
}

.mood {
    position: relative;
}

.mood__intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-72);
    align-items: end;
    margin-bottom: var(--space-48);
}

.mood__intro-title {
    font-size: var(--fs-title-lg);
    line-height: var(--lh-title-lg);
    font-weight: 700;
    letter-spacing: -0.022em;
    margin: 0;
}

.mood__intro-text {
    color: var(--c-text-secondary);
    font-size: 17px;
    line-height: 27px;
    max-width: 460px;
}

.mood__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-20);
}

.mood-card {
    position: relative;
    padding: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-card);
    box-shadow: var(--glass-shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.mood-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow);
}

.mood-card:hover .mood-card__media img {
    transform: scale(1.04);
}

.mood-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--c-bg-soft);
}

.mood-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mood-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.35) 100%);
    pointer-events: none;
}

.mood-card__body {
    padding: var(--space-20) var(--space-20) var(--space-32);
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    flex: 1;
}

.mood-card__title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: var(--c-text);
    margin: 0;
}

.mood-card__text {
    color: var(--c-text-secondary);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-sm);
}

.trust-strip {
    padding: 0 0 var(--space-72);
    position: relative;
    z-index: 1;
}

.trust-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-20);
    padding: 24px 28px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-card);
    box-shadow: var(--glass-shadow-soft);
}

.trust-strip__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    text-align: center;
}

.trust-strip__value {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--c-text);
}

.trust-strip__label {
    color: var(--c-text-secondary);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-sm);
}

.steps {
    position: relative;
}

.steps__head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-32);
    align-items: end;
    margin-bottom: var(--space-48);
}

.steps__head .section__head {
    text-align: left;
    margin: 0;
    max-width: 720px;
}

.steps__head-cta {
    display: flex;
    align-items: center;
    gap: var(--space-12);
}

.steps__list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--space-20);
}

.step-card {
    position: relative;
    padding: var(--space-32) var(--space-20) var(--space-20);
    background: var(--glass-bg);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-radius: var(--r-card);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    box-shadow: var(--glass-shadow-soft);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow);
}

.step-card__number {
    position: absolute;
    top: -16px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: #0B1320;
    color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 8px 16px -8px rgba(11, 19, 32, 0.6);
}

.step-card__title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: var(--c-text);
    margin-top: var(--space-12);
}

.step-card__text {
    color: var(--c-text-secondary);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-sm);
}

.feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-72);
    align-items: center;
    padding: var(--space-72) 0;
}

.feature + .feature {
    border-top: 1px solid var(--c-border-soft);
}

.feature--reverse .feature__content {
    order: 2;
}

.feature__title {
    font-size: var(--fs-title-md);
    line-height: var(--lh-title-md);
    font-weight: 700;
    letter-spacing: -0.018em;
    margin-bottom: var(--space-20);
}

.feature__text {
    font-size: 17px;
    line-height: 26px;
    color: var(--c-text-secondary);
    margin-bottom: var(--space-32);
}

.feature__bullets {
    display: grid;
    gap: var(--space-12);
    margin-bottom: var(--space-32);
}

.feature__bullets li {
    position: relative;
    padding-left: 28px;
    color: var(--c-text);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

.feature__bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: var(--c-accent-light) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%2339B261' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M2.5 6.2 5 8.5l4.5-5'/></svg>") center / 12px no-repeat;
    border-radius: var(--r-pill);
}

.feature__visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: var(--space-48);
}

.feature__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(71, 218, 120, 0.22), transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(66, 165, 245, 0.18), transparent 60%);
    border-radius: var(--r-card-lg);
    z-index: 0;
}

.feature__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 460px;
    border-radius: var(--r-card);
    filter: drop-shadow(0 30px 50px rgba(15, 32, 60, 0.16));
}

.benefits {
    position: relative;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-20);
}

.benefit-card {
    position: relative;
    grid-column: span 4;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-card);
    padding: var(--space-32);
    box-shadow: var(--glass-shadow-soft);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow);
}

.benefit-card--wide { grid-column: span 8; }
.benefit-card--half { grid-column: span 6; }

.benefit-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #47DA78, #2BB05F);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-20);
    box-shadow: 0 12px 22px -10px rgba(71, 218, 120, 0.6);
}

.benefit-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card__icon--orange { background: linear-gradient(135deg, #FFB066, #FF7A00); box-shadow: 0 12px 22px -10px rgba(255, 122, 0, 0.5); }
.benefit-card__icon--blue   { background: linear-gradient(135deg, #66B7F5, #1976D2); box-shadow: 0 12px 22px -10px rgba(25, 118, 210, 0.5); }
.benefit-card__icon--yellow { background: linear-gradient(135deg, #FFD580, #FDC350); color: #6B4400; box-shadow: 0 12px 22px -10px rgba(253, 195, 80, 0.5); }
.benefit-card__icon--pink   { background: linear-gradient(135deg, #FF9FB8, #FF6E92); box-shadow: 0 12px 22px -10px rgba(255, 110, 146, 0.5); }
.benefit-card__icon--ink    { background: linear-gradient(135deg, #324054, #0B1320); box-shadow: 0 12px 22px -10px rgba(11, 19, 32, 0.5); }

.benefit-card__title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: var(--space-8);
    color: var(--c-text);
}

.benefit-card__text {
    color: var(--c-text-secondary);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

.benefit-card__metric {
    display: inline-flex;
    align-items: baseline;
    gap: var(--space-8);
    margin-top: var(--space-20);
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(15, 32, 60, 0.05);
    border-radius: 14px;
    font-size: var(--fs-body-sm);
    color: var(--c-text-secondary);
}

.benefit-card__metric strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-text);
}

.benefit-card--wide .benefit-card__hero {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-32);
    align-items: center;
}

.benefit-card__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    border: 1px solid rgba(15, 32, 60, 0.04);
    width: 220px;
    height: 220px;
}

.benefit-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonials {
    position: relative;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-20);
    margin-top: var(--space-48);
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-card);
    padding: var(--space-32);
    box-shadow: var(--glass-shadow-soft);
    transition: transform var(--transition-base), box-shadow var(--transition-base);

    
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-template-areas:
        "author stars"
        "author quote";
    grid-template-rows: auto 1fr;
    column-gap: var(--space-48);
    row-gap: var(--space-12);
    align-items: start;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow);
}

.testimonial-card__stars {
    grid-area: stars;
    color: #FDB827;
    letter-spacing: 2px;
    font-size: 18px;
    align-self: center;
}

.testimonial-card__text {
    grid-area: quote;
    color: var(--c-text);
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}

.testimonial-card__author {
    grid-area: author;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-12);
    padding: 0;
    border: none;
}

.testimonial-card__avatar {
    width: 88px;
    height: 88px;
    border-radius: var(--r-pill);
    background: var(--c-accent-light);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 18px -6px rgba(15, 32, 60, 0.18);
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-card__author-name {
    color: var(--c-text);
    font-weight: 600;
    font-size: 17px;
    line-height: 24px;
}

.testimonial-card__author-result {
    color: var(--c-accent-dark);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-sm);
    font-weight: 500;
}

.testimonials__cta {
    margin-top: var(--space-48);
    padding: var(--space-32);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--r-card);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-32);
    align-items: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow-soft);
}

.testimonials__cta-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: var(--space-8);
}

.testimonials__cta-text {
    color: var(--c-text-secondary);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

.trust-contact {
    padding-top: var(--space-72);
    padding-bottom: var(--space-72);
}

.trust-contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-48);
    background: var(--glass-bg-strong);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-card-lg);
    padding: var(--space-48);
    align-items: center;
    box-shadow: var(--glass-shadow);
}

.trust-contact__block-title {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: var(--space-20);
}

.trust-contact__email {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    padding: 12px var(--space-20);
    background: #ffffff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-pill);
    color: var(--c-text);
    font-weight: 500;
    font-size: var(--fs-body);
    margin-bottom: var(--space-12);
}

.trust-contact__email:hover {
    border-color: var(--c-accent);
    text-decoration: none;
}

.trust-contact__contact-note {
    color: var(--c-text-secondary);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-sm);
}

.trust-contact__stats {
    display: grid;
    gap: var(--space-20);
}

.trust-contact__stat {
    display: flex;
    align-items: baseline;
    gap: var(--space-20);
}

.trust-contact__stat-value {
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
    color: var(--c-text);
    min-width: 120px;
}

.trust-contact__stat-label {
    color: var(--c-text-secondary);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

.cta-block {
    background: linear-gradient(135deg, #47DA78 0%, #2BB05F 60%, #1F8C4A 100%);
    color: #ffffff;
    border-radius: var(--r-card-lg);
    padding: var(--space-72) var(--space-48);
    text-align: center;
    margin: 0 var(--space-20) var(--space-48);
    position: relative;
    overflow: hidden;
}

.cta-block::before,
.cta-block::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.cta-block::before {
    width: 380px;
    height: 380px;
    background: rgba(255, 255, 255, 0.28);
    top: -140px;
    right: -100px;
}

.cta-block::after {
    width: 320px;
    height: 320px;
    background: rgba(217, 255, 230, 0.4);
    bottom: -120px;
    left: -60px;
}

.cta-block__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.cta-block__title {
    font-size: var(--fs-hero);
    line-height: var(--lh-hero);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-20);
    letter-spacing: -0.025em;
}

.cta-block__text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: var(--space-32);
}

.cta-block__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-12);
    justify-content: center;
}

.cta-block .btn--ghost {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.cta-block .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: #ffffff;
}

.cta-block__caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--fs-body-sm);
    margin-top: var(--space-20);
}

.site-footer {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--c-border);
    padding: var(--space-48) 0 var(--space-32);
    color: var(--c-text-secondary);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-48);
    margin-bottom: var(--space-48);
}

.site-footer__brand-text {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--c-text-secondary);
    margin-top: var(--space-20);
    max-width: 380px;
}

.site-footer__col-title {
    color: var(--c-text);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body-sm);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: var(--space-20);
}

.site-footer__list {
    display: grid;
    gap: var(--space-12);
}

.site-footer__list a {
    color: var(--c-text-secondary);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
}

.site-footer__list a:hover {
    color: var(--c-accent-dark);
    text-decoration: none;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-20);
    padding-top: var(--space-32);
    border-top: 1px solid var(--c-border);
    font-size: var(--fs-body-sm);
}

.site-footer__lang {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    color: var(--c-text-secondary);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: var(--space-20);
    top: -100px;
    z-index: 200;
    background: var(--c-text);
    color: #ffffff;
    padding: 12px var(--space-20);
    border-radius: var(--r-pill);
    transition: top var(--transition-base);
}

.skip-link:focus {
    top: var(--space-20);
    text-decoration: none;
}

@media (max-width: 1100px) {
    .hero__stage {
        min-height: 580px;
    }
    .hero__inner {
        min-height: 580px;
        padding: var(--space-48);
    }
    .hero__quote {
        right: var(--space-32);
        bottom: var(--space-32);
    }
    .mood__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .mood__intro {
        grid-template-columns: 1fr;
        gap: var(--space-20);
    }
    .steps__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .benefit-card--wide,
    .benefit-card--half {
        grid-column: span 6;
    }
    .benefit-card {
        grid-column: span 6;
    }
    .feature {
        gap: var(--space-48);
    }
}

@media (max-width: 900px) {
    :root {
        --fs-hero: 34px;
        --lh-hero: 42px;
        --fs-title-lg: 28px;
        --lh-title-lg: 36px;
        --space-72: 56px;
        --space-96: 72px;
    }

    .site-nav__list {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        padding-top: var(--space-32);
        padding-bottom: var(--space-48);
    }

    .hero__stage {
        margin: 0 var(--space-20);
        min-height: 0;
    }

    
    .hero__media {
        position: relative;
        inset: auto;
        width: 100%;
        height: 320px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        padding: 0;
        min-height: 0;
    }

    .hero__photo {
        object-position: center 30%;
    }

    .hero__veil {
        background:
            linear-gradient(180deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0) 55%,
                rgba(255, 255, 255, 0.95) 80%,
                #ffffff 100%);
    }

    .hero__veil::after { display: none; }

    .hero__content {
        position: relative;
        max-width: 640px;
        margin: 0 auto;
        padding: var(--space-32) var(--space-20) var(--space-48);
        text-align: center;
    }

    .hero__cta {
        align-items: center;
    }

    .hero__cta-row {
        justify-content: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
        opacity: 1;
        color: var(--c-text-secondary);
    }

    .hero__meta {
        justify-content: center;
    }

    
    .hero__quote {
        position: absolute;
        left: var(--space-12);
        right: var(--space-12);
        bottom: var(--space-12);
        margin: 0;
        max-width: none;
        align-items: center;
    }

    
    .mood__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .mood-card {
        flex-direction: row;
    }

    .mood-card__media {
        width: 120px;
        flex-shrink: 0;
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .mood-card__media::after { display: none; }

    .mood-card__body {
        padding: var(--space-20);
        justify-content: center;
        gap: var(--space-4);
    }

    .mood-card__title {
        font-size: 17px;
        line-height: 24px;
    }

    .mood-card__text {
        font-size: 13px;
        line-height: 19px;
    }

    .trust-strip__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px var(--space-20);
    }

    .steps__head {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .steps__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: var(--space-32);
    }

    .feature {
        grid-template-columns: 1fr;
        gap: var(--space-32);
        padding: var(--space-48) 0;
        text-align: center;
    }

    .feature--reverse .feature__content {
        order: 0;
    }

    .feature__bullets {
        text-align: left;
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-card,
    .benefit-card--wide,
    .benefit-card--half {
        grid-column: span 12;
    }

    .benefit-card--wide .benefit-card__hero {
        grid-template-columns: 1fr;
        gap: var(--space-24);
        align-items: flex-start;
    }

    .benefit-card--wide .benefit-card__visual {
        display: none;
    }

    
    .testimonial-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "author"
            "stars"
            "quote";
        grid-template-rows: auto auto auto;
        column-gap: 0;
        row-gap: var(--space-20);
        padding: var(--space-32) var(--space-20);
    }

    .testimonial-card__author {
        flex-direction: row;
        align-items: center;
        gap: var(--space-12);
    }

    .testimonial-card__avatar {
        width: 56px;
        height: 56px;
    }

    .testimonial-card__stars {
        align-self: flex-start;
    }

    .testimonial-card__text {
        font-size: 17px;
        line-height: 26px;
    }

    .testimonials__cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .trust-contact__inner {
        grid-template-columns: 1fr;
        padding: var(--space-32);
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-32);
    }

    
    .site-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-12);
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px) saturate(180%);
        border-top: 1px solid var(--c-border);
        padding: var(--space-20);
        box-shadow: 0 24px 40px rgba(15, 32, 60, 0.08);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition-base), opacity var(--transition-base);
    }

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

    .site-nav.is-open .site-nav__list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-8);
    }

    .site-nav.is-open .site-nav__cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav.is-open .btn,
    .site-nav.is-open .btn-appstore {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    :root {
        --fs-hero: 30px;
        --lh-hero: 38px;
        --fs-title-lg: 26px;
        --lh-title-lg: 34px;
        --fs-title-md: 22px;
        --lh-title-md: 30px;
    }

    .container {
        padding-left: var(--space-20);
        padding-right: var(--space-20);
    }

    .section {
        padding-top: var(--space-72);
        padding-bottom: var(--space-72);
    }

    
    .hero__media {
        height: 240px;
    }

    .hero__title {
        font-size: 30px;
        line-height: 38px;
    }

    
    .hero__quote {
        padding: 10px 14px 10px 10px;
        gap: var(--space-8);
    }

    .hero__quote-avatar {
        width: 36px;
        height: 36px;
    }

    .hero__quote-text {
        font-size: 13px;
        line-height: 18px;
    }

    .mood-card__media {
        width: 104px;
    }

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

    .trust-strip__inner {
        grid-template-columns: 1fr 1fr;
    }

    .benefit-card__head {
        display: flex;
        align-items: center;
        gap: var(--space-12);
        margin-bottom: var(--space-12);
    }

    .benefit-card__head .benefit-card__icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .benefit-card__head .benefit-card__title {
        margin-bottom: 0;
    }

    .cta-block {
        padding: var(--space-48) var(--space-20);
        margin-left: 12px;
        margin-right: 12px;
    }

    .cta-block__title {
        font-size: 28px;
        line-height: 36px;
    }

    .feature__visual {
        padding: var(--space-20);
    }
}

@media (min-width: 1280px) {
    :root {
        --fs-hero: 56px;
        --lh-hero: 64px;
        --fs-hero-lg: 64px;
        --lh-hero-lg: 72px;
    }

    .hero__stage {
        min-height: 700px;
    }
    .hero__inner {
        min-height: 700px;
    }
}

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