/* =============================================================
   Home page redesign — culturagraphica.ru inspired
   Self-contained. Used ONLY in index.html (replaces styles.css).
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
    --cg-blue: #4169FF;
    --cg-blue-dark: #2E4FE8;
    --cg-blue-soft: #EAEFFF;
    --cg-ink: #1A1A1A;
    --cg-ink-soft: #2B2B2B;
    --cg-gray: #6B6B6B;
    --cg-gray-soft: #9AA0A6;
    --cg-cream: #FAF9F7;
    --cg-cream-warm: #F3EFE8;
    --cg-white: #FFFFFF;
    --cg-pink: #FFB3D9;
    --cg-pink-soft: #FFE4F1;
    --cg-orange: #FF6B35;
    --cg-orange-soft: #FFE5D9;
    --cg-purple: #B794F6;
    --cg-yellow: #FFD447;
    --cg-yellow-soft: #FFF3BF;
    --cg-mint: #9FE8C7;
    --cg-mint-soft: #DDF8EB;

    --radius-pill: 999px;
    --radius-xl: 48px;
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 16px;
    --radius-xs: 12px;

    --border-card: 3px solid var(--cg-ink);
    --border-thin: 2px solid var(--cg-ink);

    --ff-display: 'Onest', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ff-body: 'Inter', 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container: 1240px;
    --section-pad: clamp(64px, 9vw, 120px);

    --shadow-soft: 0 8px 24px rgba(26, 26, 26, 0.08);
    --shadow-lift: 0 16px 40px rgba(65, 105, 255, 0.18);

    --easing: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    font-size: 17px;
    line-height: 1.55;
    color: var(--cg-ink);
    background: var(--cg-cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s var(--easing), color 0.2s var(--easing);
}

a:hover {
    opacity: 0.85;
}

ul {
    list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-display);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--cg-ink);
    font-weight: 800;
}

h1 {
    font-size: clamp(40px, 6.2vw, 72px);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(32px, 4.2vw, 56px);
}

h3 {
    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 700;
}

h4 {
    font-size: 20px;
    font-weight: 700;
}

p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--cg-ink-soft);
}

strong {
    font-weight: 700;
    color: var(--cg-ink);
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    position: relative;
    padding: var(--section-pad) 0;
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--cg-ink);
    margin-bottom: 16px;
    text-align: left;
}

.section-subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--cg-gray);
    max-width: 720px;
    margin-bottom: 56px;
}

/* Remove old decorative ::after underlines from shared styles */
.section-title::after,
h2::after {
    content: none;
}

.section-decor {
    position: relative;
}

/* ---------- Pill badges ---------- */
.pill-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    background: var(--cg-orange);
    color: var(--cg-white);
    font-size: 0.92em;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0;
    white-space: nowrap;
}

.pill-badge--mint {
    background: var(--cg-mint);
    color: var(--cg-ink);
}

.pill-badge--lavender {
    background: var(--cg-purple);
    color: var(--cg-white);
}

.pill-badge--yellow {
    background: var(--cg-yellow);
    color: var(--cg-ink);
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-outline,
.btn-pricing,
.btn-telegram,
.btn-add-participant {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    font-family: var(--ff-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s var(--easing), background 0.2s var(--easing), color 0.2s var(--easing), border-color 0.2s var(--easing);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--cg-blue);
    opacity: 1;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--cg-ink);
    border: 2px solid var(--cg-ink);
}

.btn-outline:hover {
    background: var(--cg-ink);
    color: var(--cg-white);
    opacity: 1;
    transform: translateY(-2px);
}

.btn-primary.btn-full {
    width: 100%;
}

.btn-pricing {
    background: var(--cg-white);
    color: var(--cg-ink);
    border: 2px solid var(--cg-ink);
    width: 100%;
}

.btn-pricing:hover {
    background: var(--cg-ink);
    color: var(--cg-white);
    opacity: 1;
}

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

.btn-pricing-primary:hover {
    background: var(--cg-blue);
}

.btn-telegram {
    background: var(--cg-blue);
    color: var(--cg-white);
}

.btn-telegram:hover {
    background: var(--cg-blue-dark);
    opacity: 1;
    transform: translateY(-2px);
}

.btn-add-participant {
    background: transparent;
    color: var(--cg-ink);
    border: 2px dashed var(--cg-ink);
    width: 100%;
    padding: 16px 24px;
    justify-content: center;
}

.btn-add-participant:hover {
    background: var(--cg-ink);
    color: var(--cg-white);
    border-style: solid;
    opacity: 1;
}

/* ---------- Fixed contact ---------- */
.fixed-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 90;
}

.fixed-contact .contact-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cg-white);
    border: 2px solid var(--cg-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s var(--easing), background 0.25s var(--easing);
}

.fixed-contact .contact-btn:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.fixed-contact .contact-btn.whatsapp:hover {
    background: var(--cg-mint);
}

.fixed-contact .contact-btn.telegram:hover {
    background: var(--cg-blue);
}

.fixed-contact .contact-btn svg {
    width: 26px;
    height: 26px;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
    position: relative;
    background: var(--cg-blue);
    color: var(--cg-white);
    padding: clamp(64px, 10vw, 140px) 0 clamp(72px, 12vw, 160px);
    overflow: hidden;
    isolation: isolate;
}

/* Decorative blobs using pseudo elements */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    width: 520px;
    height: 520px;
    top: -120px;
    right: -160px;
    background: radial-gradient(circle at 30% 30%, rgba(255,179,217,0.55), transparent 60%);
    filter: blur(6px);
}

.hero::after {
    width: 420px;
    height: 420px;
    bottom: -160px;
    left: -140px;
    background: radial-gradient(circle at 60% 40%, rgba(183,148,246,0.45), transparent 60%);
    filter: blur(10px);
}

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

.hero-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}

.hero-content h1,
.hero-title {
    color: var(--cg-white);
    font-weight: 800;
    font-size: clamp(38px, 5.6vw, 68px);
    line-height: 1.03;
    letter-spacing: -0.03em;
    margin: 16px 0 20px;
}

.hero-subtitle {
    font-size: clamp(16px, 1.6vw, 20px);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    max-width: 560px;
}

.hero-subtitle .pill-badge {
    vertical-align: middle;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--cg-white);
    font-weight: 500;
    font-size: 14px;
    backdrop-filter: blur(6px);
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 24px 0 32px;
}

.hero-trust p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    font-size: 18px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.hero-cta-note {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

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

.hero .btn-primary:hover {
    background: var(--cg-white);
    color: var(--cg-ink);
}

.hero .btn-outline {
    background: transparent;
    color: var(--cg-white);
    border-color: rgba(255, 255, 255, 0.7);
}

.hero .btn-outline:hover {
    background: var(--cg-white);
    color: var(--cg-ink);
    border-color: var(--cg-white);
}

.hero-case-mini {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px 12px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
    max-width: max-content;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-case-mini:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-1px);
}

.case-mini-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cg-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cg-white);
    flex-shrink: 0;
}

.case-mini-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.case-mini-text strong {
    color: var(--cg-white);
    font-size: 14px;
    font-weight: 700;
}

.case-mini-text span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

/* Decorative floaters (replace emojis visually via ::before) */
.hero-decor {
    position: absolute;
    z-index: 1;
    font-size: 0;
    opacity: 0.95;
    animation: hero-float 8s ease-in-out infinite;
}

.hero-decor::before {
    display: block;
}

.hero-decor--star {
    top: 8%;
    left: 48%;
    animation-delay: 0s;
}

.hero-decor--star::before {
    content: "";
    width: 56px;
    height: 56px;
    background: var(--cg-orange);
    clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.hero-decor--clapper {
    top: 60%;
    right: 42%;
    animation-delay: 1.5s;
}

.hero-decor--clapper::before {
    content: "";
    width: 38px;
    height: 38px;
    background: var(--cg-yellow);
    border-radius: 50%;
    border: 3px solid var(--cg-ink);
}

.hero-decor--mask {
    top: 20%;
    right: 8%;
    animation-delay: 3s;
}

.hero-decor--mask::before {
    content: "";
    width: 64px;
    height: 64px;
    background: var(--cg-pink);
    border-radius: 32px 32px 40% 40%;
    border: 3px solid var(--cg-ink);
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50%      { transform: translateY(-18px) rotate(6deg); }
}

.hero-video-wrapper {
    position: relative;
    z-index: 2;
}

.hero-video {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 3px solid var(--cg-ink);
    background: var(--cg-ink);
    aspect-ratio: 4 / 5;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.45) 0%, transparent 55%);
    pointer-events: none;
}

.video-caption {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    color: var(--cg-white);
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
}

/* =============================================================
   NOT MODELING
   ============================================================= */
.not-modeling {
    background: var(--cg-cream);
}

.not-modeling-content {
    max-width: 100%;
}

.not-modeling .section-title {
    text-align: left;
}

.not-modeling .subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--cg-gray);
    max-width: 760px;
    margin-bottom: 56px;
}

.not-modeling-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.not-modeling-card {
    background: var(--cg-white);
    border: var(--border-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform 0.3s var(--easing);
}

.not-modeling-card:hover {
    transform: translateY(-6px);
}

.not-modeling-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cg-pink-soft);
    border: 2px solid var(--cg-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.not-modeling-card:nth-child(2) .card-icon {
    background: var(--cg-orange-soft);
}

.not-modeling-card:nth-child(3) .card-icon {
    background: var(--cg-blue-soft);
}

.not-modeling-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.not-modeling-card p {
    color: var(--cg-gray);
    font-size: 16px;
    line-height: 1.55;
}

.guarantee-banner {
    background: var(--cg-yellow);
    color: var(--cg-ink);
    border-radius: var(--radius-lg);
    padding: 30px 36px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 3px solid var(--cg-ink);
    box-shadow: 8px 8px 0 var(--cg-ink);
}

.guarantee-banner h3 {
    color: var(--cg-ink);
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.guarantee-banner p {
    color: rgba(26,26,26,0.78);
    font-size: 16px;
    margin: 0;
}

/* =============================================================
   AUDIENCE FIT
   ============================================================= */
.audience-fit {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 212, 71, 0.24), transparent 26%),
        radial-gradient(circle at 88% 20%, rgba(65, 105, 255, 0.14), transparent 28%),
        var(--cg-white);
    padding: clamp(58px, 8vw, 104px) 0;
}

.audience-fit .section-title,
.audience-fit .section-subtitle {
    text-align: center;
}

.audience-fit .section-subtitle {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.audience-fit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 34px;
}

.audience-fit-card {
    position: relative;
    overflow: hidden;
    background: var(--cg-white);
    border: 3px solid var(--cg-ink);
    border-radius: 30px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    box-shadow: 7px 7px 0 rgba(26, 26, 26, 0.16);
    transition: transform 0.25s var(--easing), box-shadow 0.25s var(--easing);
}

.audience-fit-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0 rgba(26, 26, 26, 0.2);
}

.audience-fit-card::before {
    content: "🎬";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 4px;
    border-radius: 50%;
    background: var(--cg-yellow);
    border: 2px solid var(--cg-ink);
    font-size: 24px;
}

.audience-fit-card:nth-child(2)::before {
    content: "⭐";
    background: var(--cg-blue-soft);
}

.audience-fit-card:nth-child(3)::before {
    content: "🎭";
    background: var(--cg-pink-soft);
}

.audience-fit-card:nth-child(4)::before {
    content: "📸";
    background: var(--cg-orange-soft);
}

.audience-fit-card__tag {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--cg-blue-soft);
    color: var(--cg-ink);
    font-size: 13px;
    font-weight: 700;
}

.audience-fit-card:nth-child(2) .audience-fit-card__tag {
    background: var(--cg-yellow-soft);
}

.audience-fit-card:nth-child(3) .audience-fit-card__tag {
    background: var(--cg-pink-soft);
}

.audience-fit-card:nth-child(4) .audience-fit-card__tag {
    background: var(--cg-orange-soft);
}

.audience-fit-card h3 {
    font-size: 24px;
    margin: 0;
}

.audience-fit-card p {
    color: var(--cg-gray);
    line-height: 1.55;
    margin: 0;
}

.text-link-button {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    padding: 9px 14px;
    border: 2px solid var(--cg-ink);
    border-radius: var(--radius-pill);
    background: var(--cg-yellow);
    color: var(--cg-ink);
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    text-decoration: none;
}

.text-link-button:hover {
    background: var(--cg-ink);
    color: var(--cg-white);
    text-decoration: none;
}

.audience-fit-card .text-link-button + .text-link-button {
    margin-top: -4px;
}

/* =============================================================
   PRICING
   ============================================================= */
.pricing {
    background: var(--cg-cream-warm);
}

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

.pricing-card {
    position: relative;
    background: var(--cg-white);
    border: var(--border-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--easing);
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card.recommended {
    background: var(--cg-blue);
    color: var(--cg-white);
    border-color: var(--cg-ink);
}

.pricing-card.recommended h3,
.pricing-card.recommended .package-type,
.pricing-card.recommended .price-value,
.pricing-card.recommended .features-list li {
    color: var(--cg-white);
}

.pricing-card.recommended .features-list li::before {
    background: var(--cg-yellow);
}

.pricing-card.recommended .btn-pricing {
    background: var(--cg-white);
    color: var(--cg-ink);
    border-color: var(--cg-white);
}

.pricing-card.recommended .btn-pricing:hover {
    background: var(--cg-ink);
    color: var(--cg-white);
}

.recommended-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    padding: 6px 16px;
    background: var(--cg-orange);
    color: var(--cg-white);
    border-radius: var(--radius-pill);
    border: 2px solid var(--cg-ink);
    font-size: 13px;
    font-weight: 700;
}

.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
}

.package-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cg-cream);
    border: 2px solid var(--cg-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 4px;
}

.pricing-card.recommended .package-icon {
    background: var(--cg-yellow);
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.package-type {
    font-size: 14px;
    font-weight: 500;
    color: var(--cg-gray);
    margin: 0;
}

.pricing-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.price-value {
    font-family: var(--ff-display);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--cg-ink);
}

.features-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.features-list li {
    position: relative;
    padding-left: 26px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--cg-ink-soft);
}

.features-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--cg-orange);
}

.feature-time {
    display: inline-block;
    padding: 4px 12px;
    background: var(--cg-cream);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--cg-ink);
}

.pricing-card.recommended .feature-time {
    background: rgba(255,255,255,0.18);
    color: var(--cg-white);
}

.addon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--cg-cream);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card.recommended .addon {
    background: rgba(255,255,255,0.15);
    color: var(--cg-white);
}

.addon-label {
    color: inherit;
}

.addon-price {
    color: var(--cg-orange);
    font-weight: 700;
}

.pricing-card.recommended .addon-price {
    color: var(--cg-yellow);
}

/* Additional services */
.additional-services {
    margin: 8px 0 22px;
}

.additional-services-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cg-white), #fff8e6);
    border: 2px solid rgba(26, 26, 26, 0.14);
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 14px 34px rgba(26, 26, 26, 0.07);
}

.additional-services-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 212, 71, 0.34), transparent 24%),
        radial-gradient(circle at 92% 18%, rgba(65, 105, 255, 0.12), transparent 22%);
    pointer-events: none;
}

.additional-title {
    position: relative;
    font-size: clamp(20px, 2vw, 26px);
    margin-bottom: 18px;
    text-align: center;
}

.additional-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.additional-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 2px solid rgba(26, 26, 26, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    transition: transform 0.2s var(--easing), border-color 0.2s var(--easing), box-shadow 0.2s var(--easing);
}

.additional-item:hover {
    transform: translateY(-2px);
    border-color: rgba(26, 26, 26, 0.18);
    box-shadow: 0 10px 22px rgba(26, 26, 26, 0.08);
}

.additional-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cg-yellow);
    border: 2px solid rgba(26, 26, 26, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.additional-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.additional-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--cg-ink);
    line-height: 1.25;
}

.additional-price {
    font-size: 14px;
    color: var(--cg-orange);
    font-weight: 800;
}

.pricing-note-card {
    background: var(--cg-white);
    border: 2px solid rgba(26, 26, 26, 0.18);
    border-radius: 28px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
}

.pricing-note-card p {
    margin: 0;
    font-size: 16px;
}

.pricing-note-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    line-height: 1.45;
}

.pricing-note-icon {
    font-size: 20px;
}

.pricing-note-main {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 6px 13px;
    border-radius: var(--radius-pill);
    background: var(--cg-mint);
    color: var(--cg-ink);
    font-weight: 800;
}

.pricing-note-text {
    color: var(--cg-ink);
}

.pricing-note-text strong {
    display: inline-flex;
    padding: 5px 11px;
    border-radius: var(--radius-pill);
    background: var(--cg-purple);
    color: var(--cg-white);
    font-weight: 800;
}

/* =============================================================
   PORTFOLIO
   ============================================================= */
.portfolio {
    background: var(--cg-cream);
}

/* Title row — Cultura Graphica–style headline + lead + CTA */
.portfolio-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.portfolio-head-text {
    flex: 1 1 260px;
    min-width: 0;
}

.portfolio-head-text .section-title {
    margin-bottom: 10px;
}

.portfolio-lead {
    margin: 0;
    max-width: 520px;
    font-size: 17px;
    line-height: 1.55;
    color: var(--cg-gray);
}

.portfolio-head-actions {
    flex-shrink: 0;
}

/* CG-style “floating” orange CTA — offset brutal shadow */
.btn-portfolio-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    color: var(--cg-white);
    background: var(--cg-orange);
    border: var(--border-thin);
    box-shadow: 6px 6px 0 var(--cg-ink);
    transition:
        transform 0.22s var(--easing),
        box-shadow 0.22s var(--easing),
        background 0.2s var(--easing),
        opacity 0.2s;
}

.btn-portfolio-all:hover {
    opacity: 1;
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--cg-ink);
    background: #ff5c28;
}

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

a.portfolio-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: clamp(24px, 4vw, 40px);
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 32px rgba(26, 26, 26, 0.1);
    transition: transform 0.35s var(--easing), box-shadow 0.35s var(--easing);
    background: #e8e8e8;
}

.portfolio-item:focus-visible {
    outline: 3px solid var(--cg-blue);
    outline-offset: 4px;
    z-index: 1;
}

.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(26, 26, 26, 0.14);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--easing);
}

.portfolio-item:hover .portfolio-img,
.portfolio-item:focus-within .portfolio-img {
    transform: scale(1.05);
}

/* Overlay скрывается ЦЕЛИКОМ под низ карточки (раньше 60% считался от высоты оверлея — текст «резался»). */
.portfolio-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 24px 22px;
    padding-top: 48px;
    background: linear-gradient(
        to top,
        rgba(26, 26, 26, 0.92) 0%,
        rgba(26, 26, 26, 0.5) 45%,
        transparent 100%
    );
    color: var(--cg-white);
    transform: translateY(100%);
    opacity: 0;
    transition:
        transform 0.42s var(--easing),
        opacity 0.35s var(--easing);
    pointer-events: none;
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-item:focus-within .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--cg-white);
    font-size: 20px;
    margin-bottom: 4px;
    font-weight: 700;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    margin: 0;
}

.portfolio-case-tag {
    display: inline-flex;
    width: fit-content;
    padding: 4px 9px;
    border-radius: var(--radius-pill);
    background: var(--cg-yellow);
    color: var(--cg-ink);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 8px;
}

.portfolio-case-line {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 13px !important;
    margin-top: 6px !important;
}

.portfolio-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 16px;
    text-align: center;
}

/* Устройства без hover — подпись читаема без «наведения». */
@media (hover: none) {
    .portfolio-overlay {
        transform: translateY(0);
        opacity: 1;
        padding-top: 36px;
        background: linear-gradient(
            to top,
            rgba(26, 26, 26, 0.88) 0%,
            rgba(26, 26, 26, 0.35) 55%,
            transparent 100%
        );
    }
}

/* ---------- Standalone portfolio page ---------- */
.portfolio-page {
    padding: clamp(48px, 8vw, 100px) 0 clamp(64px, 10vw, 120px);
    background: var(--cg-cream);
}

.subpage-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.subpage-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding: 12px 0;
}

.subpage-bar a {
    font-weight: 600;
    font-size: 14px;
    color: var(--cg-blue);
}

.subpage-bar__brand {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 16px;
    color: var(--cg-ink);
}

.portfolio-intro {
    max-width: 640px;
    margin-bottom: 36px;
}

.portfolio-intro p {
    color: var(--cg-gray);
    font-size: 17px;
    line-height: 1.55;
    margin-top: 12px;
}

/* =============================================================
   WORK (single album page)
   ============================================================= */
.work-page {
    padding: clamp(44px, 7vw, 92px) 0 clamp(64px, 10vw, 120px);
    background: var(--cg-cream);
}

.work-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.work-title {
    font-family: var(--ff-display);
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: clamp(30px, 4.5vw, 44px);
    margin: 0 0 10px;
    color: var(--cg-ink);
}

.work-subtitle {
    margin: 0 0 14px;
    color: var(--cg-gray);
    max-width: 60ch;
    font-size: 16px;
    line-height: 1.55;
}

.work-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.work-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    border: var(--border-thin);
    background: var(--cg-white);
    font-weight: 700;
    font-size: 12px;
    color: var(--cg-ink);
    box-shadow: 3px 3px 0 rgba(26, 26, 26, 0.12);
}

.work-hero__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.work-media {
    padding: 0;
}

.work-case {
    margin-bottom: 28px;
    padding: 28px;
    border: var(--border-card);
    border-radius: var(--radius-lg);
    background: var(--cg-white);
}

.work-case h2 {
    margin-bottom: 14px;
}

.work-case p {
    margin: 8px 0;
    color: var(--cg-gray);
}

.work-case strong {
    color: var(--cg-ink);
}

/* =============================================================
   SEO LANDING PAGES
   ============================================================= */
.seo-page {
    background:
        radial-gradient(circle at 10% 12%, rgba(255, 212, 71, 0.28), transparent 26%),
        radial-gradient(circle at 86% 8%, rgba(255, 179, 217, 0.24), transparent 24%),
        var(--cg-cream);
}

.seo-hero {
    padding: clamp(64px, 9vw, 120px) 0 44px;
}

.seo-hero__content {
    max-width: 840px;
    padding: clamp(28px, 5vw, 54px);
    background: var(--cg-white);
    border: 3px solid var(--cg-ink);
    border-radius: var(--radius-xl);
    box-shadow: 10px 10px 0 rgba(26, 26, 26, 0.16);
}

.seo-hero .eyebrow {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: var(--cg-yellow);
    border: 2px solid var(--cg-ink);
    color: var(--cg-ink);
    font-weight: 800;
    margin-bottom: 18px;
}

.seo-hero__cta .btn-outline {
    background: var(--cg-white);
}

.seo-content {
    padding: 20px 0 clamp(64px, 10vw, 120px);
}

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

.seo-card,
.seo-faq,
.seo-cta {
    background: var(--cg-white);
    border: 3px solid var(--cg-ink);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 7px 7px 0 rgba(26, 26, 26, 0.14);
}

.seo-card {
    position: relative;
}

.seo-card::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--cg-yellow);
    border: 2px solid var(--cg-ink);
    color: var(--cg-ink);
    font-weight: 900;
}

.seo-card:nth-child(2)::before {
    content: "🎬";
    background: var(--cg-blue-soft);
}

.seo-card:nth-child(3)::before {
    content: "📸";
    background: var(--cg-pink-soft);
}

.seo-card h2,
.seo-faq h2,
.seo-cta h2 {
    margin-bottom: 12px;
}

.seo-card p,
.seo-faq p,
.seo-cta p {
    color: var(--cg-gray);
    line-height: 1.6;
}

.seo-faq {
    margin-bottom: 34px;
}

.seo-faq p + p {
    margin-top: 12px;
}

.seo-cta {
    text-align: center;
}

.seo-cta p {
    margin-bottom: 20px;
}

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

@media (max-width: 720px) {
    .work-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.work-mediaCard {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.work-mediaCard:focus-visible {
    outline: 3px solid var(--cg-blue);
    outline-offset: 4px;
    border-radius: var(--radius-lg);
}

.work-mediaCard__inner {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    border: 0;
    background: var(--cg-white);
    box-shadow: var(--shadow-soft);
    aspect-ratio: 3 / 4;
}

.work-mediaCard__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.25s var(--easing);
}

.work-mediaCard:hover .work-mediaCard__img {
    transform: scale(1.04);
}

.work-mediaCard__videoStub {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
}

.work-mediaCard__play {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(26, 26, 26, 0.68);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: var(--cg-white);
    font-weight: 900;
    display: grid;
    place-items: center;
    transform: translateZ(0);
}

.work-media__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 800;
    color: var(--cg-ink);
    background: var(--cg-yellow);
    border: var(--border-thin);
    box-shadow: 3px 3px 0 rgba(26, 26, 26, 0.22);
}

.work-empty {
    padding: 22px;
    background: var(--cg-white);
    border: var(--border-card);
    border-radius: var(--radius-lg);
    color: var(--cg-gray);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lightbox for work media */
.work-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 240;
    background: rgba(26, 26, 26, 0.88);
    backdrop-filter: blur(6px);
    padding: 18px;
    align-items: center;
    justify-content: center;
}

.work-lightbox.active {
    display: flex;
}

.work-lightbox__inner {
    width: min(100%, 1040px);
    max-height: 92vh;
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 12px;
}

.work-lightbox__stage {
    border-radius: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
    display: grid;
    place-items: center;
}

.work-lightbox__img,
.work-lightbox__video {
    max-width: 100%;
    max-height: 82vh;
    width: auto;
    height: auto;
    display: block;
}

.work-lightbox__video {
    width: min(100%, 980px);
    height: auto;
}

.work-lightbox__caption {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.4;
}

.work-lightbox__close,
.work-lightbox__nav {
    position: absolute;
    top: 14px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.22);
    background: rgba(26, 26, 26, 0.55);
    color: var(--cg-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.18s var(--easing), background 0.18s var(--easing), border-color 0.18s var(--easing);
    user-select: none;
}

.work-lightbox__close:hover,
.work-lightbox__nav:hover {
    transform: translateY(-1px);
    background: rgba(26, 26, 26, 0.72);
    border-color: rgba(255, 255, 255, 0.34);
}

.work-lightbox__close {
    right: 14px;
    font-size: 22px;
    font-weight: 800;
}

.work-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 800;
}

.work-lightbox__nav:hover {
    transform: translateY(calc(-50% - 1px));
}

.work-lightbox__prev {
    left: 14px;
}

.work-lightbox__next {
    right: 14px;
}

.work-lightbox__nav[disabled] {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 640px) {
    .work-lightbox {
        padding: 12px;
    }
    .work-lightbox__nav,
    .work-lightbox__close {
        width: 40px;
        height: 40px;
    }
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin-bottom: 36px;
}

.portfolio-filters-label {
    width: 100%;
    margin: 0 0 6px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--cg-gray-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--cg-ink);
    background: var(--cg-white);
    border: var(--border-thin);
    box-shadow: 0 3px 0 var(--cg-ink);
    cursor: pointer;
    transition:
        transform 0.18s var(--easing),
        background 0.2s var(--easing),
        color 0.2s var(--easing),
        opacity 0.2s;
}

.filter-chip:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.filter-chip.is-active {
    background: var(--cg-ink);
    color: var(--cg-white);
    box-shadow: 0 3px 0 var(--cg-blue-dark);
}

.filter-chip:focus-visible {
    outline: 2px solid var(--cg-blue);
    outline-offset: 3px;
}

.portfolio-item.portfolio-item--filtered-out {
    display: none !important;
}

/* =============================================================
   SUCCESS STORIES
   ============================================================= */
.success-stories {
    background: var(--cg-cream-warm);
}

.visuals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.visual-card {
    background: var(--cg-white);
    border: var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s var(--easing);
    display: flex;
    flex-direction: column;
}

.visual-card:hover {
    transform: translateY(-6px);
}

.card-preview {
    padding: 24px;
    background: var(--cg-cream);
    border-bottom: 2px solid var(--cg-ink);
    min-height: 240px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.card-preview:has(.preview-grid-4) {
    padding: 12px;
    min-height: 0;
    align-items: center;
}

.preview-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    flex: none;
}

.mini-img {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-sm);
    border: 2px solid var(--cg-ink);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: var(--cg-white);
    font-weight: 700;
    font-size: 12px;
    overflow: hidden;
    min-height: 0;
    min-width: 0;
}

.mini-img img,
.lightbox-img-placeholder img,
.split-left img,
.split-right img,
.comp-item img,
.proc-img-placeholder img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.mini-img.has-photo img,
.lightbox-img-placeholder.has-photo img,
.split-left.has-photo img,
.split-right.has-photo img,
.comp-item.has-photo img,
.proc-img-placeholder.has-photo img {
    display: block;
}

.mini-img.has-photo > span,
.lightbox-img-placeholder.has-photo > span,
.split-left.has-photo > span,
.split-right.has-photo > span,
.comp-item.has-photo > span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 6px 8px;
    background: rgba(26, 26, 26, 0.72);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
}

.case-preview.has-photo .case-badge-overlay {
    background: rgba(26, 26, 26, 0.45);
    padding: 12px;
    border-radius: var(--radius-md);
}

.proc-img-placeholder {
    position: relative;
    overflow: hidden;
    min-height: 120px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.proc-img-placeholder.has-photo .proc-fallback {
    display: none;
}

.process-preview .step {
    position: relative;
    overflow: hidden;
    width: 140px;
    max-width: 140px;
    aspect-ratio: 4 / 5;
    min-height: 0;
    padding: 0;
    display: block;
    box-sizing: border-box;
    border: 2px solid var(--cg-ink);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.process-preview .step.has-photo img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 0;
}

.process-preview .step .step-num {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    margin-right: 0;
    width: 24px;
    height: 24px;
    font-size: 11px;
}

.process-preview .step .step-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 6px 8px;
    background: rgba(26, 26, 26, 0.72);
    color: var(--cg-white);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
}

.process-preview .step.has-photo {
    background-color: transparent !important;
}

.case-preview {
    background: linear-gradient(135deg, var(--cg-blue) 0%, var(--cg-purple) 100%);
    color: var(--cg-white);
    flex-direction: column;
    text-align: center;
    padding: 32px;
}

.case-badge-overlay {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--cg-white);
}

.case-badge-overlay span {
    display: inline-block;
    padding: 4px 14px;
    background: var(--cg-orange);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    align-self: center;
}

.case-badge-overlay strong {
    color: var(--cg-white);
    font-size: 20px;
    font-weight: 700;
}

.compare-preview {
    padding: 0;
}

.split-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 240px;
}

.split-left,
.split-right {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cg-white);
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    padding: 16px;
}

.bad-photo {
    background: #4a4a4a;
}

.pro-photo {
    background: var(--cg-blue);
}

.process-preview {
    padding: 20px 12px;
    min-height: 240px;
    align-items: center;
}

.process-preview .process-steps {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.process-steps .step {
    padding: 10px 16px;
    background: var(--cg-white);
    border: 2px solid var(--cg-ink);
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
}

.process-preview .process-steps .step {
    padding: 0;
    border-radius: var(--radius-sm);
    font-size: 13px;
    line-height: 1.2;
}

.process-preview .process-steps .step-arrow {
    align-self: center;
}

.step-arrow {
    font-size: 20px;
    color: var(--cg-ink);
    font-weight: 700;
}

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

.card-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.card-content p {
    color: var(--cg-gray);
    font-size: 15px;
    margin-bottom: 12px;
}

.card-link {
    color: var(--cg-orange);
    font-weight: 700;
    font-size: 14px;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
    background: var(--cg-ink);
    border-radius: var(--radius-lg);
    color: var(--cg-white);
}

.stat-item h3 {
    color: var(--cg-yellow);
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-item p {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    margin: 0;
}

/* =============================================================
   LIGHTBOX
   ============================================================= */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.82);
    backdrop-filter: blur(4px);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fade-in 0.25s var(--easing);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    background: var(--cg-white);
    border-radius: var(--radius-lg);
    border: var(--border-card);
    padding: 48px 24px 28px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    isolation: isolate;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border: 2px solid var(--cg-ink);
    border-radius: 50%;
    background: var(--cg-ink);
    color: var(--cg-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s var(--easing);
    z-index: 50;
    box-shadow: 0 4px 14px rgba(26, 26, 26, 0.25);
}

button.close-btn {
    padding: 0;
    font-family: inherit;
}

.close-btn:hover {
    background: var(--cg-blue);
}

.portfolio-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.88);
    backdrop-filter: blur(6px);
    z-index: 220;
    padding: 24px;
    align-items: center;
    justify-content: center;
}

.portfolio-lightbox.active {
    display: flex;
}

.portfolio-lightbox__inner {
    width: min(100%, 980px);
    max-height: 90vh;
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 14px;
}

.portfolio-lightbox__imgWrap {
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    place-items: center;
}

.portfolio-lightbox__img {
    max-width: 100%;
    max-height: 78vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.portfolio-lightbox__caption {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    line-height: 1.4;
}

.portfolio-lightbox__caption strong {
    color: var(--cg-white);
    font-weight: 700;
}

.portfolio-lightbox__close,
.portfolio-lightbox__nav {
    position: absolute;
    top: 14px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.22);
    background: rgba(26,26,26,0.55);
    color: var(--cg-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.18s var(--easing), background 0.18s var(--easing), border-color 0.18s var(--easing);
    user-select: none;
}

.portfolio-lightbox__close:hover,
.portfolio-lightbox__nav:hover {
    transform: translateY(-1px);
    background: rgba(26,26,26,0.72);
    border-color: rgba(255,255,255,0.34);
}

.portfolio-lightbox__close {
    right: 14px;
    font-size: 22px;
    font-weight: 800;
}

.portfolio-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 800;
}

.portfolio-lightbox__nav:hover {
    transform: translateY(calc(-50% - 1px));
}

.portfolio-lightbox__prev {
    left: 14px;
}

.portfolio-lightbox__next {
    right: 14px;
}

.portfolio-lightbox__nav[disabled] {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 640px) {
    .portfolio-lightbox {
        padding: 14px;
    }

    .portfolio-lightbox__nav,
    .portfolio-lightbox__close {
        width: 40px;
        height: 40px;
    }
}

.lightbox-content h3 {
    margin-bottom: 12px;
    padding-right: 48px;
}

.lightbox-content p {
    margin-bottom: 24px;
}

.lightbox-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.lightbox-img-placeholder {
    position: relative;
    aspect-ratio: 4 / 5;
    min-height: 0;
    border-radius: var(--radius-md);
    border: 2px solid var(--cg-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--cg-white);
    font-weight: 700;
    font-size: 14px;
}

.lightbox-img-placeholder > span:not(.proc-fallback) {
    position: relative;
    z-index: 1;
}

.lightbox-img-placeholder.has-photo > span:not(.proc-fallback) {
    position: absolute;
}

.case-study-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.case-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.case-step {
    padding: 16px 20px;
    background: var(--cg-cream);
    border-radius: var(--radius-md);
    border: 2px solid var(--cg-ink);
}

.case-step.result-highlight {
    background: var(--cg-yellow);
}

.step-label {
    display: inline-block;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cg-orange);
    margin-bottom: 6px;
}

.case-step p {
    margin: 0;
    font-size: 15px;
    color: var(--cg-ink);
}

.proof-box {
    border: 2px dashed var(--cg-ink);
    border-radius: var(--radius-md);
    padding: 24px;
    background: var(--cg-cream);
    text-align: center;
}

.proof-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.proof-icon {
    font-size: 40px;
}

.lightbox-compare-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    aspect-ratio: 16 / 9;
}

.comp-item {
    border-radius: var(--radius-md);
    border: 2px solid var(--cg-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cg-white);
    font-weight: 700;
    font-size: 16px;
}

.bad-comp {
    background: #4a4a4a;
}

.pro-comp {
    background: var(--cg-blue);
}

.lightbox-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.proc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.proc-img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    border: 2px solid var(--cg-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
}

.proc-step p {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}

@keyframes fade-in {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}

/* =============================================================
   HOW IT WORKS
   ============================================================= */
.how-it-works {
    background: var(--cg-cream);
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.process-step {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    padding: 28px 32px;
    background: var(--cg-white);
    border: var(--border-card);
    border-radius: var(--radius-lg);
    align-items: start;
    transition: transform 0.3s var(--easing);
}

.process-step:hover {
    transform: translateX(6px);
}

.process-step-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cg-orange);
    border: 2px solid var(--cg-ink);
    color: var(--cg-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-size: 26px;
    font-weight: 800;
    flex-shrink: 0;
}

.process-step-header h3 {
    font-size: 22px;
    line-height: 1.15;
}

.process-step-content p {
    margin: 0;
    font-size: 16px;
    color: var(--cg-gray);
}

.what-you-get-banner {
    background: var(--cg-blue);
    color: var(--cg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: var(--border-card);
}

.what-you-get-banner h3 {
    color: var(--cg-white);
    font-size: 24px;
    margin-bottom: 24px;
}

.what-you-get-banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.what-you-get-banner-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.25);
}

.banner-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cg-yellow);
    border: 2px solid var(--cg-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.banner-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.banner-item-text strong {
    color: var(--cg-white);
    font-size: 15px;
}

.banner-item-text span {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
}

/* =============================================================
   BOOKING FORM
   ============================================================= */
.booking {
    background: var(--cg-cream-warm);
}

.booking-container {
    background: var(--cg-white);
    border: var(--border-card);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 48px);
    max-width: 920px;
    margin: 0 auto;
}

.booking-progress {
    margin-bottom: 40px;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 16px;
    padding: 0 12px;
}

.progress-bar::before {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    top: 50%;
    height: 2px;
    background: var(--cg-cream);
    transform: translateY(-50%);
    z-index: 0;
}

.progress-step {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cg-white);
    border: 2px solid var(--cg-ink);
    color: var(--cg-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    z-index: 1;
    transition: background 0.3s var(--easing), color 0.3s var(--easing);
}

.progress-step.active {
    background: var(--cg-ink);
    color: var(--cg-white);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
}

.progress-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--cg-gray);
    text-align: center;
    flex: 1;
}

.progress-label.active {
    color: var(--cg-ink);
}

/* Trust / safety notes */
.trust-note,
.safety-note {
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    background: var(--cg-blue-soft);
    border: 1px solid var(--cg-blue);
    color: var(--cg-ink);
    font-size: 14px;
    margin-bottom: 20px;
}

.safety-note {
    background: var(--cg-orange-soft);
    border-color: var(--cg-orange);
}

.trust-note p,
.safety-note p {
    margin: 0;
    font-size: 14px;
    color: var(--cg-ink);
}

/* Form steps */
.form-step {
    display: none;
    animation: fade-in 0.3s var(--easing);
}

.form-step.active {
    display: block;
}

.form-section {
    margin-bottom: 28px;
}

.form-section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--cg-ink);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--cg-ink);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--cg-ink);
    background: var(--cg-white);
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--cg-ink);
    transition: border-color 0.2s var(--easing), box-shadow 0.2s var(--easing);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cg-blue);
    box-shadow: 0 0 0 3px rgba(65,105,255,0.18);
}

.form-hint {
    font-size: 12px;
    color: var(--cg-gray);
    margin-top: -4px;
}

.form-row,
.datetime-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.date-selection {
    margin: 22px 0 26px;
}

.date-selection h3,
.time-selection h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--cg-ink);
    margin: 0 0 14px;
    text-align: left;
    font-family: var(--ff-display);
}

.date-selection-hint {
    margin: 0 0 16px;
    color: var(--cg-gray);
    font-size: 14px;
}

.weekend-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 900px) {
    .weekend-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .weekend-cards {
        grid-template-columns: 1fr;
    }
}

.weekend-card {
    background: var(--cg-white);
    border: var(--border-card);
    border-radius: var(--radius-lg);
    padding: 18px 16px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.22s var(--easing), box-shadow 0.22s var(--easing), border-color 0.22s var(--easing);
    box-shadow: var(--shadow-soft);
    user-select: none;
}

.weekend-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(26, 26, 26, 0.14);
    border-color: rgba(65, 105, 255, 0.35);
}

.weekend-card.selected {
    border-color: var(--cg-blue);
    box-shadow: 4px 4px 0 rgba(65, 105, 255, 0.35);
    transform: translateY(-1px);
}

.weekend-card .day-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--cg-blue-dark);
    margin-bottom: 6px;
}

.weekend-card .date {
    font-family: var(--ff-display);
    font-size: 34px;
    font-weight: 800;
    color: var(--cg-ink);
    line-height: 1;
    margin-bottom: 6px;
}

.weekend-card .month {
    font-size: 13px;
    color: var(--cg-gray);
    margin-bottom: 12px;
}

.weekend-card .slots-info {
    font-size: 12px;
    font-weight: 700;
    color: var(--cg-ink);
    background: var(--cg-blue-soft);
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    display: inline-block;
    border: 1px solid rgba(65, 105, 255, 0.25);
}

.time-selection {
    margin: 18px 0 26px;
    display: none;
}

.time-selection.active {
    display: block;
    position: relative;
    z-index: 3;
}

.selected-date-info {
    margin-bottom: 14px;
    padding: 12px 14px;
    background: var(--cg-cream);
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: var(--radius-md);
}

.selected-date-info .date-text {
    font-weight: 700;
    color: var(--cg-ink);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 12px 0 0;
    position: relative;
    z-index: 2;
}

.time-slots-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
    color: var(--cg-gray);
    font-size: 14px;
}

@media (max-width: 900px) {
    .time-slots-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .time-slots-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.time-slot {
    display: block;
    width: 100%;
    font: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
    background: var(--cg-white);
    border: 2px solid rgba(26, 26, 26, 0.16);
    border-radius: var(--radius-md);
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.18s var(--easing), box-shadow 0.18s var(--easing), border-color 0.18s var(--easing);
    box-shadow: 0 4px 14px rgba(26, 26, 26, 0.08);
}

button.time-slot:not(:disabled) {
    pointer-events: auto;
    touch-action: manipulation;
}

.time-slot:hover:not(.occupied) {
    transform: translateY(-1px);
    border-color: rgba(65, 105, 255, 0.5);
    box-shadow: 0 8px 18px rgba(26, 26, 26, 0.12);
}

.time-slot.selected {
    border-color: var(--cg-blue);
    background: var(--cg-blue-soft);
    box-shadow: 3px 3px 0 rgba(65, 105, 255, 0.35);
}

.time-slot.occupied {
    background: rgba(26, 26, 26, 0.04);
    border-color: rgba(26, 26, 26, 0.12);
    cursor: not-allowed;
    opacity: 0.55;
}

.time-slot .slot-time {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--cg-ink);
    margin-bottom: 4px;
}

.time-slot .slot-status {
    display: block;
    font-size: 11px;
    color: var(--cg-gray);
    font-weight: 600;
}

.time-slot.selected .slot-time,
.time-slot.selected .slot-status {
    color: var(--cg-ink);
}

.uploaded-file small {
    color: var(--cg-gray);
    font-weight: 500;
}

.lunch-break {
    grid-column: 1 / -1;
    text-align: center;
    padding: 12px;
    background: var(--cg-yellow);
    border-radius: var(--radius-md);
    border: 2px dashed rgba(26, 26, 26, 0.25);
    margin: 10px 0;
}

.lunch-break .lunch-icon {
    font-size: 18px;
    margin-bottom: 4px;
}

.lunch-break .lunch-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--cg-ink);
}

.legend {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--cg-gray);
    font-weight: 600;
}

.legend-box {
    width: 16px;
    height: 16px;
    border-radius: var(--radius-xs);
    border: 2px solid rgba(26, 26, 26, 0.18);
    background: var(--cg-white);
}

.legend-box.selected-legend {
    background: var(--cg-blue-soft);
    border-color: rgba(65, 105, 255, 0.55);
}

.legend-box.occupied-legend {
    background: rgba(26, 26, 26, 0.06);
    border-color: rgba(26, 26, 26, 0.14);
}

.form-group.half {
    margin-bottom: 0;
}

.fio-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

/* Package option cards */
.package-select-group {
    display: grid;
    gap: 12px;
}

.package-option {
    display: block;
    cursor: pointer;
    position: relative;
}

.package-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.package-option-card {
    position: relative;
    padding: 18px 20px;
    background: var(--cg-white);
    border: 2px solid var(--cg-ink);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    transition: background 0.2s var(--easing), transform 0.2s var(--easing);
}

.package-option input:checked + .package-option-card {
    background: var(--cg-blue);
    color: var(--cg-white);
}

.package-option input:checked + .package-option-card .package-option-type,
.package-option input:checked + .package-option-card .package-option-specs span {
    color: rgba(255,255,255,0.85);
}

.package-option-main {
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-option-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cg-cream);
    border: 2px solid var(--cg-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.package-option input:checked + .package-option-card .package-option-icon {
    background: var(--cg-yellow);
}

.package-option-info {
    display: flex;
    flex-direction: column;
}

.package-option-info strong {
    font-size: 16px;
    font-weight: 700;
    color: inherit;
}

.package-option-type {
    font-size: 13px;
    color: var(--cg-gray);
}

.package-option-price {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 800;
    color: inherit;
}

.package-option-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 4px;
}

.package-option-specs span {
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    background: var(--cg-cream);
    font-size: 12px;
    font-weight: 600;
    color: var(--cg-gray);
}

.package-option input:checked + .package-option-card .package-option-specs span {
    background: rgba(255,255,255,0.18);
    color: var(--cg-white);
}

.recommended-option .recommended-option-badge {
    position: absolute;
    top: -12px;
    right: 16px;
    padding: 4px 12px;
    background: var(--cg-orange);
    border-radius: var(--radius-pill);
    border: 2px solid var(--cg-ink);
    color: var(--cg-white);
    font-size: 11px;
    font-weight: 700;
}

/* Addon toggle */
.addon-toggle {
    display: block;
    cursor: pointer;
    position: relative;
}

.addon-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.addon-toggle-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    background: var(--cg-cream);
    border: 2px solid var(--cg-ink);
    border-radius: var(--radius-md);
    transition: background 0.2s var(--easing);
}

.addon-toggle input:checked + .addon-toggle-card {
    background: var(--cg-yellow);
}

.addon-toggle-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.addon-toggle-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cg-white);
    border: 2px solid var(--cg-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.addon-toggle-info div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.addon-toggle-info strong {
    font-size: 15px;
}

.addon-toggle-desc {
    font-size: 12px;
    color: var(--cg-gray);
}

.addon-toggle-price {
    font-weight: 700;
    color: var(--cg-orange);
    white-space: nowrap;
}

/* Participant block */
.participant-block {
    background: var(--cg-cream);
    border: 2px solid var(--cg-ink);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
}

.participant-title {
    font-size: 18px;
    margin-bottom: 16px;
}

.participant-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Experience, contact method, parking options (pill radios) */
.experience-options,
.contact-method-options,
.parking-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.experience-option,
.contact-method-option,
.parking-option {
    position: relative;
    cursor: pointer;
}

.experience-option input,
.contact-method-option input,
.parking-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.experience-option span,
.contact-method-option .contact-method-btn,
.parking-option span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--cg-ink);
    background: var(--cg-white);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s var(--easing), color 0.2s var(--easing);
}

.experience-option input:checked ~ span,
.contact-method-option input:checked ~ .contact-method-btn,
.parking-option input:checked ~ span {
    background: var(--cg-ink);
    color: var(--cg-white);
}

.cm-icon {
    font-size: 16px;
}

.parking-details {
    margin-top: 16px;
}

/* File upload */
.file-upload-area {
    border: 2px dashed var(--cg-ink);
    border-radius: var(--radius-md);
    padding: 36px 24px;
    text-align: center;
    background: var(--cg-cream);
    transition: background 0.2s var(--easing), border-color 0.2s var(--easing);
}

.file-upload-area.dragover {
    background: var(--cg-yellow);
    border-color: var(--cg-orange);
}

.upload-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.upload-text {
    font-size: 15px;
    color: var(--cg-ink);
    margin-bottom: 4px;
}

.upload-link {
    color: var(--cg-blue);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
}

.upload-hint {
    font-size: 13px;
    color: var(--cg-gray);
    margin: 0;
}

.uploaded-files {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Price summary */
.selected-package-summary {
    padding: 20px 24px;
    background: var(--cg-ink);
    color: var(--cg-white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-package-name {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 700;
}

.summary-details {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.summary-price {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--cg-yellow);
    margin-top: 4px;
}

.price-summary {
    background: var(--cg-cream);
    border: 2px solid var(--cg-ink);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 20px;
}

.price-item,
.price-total {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
}

.price-total {
    border-top: 2px solid var(--cg-ink);
    margin-top: 8px;
    padding-top: 12px;
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 800;
}

.terms-acceptance {
    font-size: 14px;
    color: var(--cg-gray);
    margin-bottom: 20px;
}

.terms-acceptance a {
    color: var(--cg-blue);
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form-actions .btn-primary,
.form-actions .btn-outline {
    flex: 1;
    min-width: 160px;
}

/* =============================================================
   FAQ
   ============================================================= */
.faq {
    background: var(--cg-cream);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto 40px;
    border: var(--border-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cg-white);
}

.faq-item {
    border-bottom: 2px solid var(--cg-ink);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: transparent;
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--cg-ink);
    text-align: left;
    line-height: 1.3;
    transition: background 0.2s var(--easing);
}

.faq-question:hover {
    background: var(--cg-cream);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cg-ink);
    color: var(--cg-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.3s var(--easing), transform 0.3s var(--easing);
}

.faq-item.open .faq-icon {
    background: var(--cg-orange);
    transform: rotate(45deg);
}

.faq-text {
    flex: 1;
}

.faq-answer {
    display: none;
    padding: 0 28px 24px 76px;
    color: var(--cg-gray);
}

.faq-item.open .faq-answer {
    display: block;
    animation: fade-in 0.3s var(--easing);
}

.faq-answer p {
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--cg-ink-soft);
    line-height: 1.6;
}

.faq-answer ul {
    margin: 12px 0;
    padding-left: 20px;
    list-style: disc;
}

.faq-answer li {
    font-size: 15px;
    color: var(--cg-ink-soft);
    margin-bottom: 6px;
}

.faq-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.telegram-icon {
    font-size: 18px;
}

/* =============================================================
   BLOG PREVIEW
   ============================================================= */
.blog-preview {
    background: var(--cg-cream-warm);
}

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

.blog-card {
    background: var(--cg-white);
    border: var(--border-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s var(--easing);
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-date {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 14px;
    background: var(--cg-cream);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--cg-gray);
}

.blog-card h3 {
    font-size: 22px;
}

.blog-card p {
    color: var(--cg-gray);
    font-size: 15px;
    flex: 1;
}

.blog-card .btn-outline {
    align-self: flex-start;
}

.blog-soon {
    align-self: flex-start;
    opacity: 0.55;
    cursor: default;
    pointer-events: none;
    user-select: none;
}

/* =============================================================
   CONTACT
   ============================================================= */
.contact {
    background: var(--cg-blue);
    color: var(--cg-white);
}

.contact .section-title,
.contact h2,
.contact h3,
.contact h4 {
    color: var(--cg-white);
}

.contact .section-title::after {
    content: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
}

.contact-info p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin-bottom: 24px;
}

.trust-seal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.seal-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-md);
}

.seal-item span {
    font-size: 22px;
}

.seal-item strong {
    color: var(--cg-white);
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.seal-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cg-white);
    color: var(--cg-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item strong {
    color: var(--cg-white);
    font-size: 15px;
    display: block;
}

.contact-item p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin: 0;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 20px;
}

.legal-links a {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cg-white);
    color: var(--cg-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.2s var(--easing), transform 0.2s var(--easing);
}

.social-links a:hover {
    background: var(--cg-yellow);
    transform: translateY(-2px);
    opacity: 1;
}

.contact-form {
    background: var(--cg-white);
    color: var(--cg-ink);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: var(--border-card);
}

.contact-form .form-group {
    margin-bottom: 14px;
}

.contact-form label {
    color: var(--cg-ink);
}

.contact-form .btn-primary {
    width: 100%;
}

.consent {
    font-size: 13px;
    color: var(--cg-gray);
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.45;
}

.consent-label input[type="checkbox"] {
    margin: 3px 0 0;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.consent a {
    color: var(--cg-blue);
    text-decoration: underline;
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
    background: var(--cg-ink);
    color: var(--cg-white);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: var(--cg-white);
    font-size: 26px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}

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

.footer-column h4 {
    color: var(--cg-white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.2s var(--easing);
}

.footer-column a:hover {
    color: var(--cg-yellow);
    opacity: 1;
}

.copyright {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
}

.copyright p {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    margin: 2px 0;
}

/* =============================================================
   CONSULTATION MODAL
   ============================================================= */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.8);
    backdrop-filter: blur(6px);
    z-index: 210;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
    animation: fade-in 0.25s var(--easing);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    position: relative;
    background: var(--cg-white);
    border-radius: var(--radius-lg);
    border: var(--border-card);
    padding: 40px 36px;
    max-width: 460px;
    width: 100%;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    animation: fade-in 0.3s var(--easing);
}

.modal-close {
    position: sticky;
    top: 14px;
    left: calc(100% - 40px);
    z-index: 2;
    width: 40px;
    height: 40px;
    margin: -26px 0 4px auto;
    border-radius: 50%;
    background: var(--cg-ink);
    color: var(--cg-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: background 0.2s var(--easing);
}

.modal-close:hover {
    background: var(--cg-blue);
}

.modal-body {
    text-align: center;
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cg-yellow);
    border: 2px solid var(--cg-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 16px;
}

.modal-body h3 {
    margin-bottom: 8px;
}

.modal-body p {
    color: var(--cg-gray);
    margin-bottom: 24px;
}

.modal-body form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-body input,
.modal-body select,
.modal-body textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--cg-ink);
    background: var(--cg-white);
    font-size: 15px;
    font-family: var(--ff-body);
}

.modal-body textarea {
    min-height: 92px;
    resize: vertical;
}

.modal-body label {
    display: block;
    margin-bottom: 6px;
    color: var(--cg-ink);
    font-size: 13px;
    font-weight: 700;
    text-align: left;
}

.modal-body .consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.modal-body input:focus,
.modal-body select:focus,
.modal-body textarea:focus {
    outline: none;
    border-color: var(--cg-blue);
    box-shadow: 0 0 0 3px rgba(65,105,255,0.18);
}

.modal-note {
    font-size: 12px;
    color: var(--cg-gray);
    margin-top: 8px;
}

/* =============================================================
   LEAD POPUP
   ============================================================= */
.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.8);
    backdrop-filter: blur(6px);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.popup.active {
    display: flex;
    animation: fade-in 0.3s var(--easing);
}

.popup-content {
    position: relative;
    background: var(--cg-white);
    border-radius: var(--radius-lg);
    border: var(--border-card);
    padding: 40px 36px;
    max-width: 520px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cg-ink);
    color: var(--cg-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.popup-close:hover {
    background: var(--cg-blue);
}

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

.popup-content p {
    margin-bottom: 16px;
}

.checklist-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.checklist-benefits li {
    font-size: 14px;
    color: var(--cg-ink-soft);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-video-wrapper {
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-decor--star { left: 4%; top: 4%; }
    .hero-decor--clapper { top: 68%; right: 4%; }

    .not-modeling-grid,
    .audience-fit-grid,
    .seo-grid,
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card.recommended {
        grid-column: span 2;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 64px;
    }

    body { font-size: 16px; }

    .container { padding: 0 20px; }

    .hero {
        padding: 64px 0 80px;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 44px);
    }

    .hero-decor { display: none; }

    .not-modeling-grid,
    .audience-fit-grid,
    .seo-grid,
    .pricing-grid,
    .portfolio-grid,
    .visuals-grid,
    .blog-grid,
    .trust-seal,
    .what-you-get-banner-grid,
    .footer-links,
    .additional-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.recommended {
        grid-column: auto;
    }

    .portfolio-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .portfolio-head-actions {
        width: 100%;
    }

    .portfolio-head-actions .btn-portfolio-all {
        width: 100%;
        justify-content: center;
    }

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

    .stats-section {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .form-row,
    .datetime-row,
    .fio-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-group.half {
        margin-bottom: 12px;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .form-actions .btn-primary,
    .form-actions .btn-outline {
        flex: 1 1 auto;
        width: 100%;
    }

    .progress-labels {
        font-size: 11px;
    }

    .progress-label {
        font-size: 11px;
    }

    .lightbox-content,
    .popup-content,
    .modal-content {
        padding: 28px 20px;
    }

    .modal-overlay {
        align-items: flex-start;
        padding: 12px;
    }

    .modal-content {
        width: min(100%, calc(100vw - 24px));
        max-width: none;
        max-height: calc(100vh - 24px);
        border-radius: 24px;
        padding: 20px 16px 24px;
    }

    .modal-close {
        width: 42px;
        height: 42px;
        margin: 0 0 2px auto;
        top: 8px;
        left: calc(100% - 42px);
        box-shadow: 0 4px 12px rgba(26, 26, 26, 0.18);
    }

    .modal-icon {
        margin-top: -8px;
    }

    #package-advice-modal .modal-body h3 {
        font-size: 24px;
    }

    #package-advice-modal .modal-body p {
        margin-bottom: 16px;
    }

    #package-advice-modal .modal-body form {
        gap: 9px;
    }

    .pricing-note-card {
        padding: 18px 14px;
    }

    .pricing-note-content {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 8px;
        font-size: 15px;
    }

    .pricing-note-main {
        white-space: normal;
        text-align: center;
        justify-content: center;
        border-radius: 18px;
        padding: 7px 12px;
    }

    .pricing-note-text {
        display: block;
        max-width: 280px;
    }

    .case-study-layout,
    .lightbox-compare-large,
    .lightbox-process-steps,
    .lightbox-grid-4 {
        grid-template-columns: 1fr;
    }

    .fixed-contact {
        right: 16px;
        bottom: 16px;
    }

    .fixed-contact .contact-btn {
        width: 48px;
        height: 48px;
    }

    .visuals-grid {
        gap: 16px;
    }

    .booking-container {
        padding: 24px 18px;
    }

    .guarantee-banner,
    .what-you-get-banner,
    .pricing-note-card,
    .additional-services-card {
        padding: 24px;
    }

    .footer {
        padding: 48px 0 24px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-outline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .hero-badges .hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .pricing-header h3 {
        font-size: 24px;
    }

    .price-value {
        font-size: 34px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .faq-question {
        padding: 18px 18px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 18px 18px 18px;
    }
}

/* Utility for hiding CF email-protect spans gracefully */
.__cf_email__ {
    color: inherit;
}

/* =============================================================
   CLAPPERBOARD / FILM-STRIP ACCENTS
   Thin diagonal black-white stripes evoking a film slate.
   ============================================================= */
.film-strip {
    height: 22px;
    width: 100%;
    background-color: #fff;
    background-image: repeating-linear-gradient(
        115deg,
        #111 0 28px,
        #fff 28px 56px
    );
    border-top: 2px solid var(--cg-ink);
    border-bottom: 2px solid var(--cg-ink);
    position: relative;
    z-index: 3;
}

.film-strip--thin { height: 14px; }
.film-strip--chunky { height: 28px; }

/* Slate bar on hero video — mimics the clapperboard's top */
.hero-video {
    padding-top: 26px;
}

.hero-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 26px;
    background-image: repeating-linear-gradient(
        115deg,
        #111 0 24px,
        #fff 24px 48px
    );
    border-bottom: 2px solid var(--cg-ink);
    z-index: 3;
}

/* Slate bar inset a bit from the dark frame - rounded top corners */
.hero-video,
.hero-video::before {
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
}

/* Mini clapperboard accents used inline (e.g. guarantee / banner corners) */
.film-strip-accent {
    display: inline-block;
    height: 10px;
    width: 100%;
    background-image: repeating-linear-gradient(
        115deg,
        #111 0 14px,
        #fff 14px 28px
    );
    border-top: 1px solid var(--cg-ink);
    border-bottom: 1px solid var(--cg-ink);
    margin: 8px 0;
}

/* Guarantee banner — top clapperboard trim */
.guarantee-banner {
    position: relative;
    overflow: hidden;
}

.guarantee-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 14px;
    background-image: repeating-linear-gradient(
        115deg,
        #fff 0 16px,
        #111 16px 32px
    );
    border-bottom: 2px solid var(--cg-ink);
}

.guarantee-banner {
    padding-top: 46px;
}

/* Footer — clapperboard top */
.footer {
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 22px;
    background-image: repeating-linear-gradient(
        115deg,
        #fff 0 24px,
        #111 24px 48px
    );
    border-bottom: 2px solid var(--cg-ink);
}

.footer {
    padding-top: 88px;
}

/* Stats section — clapperboard top */
.stats-section {
    position: relative;
    overflow: hidden;
    padding-top: 62px;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 18px;
    background-image: repeating-linear-gradient(
        115deg,
        #fff 0 20px,
        #111 20px 40px
    );
    border-bottom: 2px solid var(--cg-ink);
}

/* Standalone full-width divider — used between sections via <div class="film-strip"></div> */
.film-strip-divider {
    height: 26px;
    width: 100%;
    background-image: repeating-linear-gradient(
        115deg,
        #111 0 28px,
        #fff 28px 56px
    );
    border-top: 2px solid var(--cg-ink);
    border-bottom: 2px solid var(--cg-ink);
    position: relative;
    z-index: 4;
}

@media (max-width: 768px) {
    .film-strip,
    .film-strip-divider {
        height: 18px;
    }

    .hero-video::before {
        height: 20px;
    }

    .hero-video {
        padding-top: 20px;
    }

    .footer {
        padding-top: 72px;
    }

    .footer::before,
    .stats-section::before {
        height: 16px;
    }

    .stats-section {
        padding-top: 52px;
    }
}

/* =============================================================
   SITE HEADER (appears on scroll)
   ============================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition:
        transform 0.35s var(--easing),
        opacity 0.35s var(--easing),
        visibility 0s linear 0.35s;
}

.site-header.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition:
        transform 0.35s var(--easing),
        opacity 0.35s var(--easing),
        visibility 0s linear 0s;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--cg-ink);
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.site-header__logo:hover {
    opacity: 1;
    color: var(--cg-blue);
}

.site-header__logo-mark {
    font-size: 22px;
    line-height: 1;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 15px;
    font-weight: 500;
}

.site-header__nav a {
    color: var(--cg-ink-soft);
    position: relative;
    padding: 6px 2px;
}

.site-header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--cg-ink);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--easing);
}

.site-header__nav a:hover {
    opacity: 1;
    color: var(--cg-ink);
}

.site-header__nav a:hover::after {
    transform: scaleX(1);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.site-header__phone {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 15px;
    color: var(--cg-ink);
    white-space: nowrap;
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: var(--cg-ink);
    color: var(--cg-white);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--cg-ink);
    transition:
        background 0.25s var(--easing),
        color 0.25s var(--easing),
        transform 0.25s var(--easing);
}

.site-header__cta:hover {
    opacity: 1;
    background: var(--cg-blue);
    color: var(--cg-white);
    border-color: var(--cg-blue);
    transform: translateY(-2px);
}

.site-header__burger {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--cg-ink);
    background: var(--cg-white);
    padding: 0;
    position: relative;
}

.site-header__burger span {
    position: absolute;
    left: 9px;
    right: 9px;
    height: 2px;
    background: var(--cg-ink);
    border-radius: 2px;
    transition: transform 0.3s var(--easing), opacity 0.3s var(--easing), top 0.3s var(--easing);
}

.site-header__burger span:nth-child(1) { top: 12px; }
.site-header__burger span:nth-child(2) { top: 19px; }
.site-header__burger span:nth-child(3) { top: 26px; }

.site-header__burger[aria-expanded="true"] span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
}
.site-header__burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.site-header__burger[aria-expanded="true"] span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
}

.site-header__mobile {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px 20px 20px;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    background: rgba(255, 255, 255, 0.96);
}

.site-header__mobile a {
    padding: 14px 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--cg-ink);
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.site-header__mobile a:last-child {
    border-bottom: none;
    margin-top: 8px;
    padding: 14px 22px;
    text-align: center;
    background: var(--cg-ink);
    color: var(--cg-white);
    border-radius: var(--radius-pill);
    font-weight: 600;
}

.site-header.is-open .site-header__mobile {
    display: flex;
}

@media (max-width: 900px) {
    .site-header__nav {
        display: none;
    }
    .site-header__phone {
        display: none;
    }
    .site-header__cta {
        display: none;
    }
    .site-header__burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-header__inner {
        padding: 10px 0;
    }
    .site-header__logo-text {
        font-size: 18px;
    }
}

/* =============================================================
   NEW HERO BADGE (guarantee) + CASE-MINI ICON TWEAK
   ============================================================= */
.hero-badge--guarantee {
    background: rgba(159, 232, 199, 0.22);
    border-color: rgba(159, 232, 199, 0.55);
    color: #E6FFF2;
}

.case-mini-photo svg {
    color: var(--cg-white);
    width: 22px;
    height: 22px;
}

/* =============================================================
   PRICING — guarantee bar above the cards
   ============================================================= */
.pricing-guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 760px;
    margin: 0 auto 40px;
    padding: 14px 22px;
    background: var(--cg-mint);
    border: var(--border-thin);
    border-radius: var(--radius-pill);
    color: var(--cg-ink);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.35;
    text-align: center;
    box-shadow: 0 4px 0 var(--cg-ink);
}

.pricing-guarantee-badge__icon {
    font-size: 18px;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .pricing-guarantee-badge {
        font-size: 14px;
        padding: 12px 18px;
        border-radius: var(--radius-md);
    }
}

/* =============================================================
   FEATURE WARNING (inside START package)
   ============================================================= */
.features-list li.feature-warning {
    margin-top: 6px;
    padding: 10px 14px;
    background: #FFF5E1;
    border: 1px dashed #E0A200;
    border-radius: var(--radius-sm);
    color: #8A5A00;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.35;
}

.features-list li.feature-warning::before {
    content: none !important;
}

/* =============================================================
   PROCESS STEPS — numbered pills (was emojis)
   ============================================================= */
.process-steps .step .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 6px;
    border-radius: 50%;
    background: var(--cg-ink);
    color: var(--cg-white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.process-steps .step.step-1:not(.has-photo) { background: #FFE5D9; }
.process-steps .step.step-2:not(.has-photo) { background: #FFF5D1; }
.process-steps .step.step-3:not(.has-photo) {
    background: var(--cg-ink);
    color: var(--cg-white);
}
.process-steps .step.step-3:not(.has-photo) .step-num {
    background: var(--cg-white);
    color: var(--cg-ink);
}

/* Ensure header sits above hero without overlap when visible */
body.has-header-visible {
    /* No padding-top needed — hero has its own padding and header is translucent overlay */
}

/* =============================================================
   SECONDARY / LEGAL / BLOG SUBPAGES (styles-home unified)
   ============================================================= */

/* Компактный синий блок под заголовком (FAQ и т.п.) */
.hero.subpage-hero {
    min-height: 0;
    padding: clamp(56px, 10vw, 96px) 0 clamp(48px, 8vw, 72px);
}

.hero.subpage-hero .hero-title {
    max-width: 720px;
}

.hero.subpage-hero .hero-subtitle {
    max-width: 560px;
    margin-bottom: 20px;
}

.hero.subpage-hero .btn-outline {
    margin-top: 8px;
}

/* Длинные юр. страницы и статьи */
.content-page {
    padding: clamp(40px, 7vw, 88px) 0 clamp(56px, 9vw, 100px);
    background: var(--cg-cream);
}

.content-doc {
    max-width: 760px;
    margin: 0 auto;
    background: var(--cg-white);
    border: var(--border-card);
    border-radius: var(--radius-xl);
    padding: clamp(28px, 5vw, 48px);
    box-shadow: var(--shadow-soft);
}

/* Не наследовать глобальный section { padding } — там clamp(64px…120px) на каждый блок */
.content-doc section {
    padding: 0;
}

.content-doc h1 {
    font-family: var(--ff-display);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--cg-ink);
    line-height: 1.15;
    margin-bottom: 20px;
}

.content-doc h2 {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cg-ink);
    margin-top: 1.75rem;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--cg-blue-soft);
}

.content-doc section:first-of-type h2 {
    margin-top: 0.35rem;
}

.content-doc p,
.content-doc li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--cg-ink-soft);
}

.content-doc p {
    margin-bottom: 10px;
}

.content-doc p:last-child {
    margin-bottom: 0;
}

.content-doc ul {
    padding-left: 22px;
    list-style: disc;
    margin: 8px 0 10px;
}

.content-doc ul li {
    margin-bottom: 8px;
}

.subpage-mini-footer {
    background: var(--cg-ink);
    color: rgba(255, 255, 255, 0.88);
    padding: 28px 0;
    margin-top: 0;
}

.subpage-mini-footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.subpage-mini-footer a {
    color: var(--cg-white);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.subpage-mini-footer a:hover {
    opacity: 1;
    color: var(--cg-mint);
}

/* FAQ на отдельной странице */
.faq.faq-full {
    padding-top: clamp(40px, 7vw, 72px);
    padding-bottom: clamp(48px, 9vw, 96px);
}

.faq-category {
    font-family: var(--ff-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: var(--cg-ink);
    margin: 48px 0 20px;
    letter-spacing: -0.02em;
}

.faq-full .faq-category:first-of-type {
    margin-top: 0;
}

.faq-full-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid rgba(26, 26, 26, 0.08);
}

.footer-compact-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-compact-inner {
        grid-template-columns: 1fr auto;
        text-align: left;
        align-items: center;
    }
}

.footer-compact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

@media (min-width: 640px) {
    .footer-compact-links {
        justify-content: flex-end;
    }
}

.footer-compact-links a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.footer-compact-links a:hover {
    opacity: 1;
    color: var(--cg-white);
}

/* Блог: статья */
.blog-article-page {
    padding: clamp(40px, 7vw, 80px) 0 clamp(56px, 9vw, 100px);
    background: var(--cg-cream);
}

.blog-article-inner {
    max-width: 720px;
    margin: 0 auto;
}

.blog-article-inner header h1 {
    font-family: var(--ff-display);
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: var(--cg-ink);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.blog-article-inner .blog-date {
    margin-bottom: 28px;
}

.blog-article-inner article h2 {
    font-family: var(--ff-display);
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--cg-ink);
}

.blog-article-inner article p,
.blog-article-inner article li {
    font-size: 17px;
    line-height: 1.6;
    color: var(--cg-ink-soft);
}

.blog-article-inner article ul {
    list-style: disc;
    padding-left: 24px;
    margin: 16px 0;
}

.blog-article-inner article li {
    margin-bottom: 8px;
}

.blog-list-page {
    padding: clamp(40px, 7vw, 88px) 0 clamp(56px, 9vw, 100px);
    background: var(--cg-cream);
}

.blog-list-page header h1 {
    font-family: var(--ff-display);
    font-size: clamp(30px, 4.5vw, 42px);
    font-weight: 800;
    color: var(--cg-ink);
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.blog-list-page header p {
    color: var(--cg-gray);
    font-size: 17px;
    max-width: 560px;
    margin-bottom: 36px;
}

.blog-cta {
    margin-top: 48px;
    padding: 32px;
    background: var(--cg-white);
    border: var(--border-card);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.blog-cta h3 {
    font-family: var(--ff-display);
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--cg-ink);
}

.blog-cta p {
    color: var(--cg-gray);
    margin-bottom: 20px;
}

/* Панель менеджера (без pink legacy) */
.manager-page {
    min-height: 100vh;
    background: var(--cg-cream);
}

.manager-login-wrap {
    max-width: 480px;
    margin: clamp(48px, 12vw, 96px) auto;
    padding: 40px 36px;
    background: var(--cg-white);
    border: var(--border-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.manager-login-wrap h1 {
    margin: 0 0 10px;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: 26px;
    text-align: center;
    color: var(--cg-ink);
}

.manager-login-wrap > p {
    text-align: center;
    color: var(--cg-gray);
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.5;
}

.manager-login-wrap .form-group {
    margin-bottom: 16px;
}

.manager-login-wrap .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--cg-ink);
}

.manager-login-wrap input {
    width: 100%;
    height: 50px;
    border: var(--border-thin);
    border-radius: var(--radius-sm);
    padding: 0 16px;
    font-size: 16px;
    font-family: var(--ff-body);
    background: var(--cg-white);
    transition: box-shadow 0.2s var(--easing);
}

.manager-login-wrap input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(65, 105, 255, 0.2);
}

.manager-login-wrap button[type="submit"] {
    width: 100%;
    margin-top: 16px;
    height: 52px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    background: var(--cg-ink);
    color: var(--cg-white);
    border: var(--border-thin);
    box-shadow: 4px 4px 0 var(--cg-blue);
    cursor: pointer;
    transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing);
}

.manager-login-wrap button[type="submit"]:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--cg-blue-dark);
}

.login-error {
    margin-top: 14px;
    color: var(--cg-orange);
    text-align: center;
    font-weight: 600;
    min-height: 22px;
    font-size: 14px;
}

.manager-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px 64px;
}

.manager-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.manager-topbar h1 {
    margin: 0;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(22px, 4vw, 30px);
    color: var(--cg-ink);
}

.manager-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-manager {
    border: var(--border-thin);
    border-radius: var(--radius-pill);
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    font-family: inherit;
    transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing);
}

.btn-refresh {
    background: var(--cg-yellow);
    color: var(--cg-ink);
    box-shadow: 3px 3px 0 var(--cg-ink);
}

.btn-refresh:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--cg-ink);
}

.btn-logout {
    background: var(--cg-ink);
    color: var(--cg-white);
    box-shadow: 3px 3px 0 var(--cg-blue);
}

.btn-logout:hover {
    opacity: 1;
    background: var(--cg-blue-dark);
}

.manager-shell .legend {
    display: flex;
    gap: 18px;
    margin: 16px 0 26px;
    flex-wrap: wrap;
}

.manager-shell .legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cg-gray);
    font-size: 14px;
}

.manager-shell .legend-dot {
    width: 14px;
    height: 14px;
    border-radius: var(--radius-xs);
    flex-shrink: 0;
}

.manager-shell .dot-work {
    background: var(--cg-blue-soft);
    border: 2px solid var(--cg-blue);
}

.manager-shell .dot-busy {
    background: var(--cg-orange-soft);
    border: 2px dashed var(--cg-orange);
}

.manager-shell .dot-table {
    background: var(--cg-cream);
    border: 2px solid rgba(26, 26, 26, 0.18);
}

.manager-month-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.month-chip {
    border: var(--border-thin);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    background: var(--cg-white);
    color: var(--cg-ink);
    transition: background 0.15s, border-color 0.15s, transform 0.15s var(--easing);
}

.month-chip:hover {
    border-color: var(--cg-blue);
}

.month-chip--active {
    background: var(--cg-ink);
    color: var(--cg-white);
    border-color: var(--cg-ink);
}

.day-card {
    background: var(--cg-white);
    border: var(--border-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 22px;
    margin-bottom: 18px;
}

.day-card__head {
    margin-bottom: 18px;
}

.day-card__date {
    font-weight: 800;
    font-family: var(--ff-display);
    color: var(--cg-ink);
    font-size: clamp(17px, 2.8vw, 20px);
    margin-bottom: 10px;
    line-height: 1.25;
}

.day-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.day-card__count {
    font-size: 14px;
    font-weight: 600;
    color: var(--cg-gray);
}

.day-card__breaks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.pill-work-hours {
    background: var(--cg-blue-soft);
    color: var(--cg-ink);
    border: 2px solid var(--cg-blue);
}

.pill-busy-prefix {
    margin-right: 4px;
    font-weight: 800;
}

.day-title {
    font-weight: 800;
    font-family: var(--ff-display);
    color: var(--cg-ink);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 17px;
}

.period-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.period-pill {
    border-radius: var(--radius-pill);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
}

.pill-busy {
    background: var(--cg-orange-soft);
    color: var(--cg-ink);
    border: 2px solid var(--cg-orange);
}

.pill-booked {
    background: var(--cg-cream);
    color: var(--cg-gray);
    border: 2px solid rgba(26, 26, 26, 0.12);
}

.bookings-table-wrap {
    overflow-x: auto;
}

.bookings-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1160px;
}

.bookings-table th,
.bookings-table td {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    font-size: 14px;
    vertical-align: top;
}

.bookings-table th {
    color: var(--cg-gray-soft);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bookings-table .contact-btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-radius: var(--radius-pill);
    padding: 7px 12px;
    border: var(--border-thin);
    margin-right: 6px;
    margin-bottom: 4px;
}

.bookings-table .contact-telegram {
    background: var(--cg-blue-soft);
}

.bookings-table .contact-max {
    background: #f0e8ff;
}

.bookings-table .contact-phone {
    background: rgba(159, 232, 199, 0.35);
}

.bookings-table .contact-whatsapp {
    background: rgba(37, 211, 102, 0.15);
}

.muted {
    color: var(--cg-gray-soft);
}

.error {
    color: var(--cg-orange);
    font-weight: 700;
}

.stack-line {
    margin-bottom: 6px;
    line-height: 1.35;
}

.stack-line:last-child {
    margin-bottom: 0;
}

.pkg-chip {
    display: inline-block;
    border-radius: var(--radius-pill);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.pkg-chip--start {
    background: rgba(255, 107, 157, 0.18);
    color: var(--cg-ink);
    border: 1px solid rgba(255, 107, 157, 0.55);
}

.pkg-chip--pro {
    background: rgba(129, 140, 248, 0.25);
    color: var(--cg-ink);
    border: 1px solid rgba(99, 102, 241, 0.45);
}

.pkg-chip--casting {
    background: rgba(251, 191, 36, 0.3);
    color: var(--cg-ink);
    border: 1px solid rgba(245, 158, 11, 0.6);
}

.pkg-chip--default {
    background: var(--cg-cream);
    color: var(--cg-gray);
    border: 1px solid rgba(26, 26, 26, 0.12);
}

.status-chip {
    display: inline-block;
    border-radius: var(--radius-pill);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
}

.status-chip--busy {
    background: rgba(26, 26, 26, 0.08);
    border: 1px solid rgba(26, 26, 26, 0.2);
}

.status-chip--new {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.status-chip--ok {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(22, 163, 74, 0.45);
}

.status-chip--pay {
    background: rgba(251, 191, 36, 0.25);
    border: 1px solid rgba(245, 158, 11, 0.55);
}

.status-chip--default {
    background: var(--cg-cream);
    border: 1px solid rgba(26, 26, 26, 0.1);
    color: var(--cg-gray);
}

.form-chip {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    white-space: nowrap;
}

.form-chip--site {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.35);
    color: #1d4ed8;
}

.form-chip--dop {
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(147, 51, 234, 0.35);
    color: #6b21a8;
}

.form-chip--default {
    background: var(--cg-cream);
    border: 1px solid rgba(26, 26, 26, 0.1);
    color: var(--cg-gray);
}

.booking-source-hint {
    display: block;
    font-size: 0.7rem;
    margin-top: 0.15rem;
}

.manager-share {
    font-weight: 600;
    color: var(--cg-ink);
}

.bookings-table td.parking-needed {
    background: var(--cg-orange-soft);
    border-left: 3px solid var(--cg-orange);
    font-weight: 700;
}

.parking-text {
    color: var(--cg-ink);
}

.parking-note {
    font-weight: 600;
    color: var(--cg-gray);
    font-size: 13px;
}

/* --- CRO: hero trust strip, reviews, payment microcopy, manager inbox, phase 2 --- */

.packages-compare-details {
    margin: 28px 0 8px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: var(--radius-lg);
    background: #fff;
    overflow: hidden;
}

.packages-compare-summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--cg-ink);
    text-align: center;
    user-select: none;
}

.packages-compare-summary::-webkit-details-marker {
    display: none;
}

.packages-compare-summary::after {
    content: " ▾";
    font-weight: 600;
    color: var(--cg-gray);
}

.packages-compare-details[open] .packages-compare-summary::after {
    content: " ▴";
}

.packages-compare-details .packages-compare-scroll {
    padding: 0 12px 16px;
}

.packages-compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.packages-compare {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 14px;
}

.packages-compare th,
.packages-compare td {
    padding: 10px 12px;
    border: 1px solid rgba(26, 26, 26, 0.1);
    text-align: center;
}

.packages-compare th:first-child,
.packages-compare td:first-child {
    text-align: left;
    font-weight: 600;
}

.packages-compare thead th {
    background: var(--cg-cream);
}

.reviews {
    padding: 64px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.review-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(26, 26, 26, 0.1);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.review-card--quote {
    background: linear-gradient(160deg, #f7faf5, #fff);
}

.review-bubble {
    position: relative;
    padding: 14px 16px;
    border-radius: 18px 18px 18px 6px;
    background: #fff;
    border: 2px solid rgba(26, 26, 26, 0.1);
    box-shadow: 0 2px 10px rgba(26, 26, 26, 0.06);
}

.review-bubble::before {
    content: "💬";
    position: absolute;
    top: -10px;
    right: 12px;
    font-size: 14px;
    opacity: 0.55;
}

.review-card--quote .review-quote {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.review-context {
    font-size: 12px;
    color: var(--cg-gray);
}

.review-card--screenshot {
    padding: 10px;
}

.review-screenshot {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #eef1f5;
    line-height: 0;
}

.review-screenshot img {
    width: 100%;
    height: auto;
    max-height: 340px;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
}

.review-caption {
    margin: 0;
    font-size: 12px;
    color: var(--cg-gray);
    text-align: center;
}

.review-card--audio {
    justify-content: center;
    min-height: 120px;
    background: linear-gradient(160deg, #fff8e6, #fff);
}

.review-audio-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-audio-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cg-yellow);
    border: 2px solid var(--cg-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.review-audio-title {
    font-weight: 800;
    font-size: 15px;
    color: var(--cg-ink);
}

.review-audio-player {
    width: 100%;
    margin-top: 4px;
}

.review-screen-placeholder {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, #e8eef5, #d0dae8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--cg-gray);
    font-weight: 600;
}

.review-quote {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--cg-ink);
}

.review-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.review-meta strong {
    font-weight: 700;
}

.review-package {
    background: rgba(255, 107, 157, 0.12);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
}

.reviews-cta {
    margin-top: 28px;
    text-align: center;
}

.payment-microcopy {
    margin: 16px 0;
    padding: 14px 16px;
    background: var(--cg-cream);
    border-radius: var(--radius-md);
    font-size: 13px;
    line-height: 1.55;
    color: var(--cg-gray);
}

.payment-microcopy p {
    margin: 0 0 8px;
}

.payment-microcopy p:last-child {
    margin-bottom: 0;
}

.payment-microcopy a {
    color: var(--cg-ink);
}

.popup-vk-hint {
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--cg-gray);
    text-align: center;
    line-height: 1.4;
}

.hero-vk-checklist {
    margin: 14px 0 0;
    font-size: 14px;
}

.hero-vk-checklist a {
    color: var(--cg-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-vk-checklist a[aria-disabled="true"] {
    opacity: 0.5;
    pointer-events: none;
}

.popup-thankyou {
    text-align: center;
    padding: 8px 0 4px;
}

.popup-thankyou h4 {
    margin: 0 0 8px;
}

.popup-thankyou .btn-primary {
    margin-top: 16px;
    display: inline-block;
}

.form-success-panel {
    padding: 16px 0;
    text-align: center;
}

.form-success-panel p {
    margin: 0 0 12px;
    line-height: 1.5;
}

.manager-inbox-section {
    margin-bottom: 32px;
}

.manager-section-title {
    font-size: 1.25rem;
    margin: 0 0 8px;
}

.manager-inbox-hint {
    margin: 0 0 12px;
}

.manager-inbox-wrap {
    margin-top: 12px;
}

.inbox-table {
    font-size: 13px;
}

.inbox-message {
    max-width: 220px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--cg-gray);
}

.portfolio-filters-group {
    margin-bottom: 16px;
}

.proof-photo {
    width: 100%;
    border-radius: var(--radius-md);
    display: block;
}

.proof-caption {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--cg-gray);
}

.team-block {
    padding: 56px 0;
}

.team-intro {
    margin-bottom: 32px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.team-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 18px;
    align-items: start;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(26, 26, 26, 0.08);
    padding: 22px;
    margin: 0;
}

.team-photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #e8e8e8;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    filter: grayscale(100%);
}

.team-text h3 {
    margin: 0 0 4px;
    font-size: 1.25rem;
}

.team-role {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--cg-pink);
    text-transform: none;
}

.team-text > p:last-child {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--cg-gray);
}

.sticky-mobile-cta {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    gap: 10px;
    align-items: center;
}

.sticky-mobile-cta__book {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    background: var(--cg-pink);
    color: #fff;
    font-weight: 700;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-size: 14px;
}

.sticky-mobile-cta__wa {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    font-weight: 800;
    border-radius: 50%;
    text-decoration: none;
    font-size: 13px;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
    }

    body {
        padding-bottom: 72px;
    }

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

    .team-photo {
        margin: 0 auto;
    }

    .team-role {
        text-align: center;
    }
}

