/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2D2A26;
    --color-secondary: #8B7355;
    --color-accent: #C4A77D;
    --color-light: #F8F6F3;
    --color-white: #FFFFFF;
    --color-text: #4A4A4A;
    --color-text-light: #7A7A7A;
    --color-border: #E8E4DF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Burger & Slide-out menu ===== */
.burger-btn {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.burger-line {
    width: 20px;
    height: 2px;
    background: #A0522D;
    display: block;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.menu-overlay.is-open {
    display: block;
}

.slide-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    padding: 80px 32px 32px;
    display: flex;
    flex-direction: column;
}

.slide-menu.active {
    transform: translateX(0);
}

.slide-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: #2C1810;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-menu-close:hover {
    color: #A0522D;
}

.slide-menu-logo {
    font-size: 18px;
    font-weight: 600;
    color: #2C1810;
    text-decoration: none;
    margin-bottom: 40px;
}

.slide-menu-logo:hover {
    color: #A0522D;
}

.slide-menu-link {
    font-size: 16px;
    font-weight: 500;
    color: #2C1810;
    text-decoration: none;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.1);
}

.slide-menu-link:hover {
    color: #A0522D;
}

.slide-menu-link--active {
    color: #A0522D;
    font-weight: 600;
}

h1, h2, h3 {
    color: var(--color-primary);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: #1a1815;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero .btn-primary {
    background: #2F2F2F;
    color: #fff;
    border: none;
}

.hero .btn-primary:hover {
    background: #3a3a3a;
    transform: none;
}

.btn-secondary {
    background: var(--color-light);
    color: var(--color-primary);
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-white);
    border-color: var(--color-secondary);
}

.btn-full {
    width: 100%;
}

/* Hero Section — начинается с самого верха (без header) */
.hero {
    background: linear-gradient(180deg, #F8F6F3 0%, rgba(45,90,74,0.10) 55%, rgba(45,90,74,0.22) 100%);
    padding: 60px 0 80px;
    overflow: hidden;
    position: relative;
    min-height: 600px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-mountains {
    position: absolute;
    right: -80px;
    top: 0;
    width: 60%;
    height: 100%;
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,1) 60%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,1) 60%);
}

.hero-decor {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 167, 125, 0.15) 0%, transparent 70%);
}

.hero-decor-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.hero-decor-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, rgba(74, 139, 111, 0.1) 0%, transparent 70%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-text h1 {
    margin-bottom: 16px;
    font-size: 3rem;
}

.hero-author-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-ig-link {
    display: inline-block;
    line-height: 0;
}

.hero-ig-link:hover {
    opacity: 0.9;
}

.hero-ig-icon {
    height: 48px;
    width: auto;
    margin-left: -16px;
    object-fit: contain;
}

.hero-author {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 0;
    font-weight: 600;
}

.hero-badge,
a.hero-badge:hover,
a.hero-badge:focus,
a.hero-badge:visited {
    text-decoration: none !important;
}

.hero-badge {
    display: inline-block;
    background: #2D5A4A;
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.hero-badge:hover {
    color: #fff;
}

.hero-topics {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-topics li {
    background: var(--color-light);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    font-size: 0.95rem;
    border-left: 3px solid var(--color-accent);
}

.hero-topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

/* Flip card container */
.flip-card.hero-topic-card {
    position: relative;
    width: 100%;
    height: 160px;
    cursor: pointer;
    border-radius: var(--radius-md);
    perspective: 800px;
    overflow: hidden;
}
.flip-card.hero-topic-card:hover .flip-card-front,
.flip-card.hero-topic-card:focus-within .flip-card-front {
    border-color: var(--color-secondary);
    box-shadow: 0 4px 16px rgba(45, 90, 74, 0.12);
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}
.flip-card.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    backface-visibility: hidden;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light) 100%);
    border: 2px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(45, 90, 74, 0.05);
}
.flip-card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    text-align: center;
}
.flip-card-back {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    transform: rotateY(180deg);
    background: #FAF9F7;
    border: 2px solid var(--color-border);
    box-shadow: none;
    font-size: 1.05rem;
    line-height: 1.35;
    font-weight: 600;
    color: #2D5A4A;
    text-align: center;
}
.flip-card-back-text {
    position: relative;
    z-index: 1;
    max-width: 100%;
}
/* Мозаика: 1 и 4 — светлые, 2 и 3 — тёмно-зелёные */
.hero-topics-grid .flip-card:nth-child(1) .flip-card-back {
    background: #FAF9F7;
    color: #2D5A4A;
}
.hero-topics-grid .flip-card:nth-child(2) .flip-card-back {
    background: #2D5A4A;
    color: #fff;
    overflow: hidden;
}
.hero-topics-grid .flip-card:nth-child(2) .flip-card-back-text {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
}
.hero-topics-grid .flip-card:nth-child(3) .flip-card-back {
    background: #2D5A4A;
    color: #fff;
}
.hero-topics-grid .flip-card:nth-child(4) .flip-card-back {
    background: #FAF9F7;
    color: #2D5A4A;
}
/* Только «Аудит блога»: текст сверху по центру, гора по центру буллета */
.hero-topics-grid .flip-card:nth-child(1) .flip-card-back {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
.hero-topics-grid .flip-card:nth-child(1) .flip-card-back-text {
    flex-shrink: 0;
    text-align: center;
}
.hero-topics-grid .flip-card:nth-child(1) .flip-card-back-icon {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
.flip-card-back-icon {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 0;
}
.flip-card-back-icon .flip-card-back-image {
    width: 208px;
    height: auto;
    display: block;
    object-fit: contain;
}
.hero-topics-grid .flip-card:nth-child(2) .flip-card-back-reels-mountain {
    display: none;
}

.hero-topic-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    color: var(--color-secondary);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-topic-card h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.3;
}

/* Плитка «Аудит блога»: бейдж «нажми» и cursor:pointer */
.hero-topics-grid .flip-card.hero-topic-card:nth-child(1) {
    cursor: pointer;
}
/* Плашка «нажми»: минималистичная, светло-бежевая с переливом */
.hero-topics-grid .flip-card:nth-child(1) .hero-topic-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #5C4F42;
    background: linear-gradient(135deg, #F7F3ED 0%, #EDE4D8 25%, #F5EEE4 50%, #EDE4D8 75%, #F7F3ED 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(180, 160, 130, 0.2);
    pointer-events: none;
    animation: hero-badge-shimmer 4s ease-in-out infinite;
}
@keyframes hero-badge-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
/* На десктопе плашка на «Разбор рилсов» скрыта (на мобилке показывается в медиа-запросе) */
.hero-topics-grid .flip-card:nth-child(2) .hero-topic-badge.hero-topic-badge--reels-mobile {
    display: none;
}

/* Пальчик «нажми» на карточке «План роста» (справа) */
.hero-topic-tap-hint {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 22px;
    height: 22px;
    color: var(--color-secondary);
    opacity: 0.85;
    pointer-events: none;
}
.hero-topic-tap-hint--left {
    right: auto;
    left: 10px;
}
.hero-topic-tap-hint svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-topic-details {
    display: none;
    margin-bottom: 24px;
    padding: 24px 48px 24px 24px;
    background: linear-gradient(135deg, #F8F6F3 0%, #F0EDE8 100%);
    border: 1px solid rgba(139, 115, 85, 0.25);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 12px rgba(45, 90, 74, 0.06);
    position: relative;
}
.hero-topic-details.is-open {
    display: block;
    animation: heroDetailsFade 0.25s ease;
}
@keyframes heroDetailsFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.hero-topic-details-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.hero-topic-details-close:hover {
    background: var(--color-white);
}
.hero-topic-details-title {
    margin: 0 0 16px 0;
    font-size: 1.25rem;
    color: var(--color-primary);
}
.hero-topic-details-list {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}
.hero-topic-details-list li {
    position: relative;
    padding-left: 12px;
    margin-bottom: 8px;
    color: var(--color-text);
    line-height: 1.5;
}
.hero-topic-details-list li::before {
    content: "•";
    position: absolute;
    left: -8px;
    color: var(--color-secondary);
    font-weight: bold;
}

.hero-intro-pill {
    margin-bottom: 40px;
}

.hero-intro {
    font-size: 1.35rem;
    color: var(--color-text);
    margin-bottom: 0;
    line-height: 1.7;
    font-weight: 600;
}

.hero-time-pill {
    display: inline;
    background: #2F2F2F;
    color: #fff;
    font-size: inherit;
    line-height: inherit;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 999px;
    margin-right: 4px;
}

.hero-intro .about-badge {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    vertical-align: baseline;
}

.hero-help {
    background: var(--color-light);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 32px;
    border-left: 4px solid var(--color-accent);
}

.hero-help h3 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.hero-help-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-help-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.hero-help-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.1rem;
}

.hero-eyebrow {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
    text-transform: none;
    font-weight: 500;
}

.hero-proofline {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-help-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 12px;
    line-height: 1.5;
}

.hero-cta-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 16px;
    text-align: center;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    display: inline-block;
}

.hero-image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid rgba(196, 167, 125, 0.4);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.hero-image img {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(45, 90, 74, 0.2), 0 8px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    z-index: 1;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(196, 167, 125, 0.3) 0%, rgba(139, 115, 85, 0.2) 100%);
    border-radius: 50%;
    z-index: 0;
}


/* Hero Urgency & Countdown */
.hero-urgency {
    margin: 32px 0;
    padding: 24px;
    background: linear-gradient(135deg, rgba(196, 167, 125, 0.1) 0%, rgba(139, 115, 85, 0.05) 100%);
    border-radius: var(--radius-md);
    border: 2px solid rgba(196, 167, 125, 0.2);
}

.urgency-label {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 4px;
}

/* Hero Price */
.hero-price {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0 8px;
}

.price-old {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-decoration: line-through;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.btn-large {
    font-size: 1.125rem;
    padding: 18px 36px;
}

/* Who Am I Section */
.who-am-i {
    padding: 80px 0 40px;
    background: var(--color-white);
}

.who-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
}

.who-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.who-text h2 {
    margin-bottom: 16px;
    text-align: left;
}

.who-lead {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* About Highlights */
.about-badge {
    display: inline-block;
    background: #2D5A4A;
    color: var(--color-white);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    white-space: normal;
    line-height: 1.4;
}

.who-tag {
    display: inline-block;
    background: rgba(248, 246, 243, 0.8);
    color: var(--color-primary);
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(139, 115, 85, 0.35);
    white-space: nowrap;
    vertical-align: middle;
    margin-left: 8px;
}

.who-metrics {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.who-metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--color-light);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent);
}

.who-metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.who-metric-label {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-top: 8px;
}

.who-metric-clickable {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.who-metric-clickable:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 90, 74, 0.25);
}

.who-metric-clickable:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}

.proof-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
    background: #F8F6F3;
    border: 1px solid #C4A77D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B7355;
    box-shadow: 0 2px 4px rgba(139, 115, 85, 0.15);
}

.proof-icon {
    width: 14px;
    height: 14px;
}

.who-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.who-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.who-point-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.who-point strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-primary);
}

.who-point p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Problems Section */
.problems {
    padding: 40px 0 100px;
    background: linear-gradient(180deg, var(--color-white) 0%, #F5F3EF 100%);
    position: relative;
    overflow: hidden;
}

.problems-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.problems-mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
}

.problems .container {
    position: relative;
    z-index: 1;
}

.problems-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--color-text-light);
    margin-top: 12px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.problem-portrait {
    text-align: center;
    padding: 40px 20px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(45, 90, 74, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-portrait:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(45, 90, 74, 0.12);
}

.portrait-photo-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 28px;
}

.portrait-photo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 167, 125, 0.2) 0%, rgba(196, 167, 125, 0.05) 50%, transparent 70%);
    z-index: 0;
}

.portrait-photo {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-light);
    box-shadow: 0 8px 24px rgba(45, 42, 38, 0.15);
    z-index: 1;
    background: var(--color-white);
}

.portrait-photo::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px solid rgba(196, 167, 125, 0.3);
    pointer-events: none;
}

.portrait-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portrait-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.portrait-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

/* Requests Section */
.requests {
    padding: 48px 0 40px;
    margin-bottom: 28px;
    background: var(--color-white);
}

.requests h2 {
    text-align: center;
    margin-bottom: 24px;
}

.requests-accordion {
    max-width: 800px;
    margin: 0 auto 20px;
}

.requests-item {
    background: var(--color-light);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.requests-item:hover {
    box-shadow: var(--shadow-sm);
}

.requests-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    user-select: none;
}

.requests-question h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--color-primary);
    font-weight: 600;
}

.requests-chevron {
    flex-shrink: 0;
    margin-left: 16px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.requests-chevron svg {
    width: 16px;
    height: 16px;
}

.requests-item.active .requests-chevron {
    transform: rotate(180deg);
}

.requests-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.requests-item.active .requests-answer {
    max-height: 300px;
    opacity: 1;
}

.requests-answer p {
    padding: 0 24px 24px;
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 1.05rem;
}

.requests-note {
    text-align: center;
    font-size: 1rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Solution Section */
.solution {
    padding: 48px 0 40px;
    background: var(--color-light);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.solution-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.solution-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.solution-card p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

.solution-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--color-white);
}

.about h2 {
    text-align: left;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-lead {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 32px;
    line-height: 1.5;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.about-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-point-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 90, 74, 0.08) 0%, rgba(196, 167, 125, 0.1) 100%);
    border-radius: 12px;
}

.about-icon-svg {
    width: 40px;
    height: 40px;
}

.about-point strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-primary);
}

.about-point p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
}

.about-social {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--color-light);
    color: var(--color-primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: var(--color-border);
}

/* Journey Timeline Section */
.journey {
    padding: 48px 0 40px;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light) 100%);
    position: relative;
    overflow: hidden;
}

.journey::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(196, 167, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 115, 85, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.journey .container {
    position: relative;
    z-index: 1;
}

.journey-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: -24px;
    margin-bottom: 24px;
}

.timeline-collapsible {
    overflow: visible;
}

.timeline {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 20px 16px 20px;
    margin: 0 -20px 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.timeline::before {
    content: none;
}

.timeline-item {
    position: relative;
    flex: 0 0 auto;
    width: 320px;
    min-width: 320px;
    max-width: 360px;
    padding: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    border-radius: var(--radius-md);
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    z-index: 1;
}

.timeline-item:last-child {
    margin-right: 20px;
}

/* Фиксированная зона иконки — не прыгает */
.timeline-marker-wrap {
    flex: 0 0 auto;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.timeline-marker {
    position: relative;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    margin: 0;
    flex-shrink: 0;
    background: var(--color-white);
    border: 3px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.timeline-icon {
    font-size: 2rem;
}

.timeline-icon-svg {
    width: 48px;
    height: 48px;
    display: block;
}

.timeline-highlight .timeline-marker {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.timeline-highlight .timeline-icon {
    filter: brightness(0) invert(1);
}

.timeline-highlight .timeline-icon-svg {
    /* Цветные иконки остаются без изменений */
}

.timeline-content {
    background: transparent;
    padding: 0 20px 16px;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.timeline-content:hover {
    transform: none;
    box-shadow: none;
}

.timeline-highlight .timeline-content {
    background: transparent;
    color: var(--color-white);
}

.timeline-highlight.timeline-item {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
}

.timeline-highlight .timeline-content h3,
.timeline-highlight .timeline-content p,
.timeline-highlight .timeline-date {
    color: var(--color-white);
}

.timeline-highlight .timeline-proof-content {
    border-top-color: rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.1);
}

.timeline-date {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-secondary);
    margin-bottom: 8px;
    min-height: 1.5em;
    line-height: 1.5;
}

.timeline-content h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
    min-height: 2.8em;
    line-height: 1.35;
    display: flex;
    align-items: center;
}

.timeline-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    min-height: 4.5em;
}

/* Clickable Timeline Items */
.timeline-clickable {
    cursor: pointer;
}

.timeline-click-hint {
    display: none;
}

.timeline-clickable:hover .timeline-click-hint {
    transform: scale(1.15);
    background: var(--color-secondary);
}

.timeline-clickable.active .timeline-click-hint svg path:last-child {
    transform: rotate(45deg);
    transform-origin: center;
}

.proof-hint {
    display: none;
}

@keyframes pulse-hint {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.timeline-clickable.active .proof-hint {
    display: none;
}

/* Timeline Proof — всегда открыт в горизонтальном таймлайне */
.timeline-proof {
    display: block;
    margin-top: 0;
    overflow: hidden;
    order: -1;
}

.timeline-proof.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Десктоп: зона с картинкой в таймлайне выше (мобилку не трогаем) */
.timeline-proof-content {
    background: rgba(196, 167, 125, 0.18);
    border-radius: var(--radius-sm);
    padding: 10px;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(45, 90, 74, 0.08);
    position: relative;
    aspect-ratio: 3 / 4;
    max-height: 276px;
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-proof-content img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    display: block;
}

/* Буллеты 1, 6, 7, 8: фото на всю ширину, заполнение рамки, скругление без подложки */
.timeline-proof-fill .timeline-proof-content {
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: none;
    background: transparent;
}

.timeline-proof-fill .timeline-proof-content img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* Четвёртый буллет: прижимаем к верху + лёгкое приближение, чтобы убрать чёрные поля */
#proof-brands .timeline-proof-content img {
    object-position: 50% 0%;
    transform: scale(1.03);
}

/* Пятый буллет: прижимаем картинку к верху */
#proof-milestone .timeline-proof-content img {
    object-position: 50% 30%;
}

/* Седьмой буллет: фото опущено ~10%, видна надпись Vibes */
#proof-monetize .timeline-proof-content img {
    object-position: 50% 10%;
}

/* Восьмой буллет: фото поднято на 10% вверх */
#proof-now .timeline-proof-content img {
    object-position: 50% 40%;
}

.timeline-proof-content .proof-close {
    display: none;
}

.proof-close:hover {
    background: var(--color-border);
}

.proof-caption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 12px;
    font-style: italic;
}

/* Timeline Collapse Controls - REMOVED */

.journey-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.journey-stat {
    text-align: center;
}

.journey-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.journey-stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 8px;
}

/* Brand Partnerships Section */
.brands {
    padding: 100px 0;
    background: linear-gradient(180deg, #F5F3EF 0%, var(--color-white) 100%);
}

.brands-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-top: -24px;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.brand-card {
    background: var(--color-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.brand-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(196, 167, 125, 0.1) 0%, rgba(139, 115, 85, 0.05) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 2px dashed rgba(196, 167, 125, 0.3);
}

.brand-placeholder p {
    color: var(--color-text-light);
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.5;
}

.brand-card h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.brand-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--color-light);
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content h3 {
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.step-content p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.step-arrow {
    font-size: 2rem;
    color: var(--color-accent);
    font-weight: 300;
    flex-shrink: 0;
}

.how-it-works-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 48px 0 40px;
    background: var(--color-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-light);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--color-primary);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Formats Section */
.formats {
    padding: 48px 0 40px;
    background: var(--color-light);
}

/* Price Row with Badge */
.price-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.price-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-badge {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(196, 167, 125, 0.2);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    top: -4px;
    white-space: nowrap;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.format-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.format-featured {
    border: 2px solid var(--color-accent);
    position: relative;
}

.format-badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.format-card h3 {
    margin-bottom: 16px;
}

.format-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.format-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.format-price-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.format-price-old {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-decoration: line-through;
}

.format-urgency {
    background: linear-gradient(135deg, rgba(196, 167, 125, 0.1) 0%, rgba(139, 115, 85, 0.05) 100%);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    border-left: 3px solid var(--color-accent);
}

.format-urgency p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 500;
}

.format-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.format-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-text);
}

.format-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.format-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-style: italic;
}

.format-price-discount {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.format-payment-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.formats-grid-one {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.formats-promo-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a1815 100%);
    color: var(--color-white);
}

.form-section h2 {
    color: var(--color-white);
    text-align: left;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-text p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.form-guarantee {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
}

.guarantee-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.form-guarantee p {
    margin: 0;
    font-size: 0.95rem;
}

.form-guarantee strong {
    color: var(--color-white);
}

.form-urgency {
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(196, 167, 125, 0.15);
    border-radius: var(--radius-md);
    border: 2px solid rgba(196, 167, 125, 0.3);
}

.form-urgency h3 {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.countdown-small {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.countdown-small .countdown-item {
    padding: 8px 16px;
    min-width: 70px;
}

.countdown-small .countdown-number {
    font-size: 1.5rem;
}

.countdown-small .countdown-label {
    font-size: 0.75rem;
}

.urgency-note {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.urgency-note strong {
    color: var(--color-white);
}

.consultation-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    margin-top: 8px;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #2D5A4A;
}

.checkbox-label a {
    color: #2D5A4A;
    text-decoration: underline;
    position: relative;
    z-index: 1;
    padding: 8px 4px;
    margin: -8px -4px;
}

.checkbox-label a:hover {
    color: #1E3D32;
}

.form-response-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 16px;
    line-height: 1.5;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}

.modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0s 0s;
}

.modal-content {
    background: var(--color-white);
    padding: 48px;
    border-radius: var(--radius-md);
    text-align: center;
    max-width: 400px;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.modal-content h3 {
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.proof-modal-content {
    max-width: 600px;
    position: relative;
}

.proof-modal-content h3 {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.proof-modal-content img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.proof-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--color-light);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    line-height: 1;
}

.proof-modal-close:hover {
    background: var(--color-border);
}

/* Footer */
footer {
    background: #2C1810;
    padding: 40px 8%;
}

.footer-container {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-name {
    font-style: italic;
    font-size: 20px;
    color: #E8DDD0;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
}

.footer-contacts {
    text-align: center;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
}

.footer-contacts a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer-contacts a:hover {
    color: #E8DDD0;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
    display: block;
}

.footer-social a:hover {
    color: #E8DDD0;
}

.footer-policy a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
    text-align: right;
    line-height: 1.4;
    font-family: 'Raleway', sans-serif;
}

.footer-policy a:hover {
    color: #E8DDD0;
}

.footer-policy a + a {
    display: block;
    margin-top: 8px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .formats-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        flex-direction: column;
        gap: 16px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
        min-height: auto;
    }

    .hero-decor-1 {
        width: 200px;
        height: 200px;
        top: -50px;
        right: -50px;
    }

    .hero-decor-2 {
        width: 150px;
        height: 150px;
        bottom: -30px;
        left: -30px;
    }

    .hero-image-frame {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }

    .hero-image-accent {
        width: 80px;
        height: 80px;
        bottom: -15px;
        right: -15px;
    }


    /* Timeline mobile */
    .journey {
        padding: 32px 0 28px;
    }

    .journey-subtitle {
        margin-bottom: 20px;
    }

    /* На экранах уже iPhone 16 Pro Max — «за 5 месяцев» с новой строки, не разрывать */
    @media (max-width: 430px) {
        .journey-subtitle-line {
            display: block;
            white-space: nowrap;
        }
    }

    .timeline {
        margin-left: -16px;
        margin-right: -16px;
        gap: 16px;
        /* Отступы, чтобы первый и последний буллет могли встать по центру */
        padding-left: calc((100% - 280px) / 2);
        padding-right: calc((100% - 280px) / 2);
    }

    .timeline-item {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        scroll-snap-align: center;
    }

    .timeline-item:last-child {
        margin-right: 0;
    }

    .timeline-marker {
        width: 48px;
        height: 48px;
        margin-top: 16px;
    }

    .timeline-icon-svg {
        width: 28px;
        height: 28px;
    }

    .timeline-content {
        padding: 0 16px 12px;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-proof-content {
        padding: 10px;
    }

    .timeline-proof-content {
        max-height: 240px;
    }

    #proof-start .timeline-proof-content img {
        object-position: 50% 30%;
    }

    .proof-caption {
        font-size: 0.8rem;
    }

    .journey-stats {
        flex-direction: column;
        gap: 24px;
        padding: 32px 24px;
    }

    .journey-stat-number {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-topics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .flip-card-front {
        padding: 20px 16px;
    }
    .flip-card-back {
        padding: 16px 18px;
        font-size: 1rem;
    }
    .hero-topics-grid .flip-card:nth-child(1) .flip-card-back {
        justify-content: center;
    }
    .hero-topics-grid .flip-card:nth-child(1) .flip-card-back-icon {
        display: none;
        margin: 0;
    }
    /* Мобилка: плашку «нажми» с Аудит блога переносим на Разбор рилсов, правый верхний угол */
    .hero-topics-grid .flip-card:nth-child(1) .hero-topic-badge {
        display: none;
    }
    .hero-topics-grid .flip-card:nth-child(2) .hero-topic-badge.hero-topic-badge--reels-mobile {
        display: block;
        position: absolute;
        top: 12px;
        right: 12px;
        padding: 6px 12px;
        font-size: 12px;
        font-weight: 600;
        color: #5C4F42;
        background: linear-gradient(135deg, #F7F3ED 0%, #EDE4D8 25%, #F5EEE4 50%, #EDE4D8 75%, #F7F3ED 100%);
        background-size: 200% 200%;
        border: none;
        border-radius: 999px;
        box-shadow: 0 2px 8px rgba(180, 160, 130, 0.2);
        pointer-events: none;
        animation: hero-badge-shimmer 4s ease-in-out infinite;
    }
    .hero-topics-grid .flip-card:nth-child(2) .flip-card-back {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        background: #FAF9F7;
        color: #2D5A4A;
        overflow: hidden;
    }
    .hero-topics-grid .flip-card:nth-child(4) .flip-card-back {
        background: #2D5A4A;
        color: #fff;
    }
    .hero-topics-grid .flip-card:nth-child(2) .flip-card-back-reels-mountain {
        display: flex;
        flex-shrink: 1;
        align-items: center;
        min-width: 0;
        max-width: 180px;
    }
    .hero-topics-grid .flip-card:nth-child(2) .flip-card-back-reels-mountain .flip-card-back-image {
        width: 100%;
        max-width: 180px;
        height: auto;
        display: block;
        object-fit: contain;
    }
    .hero-topics-grid .flip-card:nth-child(2) .flip-card-back-text {
        min-width: 0;
        flex: 1;
        margin-left: auto;
        text-align: center;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    .hero-topics-grid .flip-card:nth-child(2) .flip-card-back-nowrap {
        white-space: nowrap;
    }
    /* Узкие экраны (iPhone 11 и похожие, ~414px): текст в буллете, гора компактнее */
    @media (max-width: 430px) {
        .hero-topics-grid .flip-card:nth-child(2) .flip-card-back {
            gap: 8px;
            padding-left: 12px;
            padding-right: 12px;
        }
        .hero-topics-grid .flip-card:nth-child(2) .flip-card-back-reels-mountain {
            max-width: 90px;
            flex-shrink: 0;
        }
        .hero-topics-grid .flip-card:nth-child(2) .flip-card-back-reels-mountain .flip-card-back-image {
            max-width: 90px;
            width: 90px;
        }
        .hero-topics-grid .flip-card:nth-child(2) .flip-card-back-text {
            min-width: 0;
        }
        .hero-topics-grid .flip-card:nth-child(2) .flip-card-back-nowrap {
            white-space: normal;
        }
    }
    .flip-card-back-icon .flip-card-back-image {
        width: 156px;
    }
    .flip-card-back-icon {
        margin-top: 8px;
    }

    .hero-topic-card:nth-child(1) {
        order: 1;
    }

    .hero-topic-card:nth-child(2) {
        order: 3;
        grid-column: 1 / -1;
    }

    .hero-topic-card:nth-child(3) {
        order: 2;
    }

    .hero-topic-card:nth-child(4) {
        order: 4;
        grid-column: 1 / -1;
    }

    .hero-topic-card h3 {
        font-size: 1rem;
    }

    .hero-topic-icon {
        width: 40px;
        height: 40px;
    }

    .hero-topic-details {
        padding: 20px 44px 20px 20px;
        margin-bottom: 20px;
    }
    .hero-topic-details-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 1.75rem;
    }
    .hero-topic-details-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    .hero-topic-details-list li {
        font-size: 0.95rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-author-row {
        gap: 8px;
        margin-bottom: 24px;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .hero-author {
        font-size: 1.25rem;
        width: 100%;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .hero-ig-icon {
        height: 32px;
        margin-left: -4px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 280px;
    }

    .hero-image img {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }

    .hero-intro-pill {
        margin-bottom: 28px;
    }

    .hero-intro {
        font-size: 1.05rem;
    }

    .hero-help {
        padding: 20px;
        margin-bottom: 24px;
    }

    .hero-help h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .hero-help-list li {
        font-size: 0.9rem;
        padding: 6px 0;
    }

    .who-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .who-photo {
        order: -1;
        margin: 0 auto 32px;
    }

    .who-text {
        align-items: center;
    }

    .who-metrics {
        flex-direction: column;
        gap: 20px;
    }

    .who-metric {
        width: 100%;
        padding: 16px 20px;
    }

    .who-metric-value {
        font-size: 2rem;
    }

    .who-metric-label {
        font-size: 0.9rem;
    }

    .who-lead {
        font-size: 1.1rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .problems {
        padding: 60px 0;
    }

    .problems-subtitle {
        margin-bottom: 40px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .problem-portrait {
        padding: 32px 20px;
    }

    .portrait-photo-wrapper {
        width: 140px;
        height: 140px;
        margin-bottom: 24px;
    }

    .portrait-photo-glow {
        width: 160px;
        height: 160px;
    }

    .portrait-photo {
        width: 140px;
        height: 140px;
    }

    .portrait-title {
        font-size: 1.25rem;
    }

    .portrait-subtitle {
        font-size: 0.95rem;
    }

    .problems-mountains {
        height: 250px;
    }

    .solution {
        padding: 32px 0 28px;
    }

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

    .solution-card {
        padding: 28px 24px;
    }

    .solution-number {
        font-size: 2rem;
    }

    .solution-card h3 {
        font-size: 1.1rem;
    }

    .solution-card p {
        font-size: 0.95rem;
    }

    .requests {
        padding: 32px 16px 28px;
        margin-bottom: 24px;
    }

    .requests-accordion {
        margin: 0 auto 16px;
    }

    .requests-item {
        margin-bottom: 12px;
        background: var(--color-light);
        border-radius: var(--radius-md);
    }

    .requests-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 16px;
    }

    .requests-question h3 {
        font-size: 1rem;
        line-height: 1.4;
        padding-right: 12px;
        flex: 1;
    }

    .requests-chevron {
        margin-left: 12px;
        flex-shrink: 0;
    }

    .requests-chevron svg {
        width: 16px;
        height: 16px;
    }

    .requests-answer p {
        padding: 0 16px 18px;
        margin-top: 10px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .requests-note {
        font-size: 0.95rem;
        padding: 0 4px;
    }

    .faq {
        padding: 32px 0 28px;
    }

    .formats {
        padding: 32px 0 28px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about h2 {
        text-align: center;
    }

    .about-image img {
        height: 400px;
    }

    .about-social {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-grid img {
        height: 200px;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-section h2 {
        text-align: center;
    }

    .form-text {
        text-align: center;
    }

    .form-urgency {
        padding: 20px;
        margin-bottom: 24px;
    }

    .countdown-small {
        gap: 8px;
    }

    .countdown-small .countdown-item {
        padding: 6px 12px;
        min-width: 60px;
    }

    .countdown-small .countdown-number {
        font-size: 1.25rem;
    }

    .countdown-small .countdown-label {
        font-size: 0.7rem;
    }

    .consultation-form {
        padding: 28px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-policy a {
        text-align: center;
    }

    section {
        padding: 60px 0;
    }

    h2 {
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .price-row {
        gap: 8px;
    }

    .price-badge {
        font-size: 13px;
        padding: 5px 9px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .countdown {
        gap: 8px;
    }

    .countdown-item {
        padding: 8px 12px;
    }

    .countdown-number {
        font-size: 1.25rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .hero-help {
        padding: 16px;
        margin-bottom: 20px;
    }

    .hero-help h3 {
        font-size: 0.95rem;
    }

    .hero-help-list li {
        font-size: 0.85rem;
        padding-left: 24px;
    }

    .hero-intro-pill {
        margin-bottom: 20px;
    }

    .hero-intro {
        font-size: 0.95rem;
    }

    .btn {
        padding: 14px 24px;
        width: 100%;
    }

    .requests {
        padding: 32px 12px 28px;
        margin-bottom: 24px;
    }

    .requests-question {
        padding: 16px 14px;
    }

    .requests-question h3 {
        font-size: 0.95rem;
        padding-right: 10px;
    }

    .requests-answer p {
        padding: 0 14px 16px;
        margin-top: 8px;
        font-size: 0.95rem;
    }

    .requests-note {
        padding: 0 4px;
    }

    .format-card {
        padding: 28px;
    }

    .format-price-wrapper {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

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

    .gallery-grid img {
        height: 250px;
    }
}

/* Hero Profile Overlay - Fixed Positioning */
.hero-image-wrapper {
    position: relative;
}

.hero-profile-overlay {
    position: absolute !important;
    top: 6px !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 20 !important;

    width: clamp(220px, 20.8vw, 371px) !important;
    height: auto;

    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.10);
    box-shadow: 0 18px 45px rgba(0,0,0,0.28);

    transform: translateX(-70%) perspective(900px) rotateY(-12deg) rotateX(6deg) rotateZ(-6deg);
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        overflow: visible;
    }

    .hero-profile-overlay {
        top: -14px !important;
        left: 4px !important;
        right: auto !important;
        bottom: auto !important;
        width: clamp(240px, 78vw, 340px) !important;
        transform: translateX(-36px) perspective(900px) rotateY(-10deg) rotateX(6deg) rotateZ(-10deg);
    }
}

/* ===== Policy page (Политика обработки персональных данных) ===== */
.policy-page {
    padding: 48px 0 64px;
    background: var(--color-light);
}

.policy-page .policy-back {
    display: inline-block;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.policy-page .policy-back:hover {
    color: var(--color-primary);
}

.policy {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 32px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.policy h1 {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.policy h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 32px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.policy p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 12px;
}

.policy ul,
.policy ol {
    padding-left: 24px;
    margin: 12px 0;
    line-height: 1.7;
    color: var(--color-text);
}

.policy li {
    margin-bottom: 8px;
}

.policy a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.policy a:hover {
    color: var(--color-primary);
}

.policy .policy-muted {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .policy {
        padding: 28px 20px;
    }

    .policy h1 {
        font-size: 22px;
    }

    .policy h2 {
        font-size: 16px;
        margin-top: 24px;
    }
}
