/* PhotoEda landing — Sunset / Tomato редизайн.
   Палитра и токены сверены с дизайн-системой приложения (sunset-theme).
   Никаких внешних JS-зависимостей, только шрифты Onest + JetBrains Mono. */

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

:root {
    /* Sunset palette */
    --mandarin:    #FF7A1A;
    --mandarin-dp: #D54A00;
    --rose:        #E63F6D;
    --plum:        #8B2BB9;
    --coral:       #FF6A3D;
    --lemon:       #FFD27A;
    --butter:      #FFE17A;
    --peach:       #FFD9B3;
    --peach-soft:  #FFF0E0;

    /* Surfaces */
    --page:        #FFF3E9;
    --bg:          #FFF7ED;
    --surface:     #FFFFFF;
    --surface-2:   #FFFAF3;

    /* Text */
    --text:        #2B1607;
    --text-2:      #6E4A2C;
    --text-3:      #A6825C;

    /* Lines */
    --line:        rgba(60,25,10,0.08);
    --line-strong: rgba(60,25,10,0.14);

    /* Gradients */
    --grad-sunset: linear-gradient(135deg, #FFD27A 0%, #FFA24C 35%, #FF6A3D 65%, #E63F6D 100%);
    --grad-sunset-h: linear-gradient(90deg, #FFA24C 0%, #FF6A3D 50%, #E63F6D 100%);
    --grad-mandarin: linear-gradient(135deg, #FFB566 0%, #FF7A1A 100%);
    --grad-dusk: radial-gradient(120% 100% at 50% 0%, #FFD27A 0%, #FF7A3D 38%, #E63F6D 70%, #8B2BB9 100%);
    --grad-dawn: linear-gradient(180deg, #FFE3C7 0%, #FFD9B3 100%);

    /* Geometry */
    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 24px;
    --r-xl: 32px;

    --shadow-soft: 0 8px 24px -12px rgba(60,25,10,0.10), 0 2px 6px rgba(60,25,10,0.04);
    --shadow-card: 0 16px 40px -16px rgba(60,25,10,0.18), 0 2px 8px rgba(60,25,10,0.05);
    --shadow-glow: 0 16px 40px -12px rgba(255,106,61,0.45);

    --max: 1180px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--page);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Decorative warm grain on page bg */
body::before {
    content: '';
    position: fixed; inset: 0;
    background:
        radial-gradient(60% 40% at 100% 0%, rgba(255,210,122,0.35), transparent 60%),
        radial-gradient(50% 35% at 0% 100%, rgba(230,63,109,0.10), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

a {
    color: var(--mandarin-dp);
    text-decoration: none;
    transition: color .15s ease;
}
a:hover { color: var(--rose); }

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

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ─── Призывная полоса ───────────────────────────────────── */
.promo-bar {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; flex-wrap: wrap;
    padding: 10px 24px;
    background: var(--grad-sunset-h);
    color: #fff;
    font-size: 15px; font-weight: 600;
    text-align: center;
}
.promo-bar-badge {
    display: inline-flex; align-items: center;
    padding: 4px 14px; border-radius: 100px;
    background: #fff;
    color: var(--mandarin-dp);
    font-weight: 800; font-size: 15px; white-space: nowrap;
    letter-spacing: -0.2px;
    box-shadow: 0 2px 8px rgba(60,25,10,0.18);
}
@media (max-width: 560px) {
    .promo-bar { gap: 8px; padding: 9px 16px; font-size: 13.5px; }
    .promo-bar-badge { font-size: 13.5px; padding: 3px 12px; }
}

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255,243,233,0.75);
    border-bottom: 1px solid var(--line);
}
.site-header .container {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; padding-bottom: 14px;
}
.logo {
    font-size: 20px; font-weight: 700;
    color: var(--text); display: inline-flex; align-items: center; gap: 10px;
    letter-spacing: -0.3px;
}
.logo:hover { color: var(--text); }
.logo-mark {
    width: 36px; height: 36px;
    border-radius: 12px;
    background: var(--peach-soft);
    color: transparent; font-size: 0;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-soft), inset 0 0 0 1px var(--line);
}
.logo-mark svg { width: 24px; height: 24px; display: block; }
.nav { display: flex; gap: 6px; align-items: center; }
.nav a {
    color: var(--text-2);
    font-weight: 500; font-size: 14.5px;
    padding: 8px 14px; border-radius: 100px;
    transition: background .15s, color .15s;
}
.nav a:hover { background: var(--peach-soft); color: var(--mandarin-dp); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 60px 0 80px;
    background: var(--grad-dusk);
    color: #fff;
    overflow: hidden;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(40% 35% at 18% 30%, rgba(255,255,255,0.35), transparent 60%),
        radial-gradient(50% 50% at 92% 18%, rgba(255,239,176,0.45), transparent 60%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute; left: -10%; right: -10%; bottom: -1px;
    height: 64px;
    background: radial-gradient(60% 100% at 50% 100%, rgba(43,22,7,0.15), transparent 70%);
    pointer-events: none;
}
.hero .container { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 100px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
}
.hero-eyebrow .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #6EE7B7; box-shadow: 0 0 0 4px rgba(110,231,183,0.25);
    animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
    0%,100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero h1 {
    font-size: clamp(40px, 5.4vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.6px;
    margin-top: 18px;
    margin-bottom: 18px;
}
.hero h1 .accent {
    background: linear-gradient(135deg, #FFE17A 0%, #FFD27A 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    display: inline-block;
}
.hero .tagline {
    font-size: clamp(16px, 1.3vw, 18px);
    color: rgba(255,236,219,0.92);
    margin-bottom: 30px;
    max-width: 520px;
    line-height: 1.55;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--surface);
    color: var(--text);
    padding: 14px 22px;
    border-radius: 100px;
    font-weight: 600; font-size: 15px;
    border: 1px solid var(--line);
    cursor: pointer;
    transition: transform .15s, box-shadow .2s, background .15s;
    text-align: center;
    font-family: inherit;
    box-shadow: 0 8px 22px -10px rgba(60,25,10,0.25);
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(60,25,10,0.3);
    color: var(--text);
}
.btn-primary {
    background: var(--grad-sunset);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover { color: #fff; box-shadow: 0 18px 44px -12px rgba(255,106,61,0.65); }
.btn-ghost {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* ─── Hero side: phone mockup + tomato ───────────────────── */
.hero-side {
    position: relative;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tomato {
    position: absolute;
    z-index: 3;
    top: -10px; left: -10px;
    width: 130px; height: 130px;
    animation: tomatoBob 4s ease-in-out infinite;
    filter: drop-shadow(0 12px 24px rgba(60,25,10,0.35));
}
@keyframes tomatoBob {
    0%,100% { transform: translateY(0) rotate(-4deg); }
    50% { transform: translateY(-10px) rotate(4deg); }
}
.phone-mock {
    position: relative;
    width: 280px; height: 540px;
    background: #1A0B04;
    border-radius: 44px;
    padding: 8px;
    box-shadow:
        0 40px 80px -20px rgba(60,25,10,0.5),
        0 0 0 1px rgba(255,255,255,0.08) inset,
        0 1px 0 rgba(255,255,255,0.1) inset;
    transform: rotate(2deg);
    animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
    0%,100% { transform: rotate(2deg) translateY(0); }
    50% { transform: rotate(2deg) translateY(-6px); }
}
.phone-screen {
    width: 100%; height: 100%;
    border-radius: 36px;
    background: var(--grad-dusk);
    overflow: hidden;
    position: relative;
}
.phone-status {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 22px 6px;
    color: #fff; font-size: 11px; font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}
.phone-status .dots { display: inline-flex; gap: 4px; }
.phone-status .dots span {
    width: 4px; height: 4px; background: #fff; border-radius: 50%; opacity: 0.85;
}
.phone-greeting { padding: 18px 22px 4px; color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 500; }
.phone-greeting strong { color: #fff; font-weight: 700; }
.phone-ring {
    margin: 14px auto 0;
    width: 180px; height: 180px;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.phone-ring svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.phone-ring .label-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 32px; font-weight: 700; color: #fff;
    line-height: 1; letter-spacing: -1px;
}
.phone-ring .label-cap {
    color: rgba(255,255,255,0.7);
    font-size: 11px; margin-top: 4px; letter-spacing: 0.5px; text-transform: uppercase;
}
.phone-meals {
    margin: 18px 14px 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 12px;
    color: var(--text);
}
.phone-meal {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 6px;
}
.phone-meal + .phone-meal { border-top: 1px solid var(--line); }
.phone-meal-img {
    width: 40px; height: 40px; border-radius: 12px;
    background: var(--grad-mandarin);
    display: flex; align-items: center; justify-content: center; font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px -3px rgba(255,106,61,0.45);
}
.phone-meal-name { flex: 1; min-width: 0; }
.phone-meal-name b { display: block; font-size: 13px; font-weight: 600; }
.phone-meal-name span { font-size: 11px; color: var(--text-3); }
.phone-meal-kcal { font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700; color: var(--mandarin-dp); }

/* ─── Floating chips around phone ────────────────────────── */
.chip-float {
    position: absolute; z-index: 2;
    background: #fff;
    padding: 10px 14px;
    border-radius: 18px;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600;
    color: var(--text);
    box-shadow: 0 14px 32px -10px rgba(60,25,10,0.4);
    animation: chipFloat 5s ease-in-out infinite;
}
.chip-float .ico {
    width: 24px; height: 24px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.chip-1 { top: 80px; right: -20px; animation-delay: 0s; }
.chip-2 { bottom: 110px; left: -32px; animation-delay: 1.2s; }
.chip-3 { bottom: 24px; right: 4px; animation-delay: 2.4s; }
@keyframes chipFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ─── Sections ───────────────────────────────────────────── */
.section { padding: 80px 0; position: relative; }
.section-alt { background: var(--bg); }

.section-eyebrow {
    display: inline-block;
    font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--mandarin-dp);
    background: var(--peach-soft);
    padding: 6px 14px; border-radius: 100px;
    margin-bottom: 14px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-title {
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 700;
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 14px;
}
.section-title .accent {
    background: var(--grad-sunset-h);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-subtitle {
    font-size: 17px;
    color: var(--text-2);
    line-height: 1.55;
}

/* ─── About ──────────────────────────────────────────────── */
.about p {
    font-size: 17px;
    color: var(--text-2);
    margin-bottom: 18px;
    max-width: 760px;
    margin-left: auto; margin-right: auto;
    line-height: 1.7;
}
.about p strong { color: var(--text); font-weight: 600; }

.about-features {
    margin-top: 50px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.feature-card {
    padding: 26px 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-soft);
    transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.feature-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--peach-soft);
    color: var(--mandarin-dp);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 14px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.2px; }
.feature-card p { font-size: 14.5px; color: var(--text-2); line-height: 1.55; }

/* ─── Pricing ────────────────────────────────────────────── */
.pricing {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
    margin-top: 12px;
}
.plan {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 32px 26px;
    display: flex; flex-direction: column;
    transition: transform .2s, box-shadow .2s;
    box-shadow: var(--shadow-soft);
    position: relative;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.plan-featured {
    background: linear-gradient(180deg, #2B0E04 0%, #4A170A 100%);
    color: #fff;
    border: none;
    box-shadow: 0 30px 60px -20px rgba(60,25,10,0.45);
    transform: scale(1.03);
}
.plan-featured::after {
    content: '';
    position: absolute; right: 0; top: 0;
    width: 180px; height: 180px;
    background: radial-gradient(circle at 100% 0%, rgba(255,122,26,0.45), transparent 65%);
    pointer-events: none;
    border-top-right-radius: var(--r-xl);
}
.plan-featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--grad-sunset);
    color: #fff;
    padding: 6px 16px; border-radius: 100px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
    box-shadow: 0 10px 24px -8px rgba(255,106,61,0.6);
    z-index: 2;
}
.plan-name {
    font-size: 14px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--mandarin-dp);
    margin-bottom: 8px;
    position: relative; z-index: 1;
}
.plan-featured .plan-name { color: #FFD27A; }
.plan-desc {
    font-size: 14px; color: var(--text-3);
    margin-bottom: 22px; min-height: 42px;
    position: relative; z-index: 1;
}
.plan-featured .plan-desc { color: rgba(255,236,219,0.7); }
.plan-price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 44px; font-weight: 700;
    letter-spacing: -1.6px;
    margin-bottom: 4px;
    position: relative; z-index: 1;
    line-height: 1;
}
.plan-price small {
    font-family: 'Onest', sans-serif;
    font-size: 14px; font-weight: 500;
    color: var(--text-3);
    letter-spacing: 0;
}
.plan-featured .plan-price small { color: rgba(255,236,219,0.6); }
.plan-yearly {
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 22px;
    position: relative; z-index: 1;
}
.plan-yearly b { color: var(--mandarin-dp); font-weight: 700; }
.plan-featured .plan-yearly { color: rgba(255,236,219,0.7); }
.plan-featured .plan-yearly b { color: #FFD27A; }
.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
    position: relative; z-index: 1;
}
.plan-features li {
    padding: 10px 0;
    font-size: 14.5px;
    border-bottom: 1px solid var(--line);
    display: flex; align-items: center; gap: 10px;
}
.plan-featured .plan-features li { border-bottom: 1px solid rgba(255,236,219,0.12); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
    content: '';
    width: 18px; height: 18px;
    flex-shrink: 0;
    background: var(--peach-soft);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D54A00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}
.plan-featured .plan-features li::before {
    background-color: rgba(255,210,122,0.18);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD27A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.pricing-note {
    text-align: center;
    background: var(--peach-soft);
    color: var(--mandarin-dp);
    padding: 18px 24px;
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 14.5px;
    margin-top: 26px;
    border: 1px dashed var(--lemon);
}

/* ─── Steps ──────────────────────────────────────────────── */
.steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
    counter-reset: step;
}
.step {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 30px 26px;
    position: relative;
    transition: transform .2s, box-shadow .2s;
    box-shadow: var(--shadow-soft);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.step-number {
    width: 56px; height: 56px;
    background: var(--grad-sunset);
    color: #fff;
    border-radius: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700; font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px -8px rgba(255,106,61,0.5);
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
.step p { color: var(--text-2); font-size: 14.5px; line-height: 1.55; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-soft); }
.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    font-weight: 600; font-size: 16px;
    color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '';
    width: 32px; height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--peach-soft);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D54A00' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-a {
    padding: 0 24px 22px;
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.65;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: linear-gradient(180deg, #2B0E04 0%, #190704 100%);
    color: rgba(255,236,219,0.7);
    padding: 64px 0 28px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute; top: -1px; left: 0; right: 0;
    height: 4px;
    background: var(--grad-sunset-h);
}
.site-footer::after {
    content: '';
    position: absolute; right: -10%; top: 20%;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,122,26,0.18), transparent 65%);
    pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--lemon); }
.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: #fff;
    font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px;
    margin-bottom: 14px; font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 5px 0; font-size: 14.5px; }
.footer-col p { font-size: 14px; line-height: 1.6; margin-top: 14px; }
.site-footer .logo { color: #fff; }
.site-footer .logo:hover { color: var(--lemon); }
.footer-bottom {
    border-top: 1px solid rgba(255,236,219,0.08);
    padding-top: 22px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,236,219,0.5);
}
.footer-bottom a { color: rgba(255,236,219,0.7); }
.footer-bottom a:hover { color: var(--lemon); }

/* ─── Legal pages (offer / privacy / contacts) ──────────── */
.legal {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 24px;
    position: relative; z-index: 1;
}
.legal h1 {
    font-size: 36px; font-weight: 700;
    letter-spacing: -1px; margin-bottom: 12px;
}
.legal .legal-meta {
    color: var(--text-3);
    font-size: 14px; margin-bottom: 36px;
    padding-bottom: 24px; border-bottom: 1px solid var(--line);
}
.legal h2 {
    font-size: 22px; font-weight: 700;
    margin-top: 40px; margin-bottom: 14px;
    letter-spacing: -0.4px;
}
.legal h3 {
    font-size: 17px; font-weight: 600;
    margin-top: 24px; margin-bottom: 10px;
}
.legal p, .legal li {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-2);
    line-height: 1.7;
}
.legal ul, .legal ol { margin-left: 24px; margin-bottom: 18px; }
.legal li { margin-bottom: 8px; }

.legal table {
    width: 100%; border-collapse: collapse; margin: 18px 0;
    background: var(--surface);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.legal th, .legal td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: 15px;
}
.legal th {
    background: var(--peach-soft);
    color: var(--mandarin-dp);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px; letter-spacing: 0.8px;
}
.legal tbody tr:last-child td { border-bottom: none; }

.legal .placeholder {
    background: var(--butter);
    padding: 2px 8px;
    border-radius: 6px;
    color: #6B4500;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 600;
}

.contacts-block {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 24px 26px;
    margin: 22px 0;
    box-shadow: var(--shadow-soft);
}
.contacts-block dl {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 14px;
}
.contacts-block dt { font-weight: 600; color: var(--text); }
.contacts-block dd { color: var(--text-2); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 980px) {
    .hero { padding: 50px 0 60px; }
    .hero .container { grid-template-columns: 1fr; gap: 50px; }
    .hero-side { height: 460px; }
    .phone-mock { width: 240px; height: 460px; }

    .about-features, .pricing, .steps {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 640px) {
    .container { padding: 0 18px; }
    .nav { display: none; }
    .section { padding: 60px 0; }
    .hero { padding: 40px 0 60px; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; }
    .hero h1 { font-size: 38px; letter-spacing: -1.2px; }
    .hero-side { height: 420px; }
    .phone-mock { width: 220px; height: 420px; transform: rotate(0); animation: none; }
    .tomato { width: 100px; height: 100px; top: -8px; left: 8px; }
    .chip-float { font-size: 11px; padding: 8px 12px; }
    .chip-1 { right: 8px; }
    .chip-2 { left: 0; }

    .about-features, .pricing, .steps { grid-template-columns: 1fr; }
    .pricing { gap: 36px; }
    .plan-featured { transform: none; padding-top: 44px; }
    .plan-featured:hover { transform: translateY(-4px); }
    .plan-badge { top: 14px; }

    .footer-grid { grid-template-columns: 1fr; }
    .contacts-block dl { grid-template-columns: 1fr; gap: 4px; }
    .contacts-block dt { margin-top: 12px; }
}

/* ─── Blog ───────────────────────────────────────────────── */
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.blog-card {
    display: block;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    color: var(--text);
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: transform .2s, box-shadow .2s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    color: var(--text);
}
.blog-card-tag {
    display: inline-block;
    font-size: 12px; font-weight: 600;
    color: #D54A00;
    background: rgba(255,122,26,0.10);
    padding: 4px 10px; border-radius: 100px;
    letter-spacing: 0.3px; text-transform: uppercase;
}
.blog-card h3 {
    font-size: 20px; font-weight: 700;
    line-height: 1.3; margin: 14px 0 10px;
    color: var(--text);
}
.blog-card p {
    font-size: 15px; line-height: 1.55;
    color: var(--text-2); margin: 0;
}
.blog-card-meta {
    margin-top: 16px; font-size: 13px;
    color: var(--text-3);
}

/* Article page */
.article {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 8px;
}
.article-meta {
    color: var(--text-3); font-size: 14px;
    margin-bottom: 16px; display: flex; gap: 14px; flex-wrap: wrap;
}
.article-meta a { color: var(--text-2); }
.article h1 {
    font-size: 40px; font-weight: 800;
    line-height: 1.15; letter-spacing: -1px;
    margin: 0 0 20px;
}
.article-lead {
    font-size: 19px; line-height: 1.55;
    color: var(--text-2); margin: 0 0 36px;
}
.article h2 {
    font-size: 28px; font-weight: 700;
    margin: 48px 0 16px;
    line-height: 1.25; letter-spacing: -0.4px;
}
.article h3 {
    font-size: 21px; font-weight: 700;
    margin: 32px 0 12px;
    line-height: 1.3;
}
.article p {
    font-size: 17px; line-height: 1.65;
    color: var(--text); margin: 0 0 18px;
}
.article ul, .article ol {
    font-size: 17px; line-height: 1.65;
    margin: 0 0 22px; padding-left: 22px;
}
.article li { margin-bottom: 8px; }
.article a {
    color: #D54A00; text-decoration: underline;
    text-underline-offset: 3px;
}
.article a:hover { color: #B33A00; }
.article table {
    width: 100%; border-collapse: collapse;
    margin: 24px 0; font-size: 15px;
    background: var(--surface);
    border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.article th, .article td {
    padding: 12px 16px; text-align: left;
    border-bottom: 1px solid var(--line);
}
.article th {
    background: var(--surface-2); font-weight: 700;
    color: var(--text);
}
.article tr:last-child td { border-bottom: none; }
.article blockquote {
    margin: 24px 0; padding: 18px 22px;
    background: var(--surface-2);
    border-left: 4px solid #FF7A1A;
    border-radius: 8px;
    color: var(--text-2);
    font-size: 16px; line-height: 1.55;
}
.article-cta {
    margin: 48px 0; padding: 32px;
    background: var(--grad-dusk);
    border-radius: 24px;
    color: #fff; text-align: center;
}
.article-cta h3 { color: #fff; font-size: 24px; margin: 0 0 12px; }
.article-cta p { color: rgba(255,255,255,0.92); margin: 0 0 22px; font-size: 16px; }
.article-cta .btn-primary { background: #fff; color: #D54A00; }
.article-cta .btn-primary:hover { background: #FFE3C7; color: #D54A00; }

@media (max-width: 700px) {
    .article h1 { font-size: 30px; }
    .article-lead { font-size: 17px; }
    .article h2 { font-size: 24px; }
    .article-cta { padding: 24px; }
}


/* ─── CTA blocks ─────────────────────────────────────────── */
.cta-inline {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px 36px;
    box-shadow: var(--shadow-soft);
}
.cta-inline-text { flex: 1 1 280px; }
.cta-inline h3 {
    font-size: 22px; font-weight: 700;
    margin: 0 0 4px; color: var(--text);
    letter-spacing: -0.3px;
}
.cta-inline p {
    color: var(--text-2); font-size: 15px;
    margin: 0;
}
.cta-final {
    background: var(--grad-dusk);
    color: #fff;
    border-radius: 32px;
    margin: 0 24px 80px;
    padding: 80px 24px;
    text-align: center;
    position: relative; overflow: hidden;
    box-shadow: 0 32px 80px -24px rgba(60,25,10,0.45);
}
.cta-final::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(40% 35% at 18% 30%, rgba(255,255,255,0.30), transparent 60%),
        radial-gradient(50% 50% at 92% 18%, rgba(255,239,176,0.40), transparent 60%);
    pointer-events: none;
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 {
    font-size: clamp(32px, 4.4vw, 48px);
    font-weight: 700;
    line-height: 1.1; letter-spacing: -1.2px;
    margin: 0 0 18px;
}
.cta-final h2 .accent {
    background: linear-gradient(135deg, #FFE17A 0%, #FFD27A 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-final p {
    color: rgba(255,236,219,0.92);
    font-size: clamp(16px, 1.3vw, 18px);
    max-width: 560px; margin: 0 auto 32px;
    line-height: 1.55;
}
.cta-final .btn-primary {
    background: #fff; color: var(--mandarin-dp);
    font-size: 16px; padding: 16px 28px;
}
.cta-final .btn-primary:hover {
    background: var(--peach-soft); color: var(--mandarin-dp);
    box-shadow: 0 22px 48px -10px rgba(0,0,0,0.35);
}
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

@media (max-width: 700px) {
    .cta-inline { padding: 22px; }
    .cta-final { margin: 0 16px 60px; padding: 60px 20px; border-radius: 24px; }
    .cta-btns { flex-direction: column; align-items: stretch; }
}
