/* ========================================
   МУРКОТЕКА SURVEY — Styles
   Palette from murino-landing
   ======================================== */

:root {
    --peach: #FFAD8F;
    --peach-light: #FFE4D9;
    --coral: #FF7B5F;
    --teal: #7ECEC1;
    --teal-dark: #5BB5A6;
    --cream: #FFF9F5;
    --warm-white: #FFFDFB;
    --charcoal: #3D3D3D;
    --charcoal-light: #6B6B6B;
    --yellow: #FFD93D;
    --purple-soft: #C4B0FF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

.handwritten {
    font-family: 'Caveat', cursive;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

@keyframes morphBlob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 50% 70% 50%; }
    75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
}

@keyframes paw {
    0%, 100% { transform: scale(1) rotate(-5deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ========================================
   HEADER
   ======================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 249, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--coral);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-paw {
    font-size: 1.5rem;
    animation: paw 2s ease-in-out infinite;
}

.btn-book {
    background: var(--coral);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 123, 95, 0.3);
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 123, 95, 0.4);
}

/* ========================================
   HERO
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--peach-light) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--teal);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.15;
    animation: morphBlob 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: var(--peach);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.2;
    animation: morphBlob 12s ease-in-out infinite reverse;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content { position: relative; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease;
}

.hero-badge::before { content: '🎉'; }

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero h1 span {
    position: relative;
    color: var(--coral);
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--yellow);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.6;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--charcoal-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--coral);
    color: white;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 123, 95, 0.35);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 123, 95, 0.45);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-main-image {
    width: 100%;
    height: 400px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: morphBlob 20s ease-in-out infinite;
    box-shadow: 0 30px 60px rgba(126, 206, 193, 0.3);
    overflow: hidden;
    position: relative;
}

.hero-cat-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-card {
    position: absolute;
    background: white;
    padding: 1rem 1.3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 5s ease-in-out infinite;
}

.hero-card-1 { top: 10%; left: -10%; animation-delay: 0s; }
.hero-card-2 { bottom: 15%; right: -5%; animation-delay: 1s; }
.hero-card-3 { bottom: 5%; left: 5%; animation-delay: 2s; }

.hero-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.hero-card-icon.peach { background: var(--peach-light); }
.hero-card-icon.teal { background: rgba(126, 206, 193, 0.2); }
.hero-card-icon.yellow { background: rgba(255, 217, 61, 0.3); }

.hero-card-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-card-text span {
    font-size: 0.8rem;
    color: var(--charcoal-light);
}

/* ========================================
   SECTIONS — Common
   ======================================== */

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

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--charcoal-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   RECOGNITION
   ======================================== */

.recognition {
    padding: 6rem 2rem;
    background: white;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.recognition-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s ease;
}

.recognition-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.recognition-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.recognition-card p {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
}

.recognition-empathy {
    text-align: center;
    font-size: 1.6rem;
    color: var(--coral);
    margin-top: 1rem;
}

/* ========================================
   VALUE PROPOSITION
   ======================================== */

.value-prop {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--peach-light) 100%);
    position: relative;
    overflow: hidden;
}

.value-prop::before {
    content: '🐾';
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 8rem;
    opacity: 0.1;
    animation: paw 3s ease-in-out infinite;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    gap: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.value-icon.coral { background: rgba(255, 123, 95, 0.15); }
.value-icon.teal { background: rgba(126, 206, 193, 0.2); }
.value-icon.yellow { background: rgba(255, 217, 61, 0.25); }
.value-icon.purple { background: rgba(196, 176, 255, 0.25); }

.value-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-content p {
    color: var(--charcoal-light);
    line-height: 1.7;
}

/* ========================================
   SEGMENTS
   ======================================== */

.segments {
    padding: 6rem 2rem;
    background: white;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.segment-card {
    background: var(--cream);
    padding: 2rem 1.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.segment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.segment-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.segment-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.segment-card p {
    color: var(--charcoal-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   CAT YOGA FEATURE
   ======================================== */

.cat-yoga-feature {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--peach-light) 0%, rgba(196, 176, 255, 0.15) 100%);
    position: relative;
    overflow: hidden;
}

.cat-yoga-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.cat-yoga-visual {
    display: flex;
    justify-content: center;
}

.cat-yoga-blob {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--purple-soft) 0%, var(--peach) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    animation: morphBlob 18s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(196, 176, 255, 0.3);
    letter-spacing: 0.2rem;
}

.cat-yoga-text .section-title {
    text-align: left;
}

.cat-yoga-text .section-label {
    text-align: left;
}

.cat-yoga-desc {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cat-yoga-perks {
    list-style: none;
}

.cat-yoga-perks li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 1.05rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cat-yoga-perks li span {
    font-size: 1.4rem;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .cat-yoga-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cat-yoga-text .section-title,
    .cat-yoga-text .section-label {
        text-align: center;
    }

    .cat-yoga-blob {
        width: 250px;
        height: 250px;
        font-size: 4rem;
    }

    .cat-yoga-perks li {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .cat-yoga-blob {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    .cat-yoga-perks li {
        font-size: 0.95rem;
        text-align: left;
        justify-content: flex-start;
    }
}

/* ========================================
   HOW IT WORKS
   ======================================== */

.how-it-works {
    padding: 6rem 2rem;
    background: var(--cream);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--peach) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.step-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.step-content p {
    color: var(--charcoal-light);
}

/* ========================================
   BARRIERS
   ======================================== */

.barriers {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--peach-light) 0%, var(--cream) 100%);
}

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

.barrier-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.barrier-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.barrier-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--coral);
}

.barrier-card p {
    color: var(--charcoal-light);
    line-height: 1.7;
}

/* ========================================
   SURVEY CTA
   ======================================== */

.survey-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--coral) 0%, #FF9A85 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.survey-cta::before {
    content: '🐱';
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10rem;
    opacity: 0.15;
}

.survey-cta::after {
    content: '🐾';
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    opacity: 0.15;
}

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

.survey-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.survey-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--coral);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: var(--charcoal);
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
    display: inline-flex;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-top: 0.5rem;
}

footer h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

footer ul { list-style: none; }
footer li { margin-bottom: 0.6rem; }

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover { color: var(--peach); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   SURVEY OVERLAY
   ======================================== */

.survey-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(61, 61, 61, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.survey-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.survey-container {
    background: var(--cream);
    border-radius: 28px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    animation: scaleIn 0.3s ease;
}

.survey-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: white;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal-light);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.survey-close:hover {
    background: var(--coral);
    color: white;
}

.survey-progress {
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 28px 28px 0 0;
    overflow: hidden;
}

.survey-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--coral), var(--peach));
    border-radius: 4px;
    transition: width 0.4s ease;
    width: 0%;
}

.survey-body {
    padding: 2.5rem 2rem;
}

/* Survey question screen */
.survey-screen {
    animation: fadeInUp 0.35s ease;
}

.survey-screen h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.survey-screen .survey-subtitle {
    color: var(--charcoal-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.survey-step-label {
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: var(--teal-dark);
    margin-bottom: 0.5rem;
}

/* Option cards */
.survey-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    color: var(--charcoal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    user-select: none;
}

.option-card:hover {
    border-color: var(--peach);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.option-card.selected {
    border-color: var(--coral);
    background: var(--peach-light);
    box-shadow: 0 4px 15px rgba(255, 123, 95, 0.2);
}

.option-card .option-emoji {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.option-card .option-check {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    margin-left: auto;
}

.option-card.selected .option-check {
    background: var(--coral);
    border-color: var(--coral);
}

.option-card.selected .option-check::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Multi-select checkbox variant */
.option-card.multi .option-check {
    border-radius: 6px;
}

/* "Other" free-text input */
.option-other-wrap {
    background: white;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.option-other-wrap:focus-within,
.option-other-wrap.selected {
    border-color: var(--coral);
    background: var(--peach-light);
}

.option-other-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    color: var(--charcoal);
    width: 100%;
}

.option-other-input::placeholder {
    color: #bbb;
    font-weight: 500;
}

/* Survey navigation */
.survey-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.survey-btn-back {
    background: none;
    border: none;
    color: var(--charcoal-light);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.survey-btn-back:hover {
    background: rgba(0, 0, 0, 0.05);
}

.survey-btn-next {
    background: var(--coral);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 123, 95, 0.3);
    margin-left: auto;
}

.survey-btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 123, 95, 0.4);
}

.survey-btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Text input for telegram */
.survey-input-group {
    margin-bottom: 1rem;
}

.survey-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    font-size: 1.1rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    background: white;
    color: var(--charcoal);
    transition: all 0.3s ease;
    outline: none;
}

.survey-input:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 4px rgba(255, 123, 95, 0.1);
}

.survey-input::placeholder {
    color: #bbb;
    font-weight: 500;
}

.survey-skip-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--charcoal-light);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    background: none;
    border: none;
    font-family: 'Nunito', sans-serif;
}

.survey-skip-link:hover {
    color: var(--charcoal);
}

/* Result screen */
.survey-result {
    text-align: center;
    animation: fadeInUp 0.4s ease;
}

.survey-result-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.survey-result h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.survey-result p {
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.survey-promo-code {
    background: white;
    border: 2px dashed var(--coral);
    border-radius: 16px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.survey-promo-code span {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    margin-bottom: 0.3rem;
}

.survey-promo-code strong {
    font-size: 1.6rem;
    color: var(--coral);
    letter-spacing: 2px;
}

.survey-result-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.survey-result-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.survey-result-link.primary {
    background: var(--coral);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 123, 95, 0.3);
}

.survey-result-link.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 123, 95, 0.4);
}

.survey-result-link.secondary {
    background: white;
    color: var(--charcoal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.survey-result-link.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.share-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1rem;
}

.share-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.tg {
    background: #2AABEE;
    color: white;
}

.share-btn.vk {
    background: #4680C2;
    color: white;
}

/* Disqualification screen */
.survey-disqualify {
    text-align: center;
    animation: fadeInUp 0.4s ease;
}

.survey-disqualify-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.survey-disqualify h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.survey-disqualify p {
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ========================================
   SCROLL REVEAL
   ======================================== */

.reveal-element {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 { font-size: 2.6rem; }

    .hero-visual { order: -1; }

    .hero-main-image {
        height: 300px;
        font-size: 7rem;
    }

    .hero-card { display: none; }

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

    .value-grid,
    .recognition-grid,
    .barriers-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 640px) {
    .hero {
        padding: 6rem 1rem 3rem;
    }

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

    .section-title { font-size: 1.8rem; }

    .survey-cta h2 { font-size: 1.8rem; }

    .btn-primary {
        width: auto;
        justify-content: center;
        font-size: 0.85rem;
        padding: 0.8rem 1.3rem;
    }

    .btn-book {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

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

    .value-card {
        flex-direction: column;
        text-align: center;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    /* Survey mobile */
    .survey-container {
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
        align-self: flex-end;
    }

    .survey-body {
        padding: 2rem 1.5rem;
    }

    .survey-screen h2 {
        font-size: 1.35rem;
    }

    .option-card {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 380px) {
    .hero h1 { font-size: 1.7rem; }
    .section-title { font-size: 1.5rem; }
    .survey-cta h2 { font-size: 1.5rem; }
}
