/* ===== NEW LANDING — extracted from new_main.tpl + new_index.tpl ===== */

/* ===== FONTS ===== */
@font-face {
    font-family: 'JetBrains Mono';
    src: url('/theme/site/fonts/JetBrainsMono-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('/theme/site/fonts/JetBrainsMono-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('/theme/site/fonts/JetBrainsMono-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('/theme/site/fonts/JetBrainsMono-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('/theme/site/fonts/JetBrainsMono-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-primary-yellow: #FFF6CF;
    --color-primary-pink: #FF5A96;
    --color-primary-pink-hover: #FF4080;
    --color-gradient-start: #FFF6CF;
    --color-gradient-mid-1: #FFE8F3;
    --color-gradient-mid-2: #FFC8E2;
    --color-gradient-end: #FFB0D5;
    --color-white: #FFFFFF;
    --color-text-primary: #1a1020;
    --color-text-secondary: #4a2f4e;
    --color-border: #e0e0e0;
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-header: 0 2px 10px rgba(0, 0, 0, 0.05);
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --z-header: 1000;
    --z-content: 10
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Gilroy', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 70px
}

@media (max-width: 767px) {
    body {
        padding-top: 60px
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm)
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: var(--shadow-header);
    z-index: var(--z-header)
}

.site-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: var(--spacing-md)
}

.site-header .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center
}

.site-header .logo-img {
    height: 40px;
    width: auto;
    display: block
}

.site-header .main-nav {
    flex: 1;
    display: flex;
    justify-content: center
}

.site-header .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    list-style: none;
    margin: 0;
    padding: 0
}

.site-header .nav-link {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 12px
}

.mobile-only {
    display: block
}

.desktop-only {
    display: none
}

@media (min-width: 768px) {
    .mobile-only {
        display: none
    }

    .desktop-only {
        display: block
    }
}

@media (max-width: 767px) {
    .site-header .header-content {
        height: 60px
    }

    .site-header .logo-img {
        height: 32px
    }
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: var(--spacing-xl) 0
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--color-gradient-start) 0%, var(--color-gradient-mid-1) 33%, var(--color-gradient-mid-2) 66%, var(--color-gradient-end) 100%)
}

.hero-content {
    position: relative;
    z-index: var(--z-content);
    display: grid;
    grid-template-columns:1fr;
    gap: var(--spacing-xl);
    align-items: center;
    width: 100%
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns:1fr 1fr
    }
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px
}

.btn-primary {
    background-color: var(--color-primary-pink);
    color: var(--color-white);
    font-size: 1.125rem
}

.btn-login {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-text-secondary)
}

*, *::before, *::after {
    box-sizing: border-box;
}

.lp-wrap {
    font-family: 'JetBrains Mono', monospace;
    color: #1a1020;
}

.lp-wrap a {
    text-decoration: none;
}

.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== HEADER (site-header overrides for new landing) ===== */
.site-header {
    background: rgba(255, 246, 207, 0.95) !important;
    backdrop-filter: blur(6px);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07) !important;
}

.site-header .header-content {
    height: 70px;
}

.site-header .logo svg {
    height: 48px;
    width: auto;
}

.site-header .nav-menu .nav-link {
    color: #555;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 8px 0;
    transition: color 0.2s;
}

.site-header .nav-menu .nav-link:hover {
    color: #FF5A96;
}

.site-header .nav-menu {
    gap: 2rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    margin-right: 0.5rem;
}

.header-phone:hover {
    color: #FF5A96;
}

.site-header .btn-login {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    background: rgba(255, 90, 150, 0.1);
    color: #FF5A96 !important;
    font-weight: 500;
    border: 1px solid rgba(255, 90, 150, 0.2) !important;
    transition: all 0.25s;
    font-size: 0.95rem;
    text-decoration: none;
}

.site-header .btn-login:hover {
    background: #FF5A96 !important;
    color: #fff !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* ===== HERO ===== */
.lp-hero {
    position: relative;
    padding-top: 7rem;
    padding-bottom: 0;
    overflow: hidden;
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FFF6CF 0%, #FFE8F3 40%, #FFC8E2 75%, #FFB0D5 100%);
}

.lp-hero__glow1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 224, 102, 0.45) 0%, transparent 68%);
}

.lp-hero__glow2 {
    position: absolute;
    bottom: 0;
    right: -120px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 90, 150, 0.22) 0%, transparent 65%);
}

.lp-hero__glow3 {
    position: absolute;
    top: 35%;
    left: 38%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 182, 214, 0.28) 0%, transparent 70%);
}

.lp-hero__sketch {
    position: absolute;
    pointer-events: none;
    user-select: none;
    display: none;
}

@media (min-width: 768px) {
    .lp-hero__sketch {
        display: block;
    }
}

@media (max-width: 1023px) {
    .lp-hero__sketch--lg {
        display: none !important;
    }
}

@media (max-width: 1279px) {
    .lp-hero__sketch--xl {
        display: none !important;
    }
}

.lp-hero__content {
    position: relative;
    z-index: 10;
}

.lp-hero__text {
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.lp-hero__h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin: 0 0 1.25rem;
    color: #1a1020;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .lp-hero__h1 {
        font-size: 3.75rem;
    }
}

.lp-hero__h1 span {
    color: #FF5A96;
}

.lp-hero__subtitle {
    font-size: 1.25rem;
    margin: 0 0 1.75rem;
    color: #2d1f2e;
}

.lp-hero__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.lp-hero__tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d1f2e;
}

.lp-hero__tag-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #FF5A96;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(255, 90, 150, 0.4);
}

.lp-hero__calc-wrap {
    position: relative;
    max-width: 32rem;
    margin: 0 auto;
}

.lp-hero__calc {
    position: relative;
    padding: 2rem 2rem 1.5rem;
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
}

.lp-hero__calc-title {
    font-size: 1.5rem;
    margin: 0 0 1.5rem;
    text-align: center;
    color: #1a1020;
    font-weight: 400;
}

.lp-hero__fade {
    height: 6rem;
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
}

@media (max-width: 640px) {
    .lp-hero__h1 {
        font-size: 2.5rem;
    }

    .lp-hero__subtitle {
        font-size: 1rem;
    }
}

/* ===== CALCULATOR FORM ===== */
.lp-calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.lp-calc-label {
    color: #2d1f2e;
    font-size: 1rem;
}

.lp-calc-val {
    font-size: 1.5rem;
    color: #FF5A96;
}

.lp-calc-minmax {
    display: flex;
    justify-content: space-between;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #5a3f5e;
}

.lp-calc-group {
    margin-bottom: 1.75rem;
}

.lp-btn-main {
    position: relative;
    width: 100%;
    padding: 1.25rem 1rem;
    border-radius: 1rem;
    overflow: hidden;
    border: none;
    background: linear-gradient(135deg, #FF2D78 0%, #FF5A96 50%, #FF2D78 100%);
    box-shadow: 0 4px 20px rgba(255, 45, 120, 0.55), 0 1px 4px rgba(255, 45, 120, 0.3);
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0;
}

.lp-btn-main:hover {
    box-shadow: 0 0 32px rgba(255, 45, 120, 0.7);
    transform: translateY(-1px);
}

.lp-btn-main span {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-family: inherit;
}

.lp-btn-main::before {
    content: '';
    position: absolute;
    inset-x: 0;
    top: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), transparent);
    border-radius: 1rem 1rem 0 0;
}

.lp-calc-disclaimer {
    font-size: 0.75rem;
    text-align: center;
    margin-top: 1rem;
    color: #5a3f5e;
}

/* ===== CALC INFO BLOCK ===== */
.lp-calc-info {
    margin-top: 1rem;
    font-size: 0.6rem;
    color: #5a3f5e;
    line-height: 1.5;
}

.lp-calc-info__line1 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.lp-calc-info__line2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.lp-calc-info__item {
    white-space: nowrap;
}

.lp-calc-info__item b {
    color: #1a1020;
    font-weight: 600;
}

.lp-calc-info__item--pink b {
    color: #FF5A96;
}

.lp-calc-info__item--warn {
    font-style: italic;
    color: #8a6a8e;
}

/* ===== CALC CHECKBOXES (custom, same style as modal) ===== */
.lp-calc-checks {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-top: 0.85rem;
    flex-wrap: nowrap;
    justify-content: center;
}

.lp-calc-check {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: #5a3f5e;
    cursor: pointer;
    flex: 1;
    min-width: 0;
    line-height: 1.3;
    user-select: none;
}

/* Hide native checkbox */
.lp-calc-check input[type="checkbox"],
.lp-calc-check input[type=checkbox] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Custom checkbox box */
.lp-calc-check__box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    min-width: 1rem;
    border: 1.5px solid rgba(255, 90, 150, 0.4);
    border-radius: 0.25rem;
    background: #fff;
    margin-top: 1px;
    flex-shrink: 0;
    transition: all 0.15s;
}

.lp-calc-check input:checked ~ .lp-calc-check__box {
    background: #FF5A96;
    border-color: #FF5A96;
}

.lp-calc-check input:checked ~ .lp-calc-check__box::after {
    content: '';
    display: block;
    width: 0.3rem;
    height: 0.55rem;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}

.lp-calc-check__link {
    color: #FF5A96;
    cursor: pointer;
}

/* ===== RANGE SLIDER ===== */
input[type=range].lp-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    background: linear-gradient(to right, #FF5A96 0%, #FF5A96 50%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.5) 100%);
}

input[type=range].lp-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FF5A96;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(255, 90, 150, 0.4);
    cursor: pointer;
}

input[type=range].lp-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FF5A96;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(255, 90, 150, 0.4);
    cursor: pointer;
}

/* ===== PHONE MODAL ===== */
.lp-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(26, 16, 32, 0.55);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lp-modal-overlay.is-open {
    display: flex;
}

.lp-modal {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    width: 100%;
    max-width: 26rem;
    position: relative;
    box-shadow: 0 24px 64px rgba(255, 90, 150, 0.18);
}

.lp-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #8a6a8e;
    padding: 0.25rem;
    line-height: 1;
}

.lp-modal__close:hover {
    color: #FF5A96;
}

.lp-modal__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1020;
    margin: 0 0 0.25rem;
    text-align: center;
}

.lp-modal__subtitle {
    font-size: 0.875rem;
    color: #5a3f5e;
    text-align: center;
    margin: 0 0 1.5rem;
}

.lp-modal__amount-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.lp-modal__amount-badge span {
    background: rgba(255, 90, 150, 0.1);
    color: #FF5A96;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.4rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 90, 150, 0.2);
}

.lp-modal__field {
    margin-bottom: 1rem;
}

.lp-modal__field label {
    display: block;
    font-size: 0.8rem;
    color: #5a3f5e;
    margin-bottom: 0.35rem;
}

.lp-modal__field input[type=text] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(255, 90, 150, 0.25);
    border-radius: 0.75rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
    font-family: inherit;
}

.lp-modal__field input[type=text]:focus {
    border-color: #FF5A96;
}

.lp-modal__field input[type=text].is-error {
    border-color: #e53e3e;
}

.lp-modal__field-error {
    font-size: 0.78rem;
    color: #e53e3e;
    margin-top: 0.25rem;
    display: none;
}

.lp-modal__agreement {
    margin-bottom: 1.25rem;
}

.lp-modal__agreement-main {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #2d1f2e;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.lp-modal__agreement-main input[type=checkbox] {
    margin-top: 2px;
    accent-color: #FF5A96;
    flex-shrink: 0;
}

.lp-modal__agreement-main a {
    color: #FF5A96;
}

.lp-modal__docs {
    font-size: 0.78rem;
    color: #8a6a8e;
    padding-left: 1.5rem;
}

.lp-modal__docs a, .lp-modal__docs div[onclick] {
    color: #FF5A96;
    cursor: pointer;
    display: block;
    margin-bottom: 0.2rem;
}

.lp-modal__submit {
    position: relative;
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    border: none;
    background: linear-gradient(135deg, #FF2D78 0%, #FF5A96 50%, #FF2D78 100%);
    box-shadow: 0 4px 16px rgba(255, 45, 120, 0.45);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.lp-modal__submit:hover {
    box-shadow: 0 0 28px rgba(255, 45, 120, 0.65);
    transform: translateY(-1px);
}

.lp-modal__submit span {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.lp-modal__submit::before {
    content: '';
    position: absolute;
    inset-x: 0;
    top: 0;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), transparent);
    border-radius: 1rem 1rem 0 0;
}

.lp-modal__submit.loading {
    opacity: 0.7;
    pointer-events: none;
}

.lp-modal__error {
    font-size: 0.85rem;
    color: #e53e3e;
    text-align: center;
    margin-top: 0.75rem;
    display: none;
}

/* ===== ADVANTAGES ===== */
.lp-adv {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.lp-adv__bg {
    position: absolute;
    inset: 0;
    background: #fff;
}

.lp-adv__bg2 {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    pointer-events: none;
    background: radial-gradient(circle at 10% 20%, #FFF6CF 0%, transparent 40%), radial-gradient(circle at 90% 80%, #FFE8F3 0%, transparent 40%);
}

.lp-adv__content {
    position: relative;
    z-index: 10;
}

.lp-section-head {
    text-align: center;
    margin-bottom: 4rem;
}

.lp-section-head h2 {
    font-size: 2.5rem;
    margin: 0 0 1rem;
    color: #1a1020;
    font-weight: 700;
}

.lp-section-head h2 span {
    color: #FF5A96;
}

.lp-section-head p {
    font-size: 1.1rem;
    max-width: 42rem;
    margin: 0 auto;
    color: #5a3f5e;
}

.lp-adv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.lp-adv__card {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 2px solid transparent;
    transition: all 0.3s;
    overflow: hidden;
}

.lp-adv__card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(255, 90, 150, 0.12);
    border-color: rgba(255, 90, 150, 0.2);
}

.lp-adv__icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: #FFF6CF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lp-adv__icon img {
    max-width: 2.2rem;
    max-height: 2.2rem;
}

.lp-adv__icon--bill img {
    transform: rotate(12deg);
}

.lp-adv__card h3 {
    font-size: 1.25rem;
    margin: 0 0 0.75rem;
    color: #1a1020;
    font-weight: 600;
}

.lp-adv__card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a3f5e;
    margin: 0;
}

.lp-adv__sketch-bg {
    position: absolute;
    right: -1rem;
    top: -1rem;
    opacity: 0.07;
    transform: scale(1.5) rotate(12deg);
    transition: opacity 0.3s;
    pointer-events: none;
}

.lp-adv__card:hover .lp-adv__sketch-bg {
    opacity: 0.15;
}

@media (max-width: 900px) {
    .lp-adv__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .lp-adv__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== HOW IT WORKS ===== */
.lp-how {
    padding: 5rem 0;
    background: #fff;
}

.lp-how__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.lp-how__card {
    position: relative;
    background: linear-gradient(135deg, #FFF6CF 0%, #fff 100%);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s;
}

.lp-how__card:hover {
    box-shadow: 0 8px 32px rgba(255, 90, 150, 0.15);
}

.lp-how__num {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #FF5A96;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 90, 150, 0.4);
}

.lp-how__icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lp-how__card h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: #1a1020;
    font-weight: 600;
}

.lp-how__card p {
    font-size: 0.95rem;
    color: #5a3f5e;
    margin: 0;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .lp-how__card-wrap {
        position: relative;
    }

    .lp-how__card-wrap:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 4rem;
        left: 60%;
        width: 80%;
        height: 2px;
        background: linear-gradient(to right, #FF5A96, #FFB6D6);
    }
}

.lp-how__cta {
    text-align: center;
}

.lp-how__cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 1rem;
    background: #FF5A96;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(255, 90, 150, 0.4);
}

.lp-how__cta-btn:hover {
    background: #FF2D78;
    box-shadow: 0 6px 24px rgba(255, 90, 150, 0.6);
    transform: translateY(-1px);
    color: #fff;
}

@media (max-width: 700px) {
    .lp-how__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CONDITIONS ===== */
.lp-cond {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.lp-cond__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #fff 0%, #FFF6CF 100%);
}

.lp-cond__content {
    position: relative;
    z-index: 10;
}

.lp-cond__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.lp-cond__card-white {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 2.5rem;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(255, 224, 102, 0.15);
    border: 2px solid #fff;
    overflow: hidden;
}

.lp-cond__card-pink {
    position: relative;
    background: #FF5A96;
    border-radius: 2.5rem;
    padding: 2.5rem;
    box-shadow: 0 30px 60px rgba(255, 90, 150, 0.25);
    color: #fff;
    overflow: hidden;
}

.lp-cond__card-title {
    font-size: 1.5rem;
    margin: 0 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.lp-cond__card-title-bar {
    width: 4px;
    height: 2rem;
    background: #FF5A96;
    border-radius: 2px;
    flex-shrink: 0;
}

.lp-cond__card-pink .lp-cond__card-title-bar {
    background: rgba(255, 255, 255, 0.4);
}

.lp-cond__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 90, 150, 0.1);
    margin-bottom: 1rem;
}

.lp-cond__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.lp-cond__item-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8a6a8e;
    margin-bottom: 0.25rem;
}

.lp-cond__item-val {
    font-size: 1.4rem;
    color: #1a1020;
    font-weight: 600;
}

.lp-cond__item-val--pink {
    color: #FF5A96;
}

.lp-cond__req-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lp-cond__req-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-cond__req-icon img {
    width: 1.1rem;
    height: 1.1rem;
}

.lp-cond__card-star {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    opacity: 0.7;
    pointer-events: none;
}

.lp-cond__req-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.lp-cond__req-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

.lp-cond__example {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    border-radius: 2rem;
    padding: 2.5rem;
    border: 2px solid #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.lp-cond__example-badge {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background: #FFF6CF;
    padding: 0.4rem 2rem;
    border-radius: 2rem;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1020;
    white-space: nowrap;
}

.lp-cond__example-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.lp-cond__example-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8a6a8e;
    margin-bottom: 0.5rem;
}

.lp-cond__example-val {
    font-size: 1.75rem;
    font-weight: 700;
}

.lp-cond__example-val--pink {
    color: #FF5A96;
}

.lp-cond__example-val--green {
    color: #22c55e;
}

.lp-cond__example-val--dark {
    color: #1a1020;
}

.lp-cond__example-note {
    text-align: center;
    font-size: 0.78rem;
    color: #5a3f5e;
    margin-top: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .lp-cond__grid {
        grid-template-columns: 1fr;
    }

    .lp-cond__example-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== FAQ ===== */
.lp-faq {
    padding: 5rem 0;
    background: #fff;
}

.lp-faq__list {
    max-width: 750px;
    margin: 0 auto;
}

.lp-faq__item {
    background: linear-gradient(to right, rgba(255, 246, 207, 0.5), #fff);
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 2px solid transparent;
    margin-bottom: 1rem;
    transition: border-color 0.2s;
}

.lp-faq__item:hover {
    border-color: rgba(255, 90, 150, 0.3);
}

.lp-faq__q {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    color: #1a1020;
    font-family: inherit;
}

.lp-faq__q-text {
    padding-right: 1rem;
    font-weight: 500;
}

.lp-faq__chevron {
    width: 1.5rem;
    height: 1.5rem;
    color: #FF5A96;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.lp-faq__item.is-open .lp-faq__chevron {
    transform: rotate(180deg);
}

.lp-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.lp-faq__item.is-open .lp-faq__a {
    max-height: 300px;
}

.lp-faq__a-inner {
    padding: 0 1.5rem 1.25rem;
    color: #5a3f5e;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== QUESTIONS SECTION ===== */
.lp-questions {
    padding: 4rem 0;
    background: #FFF6CF;
}

.lp-questions__inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.lp-questions h2 {
    font-size: 2rem;
    margin: 0 0 1rem;
    color: #1a1020;
    font-weight: 700;
}

.lp-questions__text {
    color: #5a3f5e;
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== FOOTER (site-footer overrides for new landing) ===== */
.site-footer {
    background: linear-gradient(to bottom, #FFF6CF, #FFE8F3) !important;
    padding: 4rem 0 !important;
}

.site-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.site-footer .footer-column-title {
    font-size: 1.125rem;
    font-weight: 400;
    margin: 0 0 1rem;
    color: #1a1020;
}

.site-footer .footer-company-description {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer .footer-link {
    color: #4b5563;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer .footer-link:hover {
    color: #FF5A96;
}

.site-footer .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.site-footer .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #4b5563;
    font-size: 0.875rem;
}

.site-footer .footer-contact-icon {
    color: #FF5A96;
    flex-shrink: 0;
    margin-top: 2px;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
}

.site-footer .footer-contact-link {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer .footer-contact-link:hover {
    color: #FF5A96;
}

.site-footer .footer-bottom {
    border-top: 1px solid #d1d5db;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer .footer-legal-text {
    font-size: 0.8rem;
    color: #4b5563;
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.site-footer .footer-legal-link {
    color: #FF5A96;
}

.site-footer .footer-copyright p {
    font-size: 0.875rem;
    color: #4b5563;
    margin: 0;
}

@media (max-width: 900px) {
    .site-footer .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .site-footer .footer-content {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-bottom {
        flex-direction: column;
    }
}
