:root {
    /* VIEN Brand Colors - Основна палітра */
    --primary: #85265C;           /* Burgundy (замість #7D2E68) */
    --primary-dark: #4A1036;      /* Dark Burgundy для hover */
    --secondary: #5f7e7c;         /* Sage Green (замість #8FA7A0) */
    --secondary-light: #b1cdb6;   /* Light Sage для фонів */
    --accent: #E54551;            /* Coral Red для акцентів */
    --success: #5f7e7c;           /* Sage Green для галочок */
    --alert: #E54551;             /* Coral Red для помилок */
    
    /* Додаткові VIEN кольори */
    --vien-pink: #de929c;         /* Dusty Pink */
    --vien-beige: #d0aaaa;        /* Beige Rose */
    --vien-grey: #e1e8e8;         /* Light Grey */
    
    /* Neutrals */
    --bg: #F5F5F5;
    --bg-white: #FFFFFF;
    --text: #2D2D2D;
    --text-secondary: #666666;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(74, 16, 54, 0.08);
    --shadow-md: 0 4px 20px rgba(74, 16, 54, 0.12);
    --shadow-lg: 0 8px 40px rgba(133, 38, 92, 0.15);
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --radius: 16px;
    --radius-sm: 8px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overscroll-behavior: none;
}

body {
    font-family: 'Comfortaa', cursive;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.btn-white:hover {
    background: var(--bg);
    transform: translateY(-2px);
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Mobile Fixed CTA - hidden by default */
.mobile-fixed-cta {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero-desktop {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, var(--primary) 0%, #6d2150 100%);
}

.hero {
    min-height: auto;
    padding: 120px 0 60px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    gap: 0;
    background: linear-gradient(135deg, #85265C 0%, #A73D6E 50%, #C75A7A 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(133, 38, 92, 0.25);
}

.hero-content {
    position: relative;
    z-index: 1;
    /* flex: 1.2; */
    padding: 48px 48px 48px 56px;
    max-width: calc(100% - 448px)
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: calc(100% - 448px);
}

.photo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 48px 40px 0;
    width: calc(400px + 48px);
    height: auto;
}

.hero-photo-inner {
    width: 400px;
    height: 100%;
    border-radius: 20px;
    overflow: hidden; 
    background: white;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    object-fit: cover;
}

.hero-photo-inner img {
    width: 100%;
    height: 100%;
    transform: scale(1.1); 
    transform-origin: center;
    object-fit: cover;
}


.hero-photo img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    background: white;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-logo-section {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
}

.hero-logo-large {
    width: 100px;
    height: auto;
    flex-shrink: 0;
}

.hero-brand-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: white;
    font-weight: 600;
    line-height: 1.3;
    padding-top: 8px;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-title span {
    /* color: rgba(255,255,255,0.85); */
}

.hero-subtitle {
    font-size: 18px;
    /* color: rgba(255,255,255,0.9); */
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    color: white;
}

.hero-feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature-icon svg {
    width: 14px;
    height: 14px;
    stroke: white;
}

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

.hero-cta .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

.hero-trust-text {
    color: rgba(255,255,255,0.8);
    margin-top: 24px;
}

.hero-trust-text strong {
    color: white;
}

/* Mobile hero image - hidden on desktop */
.hero-mobile-image {
    display: none;
}

.hero-mobile-cta {
    display: none;
}

.hero-mobile {
    display: none;
}

.hero-mobile-cta-section {
    display: none;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);;
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.hero-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-feature-icon svg {
    width: 14px;
    height: 14px;
    color: white;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(143, 167, 160, 0.3);
}

.hero-trust-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-trust-text strong {
    color: var(--primary);
    font-weight: 600;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-align: center;
    padding: 40px;
}

/* ===== SYMPTOMS SECTION ===== */
.symptoms {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.section-title {
    font-size: 42px;
    color: var(--text);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.symptoms-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
}

/* Scenarios Grid for Hyperformers */
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.scenario-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px;
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

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

.scenario-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scenario-line {
    font-family: 'Comfortaa', cursive;
    font-size: 18px;
    color: var(--text);
    line-height: 1.5;
    margin: 0;
}

.scenario-line.highlight {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.scenario-line.fade {
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .scenarios-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .scenario-card {
        padding: 28px;
    }
    
    .scenario-line {
        font-size: 16px;
    }
    
    .scenario-line.highlight {
        font-size: 20px;
    }
}

.symptoms-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.symptom-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(143, 167, 160, 0.2);
    transition: var(--transition);
}

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

.symptom-item:hover {
    padding-left: 8px;
}

.symptom-item:hover .symptom-marker {
    background: var(--primary);
}

.symptom-marker {
    width: 4px;
    height: 4px;
    min-width: 4px;
    background: var(--secondary);
    border-radius: 50%;
    margin-top: 10px;
    transition: var(--transition);
}

.symptom-text {
    font-family: 'Comfortaa', cursive;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.5;
}

.symptoms-validation {
    background: var(--secondary-light);
    border-radius: var(--radius);
    padding: 32px 40px;
    text-align: center;
    margin-top: 48px;
}

.symptoms-validation p {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    color: var(--primary);
    margin: 0;
    line-height: 1.5;
}

/* ===== HOW WE HELP SECTION ===== */
/* ===== HOW WE HELP SECTION ===== */
.how-section {
    padding: var(--section-padding);
    background: var(--secondary);
    position: relative;
    overflow: visible;
}

.how-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.how-section .section-header {
    color: white;
}

.how-section .section-title {
    color: white;
}

.how-section .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 20px;
    overflow: visible;
    padding-right: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.how-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    padding: 28px 32px;
    padding-right: 200px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(10px);
    overflow: visible;
    min-height: 160px;
}

.how-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(133, 38, 92, 0.2);
}

.how-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.how-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.5;
}

/* 2D іконка - Лабораторія */
.how-icon.lab-icon {
    background: rgba(95, 126, 124, 0.15);
}

.how-icon.lab-icon svg {
    stroke: var(--secondary);
}

/* 2D іконка - Нутриціологія */
.how-icon.nutrition-icon {
    background: rgba(177, 205, 182, 0.25);
}

.how-icon.nutrition-icon svg {
    stroke: #5B9279;
}

/* 2D іконка - Коучинг */
.how-icon.coaching-icon {
    background: rgba(222, 146, 156, 0.2);
}

.how-icon.coaching-icon svg {
    stroke: var(--primary);
}

.how-card-content {
    flex: 1;
    text-align: left;
}

.how-card-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid white;
    box-shadow: 0 8px 30px rgba(133, 38, 92, 0.2);
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.how-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-card-title {
    font-family: 'Comfortaa', cursive;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.3;
}

.how-card-title span {
    color: var(--primary);
}

.how-card-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.how-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.how-result {
    text-align: center;
    margin-top: 8px;
}

.how-arrow {
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
    animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.7;
    }
}

.how-result-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.how-result-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.how-result-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    flex-shrink: 0;
}

.how-result-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.assistant-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 32px 48px;
    max-width: 600px;
    margin: 0 auto;
    flex-direction: column;
}
.assistant-flex {
    gap: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assistant-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.assistant-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.assistant-text {
    text-align: left;
}

.assistant-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.assistant-subtitle {
    font-family: 'Comfortaa', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-style: italic;
}

/* ===== LEAD FORM CTA ===== */
.lead-cta {
    padding: var(--section-padding);
    background: var(--bg);
}

.lead-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.lead-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 32px;
    line-height: 1.2;
}

.lead-cta-title span, .lead-cta-text span{
    color: var(--primary);
}

.lead-cta-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lead-cta-text p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    background: rgba(177, 205, 182, 0.15);
    padding: 24px;
    border-radius: var(--radius-sm);
}

.lead-cta-text strong {
    color: var(--text);
    font-weight: 600;
}

.lead-cta-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(95, 126, 124, 0.2);
    display: flex;
    flex-direction: column;
}

.form-title {
    font-family: 'Comfortaa', cursive;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 28px;
    line-height: 1.4;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.form-group textarea {
    padding: 14px 16px;
    border: 1.5px solid rgba(95, 126, 124, 0.3);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: 'Comfortaa', cursive;
    transition: var(--transition);
    background: white;
    resize: vertical;
    min-height: 90px;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(133, 38, 92, 0.1);
}

.required {
    color: var(--accent);
}

.form-group input {
    padding: 14px 16px;
    border: 1.5px solid rgba(95, 126, 124, 0.3);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: 'Comfortaa', cursive;
    transition: var(--transition);
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(133, 38, 92, 0.1);
}

.form-btn {
    width: 100%;
    margin-top: 8px;
    font-size: 16px;
    padding: 16px;
}

.form-footer {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(95, 126, 124, 0.15);
}

.lang-switch {
    background: transparent;
    border: 1.5px solid rgba(95, 126, 124, 0.3);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Comfortaa', cursive;
}

.lang-switch:hover {
    border-color: var(--primary);
    background: rgba(133, 38, 92, 0.05);
}

.lang-switch.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

/* ===== PACKAGES TABLE ===== */
.packages {
    padding: var(--section-padding);
    background: var(--bg);
}

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

.package-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 36px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.package-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.package-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.package-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    text-align: center;
}

.package-desc {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
    min-height: 40px;
}

.package-features {
    list-style: none;
    margin-bottom: 32px;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--bg);
    font-size: 14px;
}

.package-features li:last-child {
    border-bottom: none;
}

.packages {
    padding: 80px 0;
    background: var(--bg);
}

.packages-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.package-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 32px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.package-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
    z-index: 2;
}

.package-card.featured:hover {
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    text-align: center;
}

.package-desc {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 20px;
    min-height: 36px;
}

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

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg);
    font-size: 13px;
}

.package-features li:last-child {
    border-bottom: none;
}

.feature-check {
    width: 20px;
    height: 20px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-check svg {
    width: 12px;
    height: 12px;
    color: white;
}

.feature-x {
    width: 20px;
    height: 20px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-x svg {
    width: 10px;
    height: 10px;
    color: var(--text-secondary);
}

.package-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin: 16px 0 14px;
    font-family: var(--font-heading);
}

.package-card.featured .package-price {
    color: var(--primary);
    font-size: 28px;
}

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

.package-card .btn {
    width: 100%;
}

.packages-table {
    display: block;
    overflow-x: auto;
}

.packages-table table {
    width: 100%;
    background: white;
    border-radius: 16px;
    border: 1px solid grey;
    overflow: hidden;         
    border-collapse: separate;
    border-spacing: 0;
}

.packages-table th,
.packages-table td {
    padding: 16px 20px;
    text-align: center;
    font-size: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.packages-table th:last-child,
.packages-table td:last-child {
    border-right: none;
}
.packages-table tbody tr:last-child td {
    border-bottom: none;
}

.packages-table th:first-child,
.packages-table td:first-child {
    text-align: left;
    /* font-weight: 500; */
}

.packages-table thead th {
    font-weight: 900;
    color: var(--primary);
}

.packages-table tbody tr {
  background: var(--vien-grey);
}

.packages-table .price-row td {
    font-weight: 700;
    color: var(--primary);
    background: rgba(133, 38, 92, 0.05);
    /* border-radius: 0 0 16px 16px; */
}


/* ===== CASES SECTION ===== */
.cases {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.cases-list {
    max-width: 900px;
    margin: 0 auto;
}

.case-item {
    background: var(--bg);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.case-item:hover {
    box-shadow: var(--shadow-md);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    cursor: pointer;
    transition: var(--transition);
}

.case-header:hover {
    background: rgba(143, 167, 160, 0.1);
}

.case-avatar {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.case-preview {
    flex: 1;
}

.case-name {
    font-family: 'Comfortaa', cursive;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.case-problem-preview {
    font-size: 14px;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-toggle {
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.case-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.case-item.open .case-toggle svg {
    transform: rotate(180deg);
}

.case-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.case-item.open .case-content {
    max-height: 600px;
}

.case-body {
    padding: 0 28px 28px;
}

.case-section {
    margin-bottom: 20px;
}

.case-section:last-child {
    margin-bottom: 0;
}

.case-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.case-label.before {
    background: rgba(214, 69, 69, 0.1);
    color: var(--alert);
}

.case-label.process {
    background: var(--secondary-light);
    color: var(--secondary);
}

.case-label.after {
    background: rgba(91, 146, 121, 0.1);
    color: var(--success);
}

.case-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.case-quote {
    background: var(--secondary-light);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-top: 16px;
    position: relative;
}

.case-quote::before {
    content: '"';
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 48px;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
}

.case-quote p {
    font-size: 16px;
    font-style: italic;
    color: var(--text);
    padding-left: 20px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.video-embed{position:relative;width:100%;aspect-ratio:9/16;border-radius:18px;overflow:hidden;background:#000}
.video-embed iframe{position:absolute;inset:0;width:100%;height:100%}

/* ===== MOBILE APP SECTION ===== */
.mobile-app {
    padding: 60px 0;
    overflow: hidden;
}

.app-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(133, 38, 92, 0.25);
}

.app-text {
    margin-bottom: 80px;
}

.app-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.app-title span {
    color: rgba(255, 255, 255, 0.7);
}

.app-subtitle {
    font-family: 'Comfortaa', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.app-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.app-features li {
    font-family: 'Comfortaa', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.app-features li:last-child {
    border-right: none;
}

.app-mockups {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    position: relative;
    height: 380px;
}

.mockup {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 6px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.mockup-screen {
    background: #1a1a1a;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mockup-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.mockup-center {
    width: 200px;
    z-index: 3;
    position: relative;
}

.mockup-center .mockup-screen {
    width: 188px;
    height: 400px;
}

.mockup-left,
.mockup-right {
    width: 160px;
    z-index: 2;
    opacity: 0.9;
}

.mockup-left .mockup-screen,
.mockup-right .mockup-screen {
    width: 148px;
    height: 320px;
}

.mockup-left {
    transform: translateX(30px) rotate(-8deg);
}

.mockup-right {
    transform: translateX(-30px) rotate(8deg);
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
}

.quotes-grid > .quote-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
}

.quote-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
    transition: var(--transition);
}

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

.quote-icon {
    font-family: Georgia, serif;
    font-size: 64px;
    color: var(--primary);
    opacity: 0.15;
    line-height: 0.6;
}

.quote-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}

.videos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Centers the cards horizontally */
    margin-bottom: 60px;
    
    /* Ensure the container itself is centered */
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 720px; 
}

.video-card {
    /* Height is the primary constraint */
    height: 500px;
    aspect-ratio: 9/16;
    
    /* Fallback width for browsers that struggle with aspect-ratio */
    width: calc(500px * 9 / 16); 
    
    
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0; /* Prevents cards from squishing */
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.video-play {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.video-play svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.video-placeholder span {
    font-family: 'Comfortaa', sans-serif;
    font-size: 14px;
    font-weight: 600;
}


.gift {
    padding: 80px 0;
    background: var(--secondary-light);
}

.gift .container {
    display: flex;
    gap: 32px;
}

.gift-image {
    width: 300px;
    border-radius: 25px;
}

.gift-image img {
    width: 100%;
    border-radius: 25px;
}
.gift-content {
    width: calc(100% - 300px);
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.gift-content h2 {
    text-align: center;
    margin-bottom: 40px;
}

.gift-content p {
    font-size: 42px;
}

/* ===== FOUNDERS SECTION ===== */
.founders {
    padding: var(--section-padding);
    background: var(--secondary);
}

.founders .section-title {
    color: white;
}

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

.founder-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

.founder-photo {
    width: 200px;
    height: 200px;
    background: var(--bg);
    border-radius: 50%;
    margin: 0 auto 24px;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-name {
    font-family: 'Comfortaa', cursive;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.founder-role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.founder-credentials {
    list-style: disc;
    text-align: left;
    padding-left: 20px;
    margin: 0 auto 24px auto;
    max-width: 320px;
}

.founder-credentials li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 4px;
}

.founder-bio {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 20px;
    font-style: italic;
}

.founder-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: start;
}

.map {
    padding: 100px 0;
    background: var(--bg-white);
}

.map h2 {
    text-align: center;
}

.map-image {
    width: 100%;
}

.map-image img {
    width: 100%;
}


/* Desktop layout */
@media (min-width: 992px) {
    .founders-grid {
        grid-template-areas:
            "card1 card2"
            "video1 video2";
    }

    .founder-card:nth-of-type(1) { grid-area: card1; }
    .founder-card:nth-of-type(2) { grid-area: card2; }
    .founders-video:nth-of-type(1) { grid-area: video1; }
    .founders-video:nth-of-type(2) { grid-area: video2; }
}

/* Mobile layout */
@media (max-width: 991px) {
    .founders-grid {
        grid-template-columns: 1fr;
    }
}


.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.social-link svg {
    width: 18px;
    height: 18px;
}

.founders-video {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #000;
}

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

.video-wrapper .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video-thumbnail {
    display: block;
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.video-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail:hover .play-bg {
    fill: var(--primary);
    fill-opacity: 1;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-description {
    margin-top: 24px;
    text-align: center;
}

.video-description p {
    font-size: 18px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--bg);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.play-btn {
    width: 72px;
    height: 72px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.play-btn svg {
    width: 28px;
    height: 28px;
    color: white;
    margin-left: 4px;
}

/* ===== TELEGRAM PREVIEW ===== */
.telegram-preview {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
}

.telegram-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.telegram-icon {
    width: 40px;
    height: 40px;
    background: #0088cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.telegram-info h4 {
    font-size: 16px;
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    color: var(--text);
}

.telegram-info span {
    font-size: 13px;
    color: var(--text-secondary);
}

.telegram-post {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.telegram-cta {
    margin-top: 16px;
    text-align: center;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: var(--section-padding);
    background: var(--primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* .final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
} */

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

.final-cta-title {
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
}

.final-cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .btn-white {
    font-size: 18px;
    padding: 18px 40px;
}

.final-cta-trust {
    margin-top: 24px;
    font-size: 14px;
    color: var(--secondary-light);
}

/* ===== FOOTER ===== */
.footer {
    padding: 48px 0 24px;
    background: var(--text);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 32px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

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

.animate-in {
    opacity: 0;
    transform: translateY(30px);
}

.animate-in.visible {
    animation: fadeInUp 0.6s ease forwards;
}

.hamburger {
    display: none;
}

.hamburger {
    position: relative;
    width: 25px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

/* Active state */
.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.mobile {
    display: none;
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

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

.popup {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 32px;
    border-radius: 16px;
    position: relative;
    font-family: 'Comfortaa', cursive;
}

.popup .form-group {
    margin-bottom: 10px;
}

.popup button {
    margin-top: 20px;
}

.popup-title {
    font-size: 22px;
    margin-bottom: 20px;
    font-family: 'Comfortaa', cursive;
}

.popup-close {
    position: absolute;
    right: 16px;
    top: -8px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .popup {
        margin: 0 20px;
    }
    .quotes-grid > .quote-card:last-child:nth-child(3n + 1) {
        grid-column: 1;
    }
    .hamburger {
        display: block;
    }
    .hero {
        background-position: right center;
    }

    .mobile-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 100;
        padding: 20px;
        flex-direction: column;
        display: none;
    }

    .mobile-menu.active {
        display: flex;
        max-height: 450px;
    }

    .mobile-menu a {
        display: block;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .hero::before {
        background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 60%, transparent 100%);
    }

    .symptoms-columns,
    .how-grid,
    .packages-grid {
        grid-template-columns: 1fr 1fr;
    }

    .symptoms-columns {
        gap: 32px 24px;
    }

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

    .lead-cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav {
        display: none;
        gap: 25px;
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-mobile-cta {
        display: flex;
        justify-content: center;
    }

    .hero-inner {
        flex-direction: column;
    }

    .photo-container {
        display: none;
    }

    .hero-photo {
        display: none;
    }

    .hero-mobile {
        display: block;
        background: linear-gradient(135deg, #85265C 0%, #A73D6E 50%, #C75A7A 100%);
        border-radius: 20px;
        padding: 32px 24px;
        margin: 0;
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .hero-mobile-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
    }

    .hero-mobile-logo img {
        height: 40px;
        width: auto;
    }

    .hero-mobile-logo span {
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: white;
        line-height: 1.2;
    }

    .hero-mobile-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: white;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-mobile-title span {
        color: rgba(255, 255, 255, 0.85);
    }

    .hero-mobile-subtitle {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .hero-mobile-features {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
    }

    .hero-mobile-feature {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: white;
    }

    .hero-mobile-feature-icon {
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .hero-mobile-feature-icon svg {
        width: 12px;
        height: 12px;
        stroke: white;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .hero-mobile-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 20px;
    }

    .hero-mobile-header .hero-mobile-title {
        width: 100%;
        margin-bottom: 0;
        font-size: 32px;
        line-height: 1.15;
    }

    .hero-mobile-founders-photo {
        width: 100%;
        height: auto;
        border-radius: 16px;
        background: white;
        padding: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }

    .hero-mobile-cta-section {
        display: block;
        text-align: center;
        padding: 20px 0;
    }

    .hero-content {
        display: none;
    }

    .hero-mobile-image {
        display: none;
    }

    .hero {
        padding: 100px 0 20px;
        background: var(--bg);
        min-height: auto;
    }

    .hero::before {
        display: none;
    }

    .hero-logo-section {
        margin-bottom: 24px;
    }

    .hero-logo-large {
        width: 60px;
    }

    .hero-brand-text {
        font-size: 18px;
    }

    .hero-title {
        font-size: 36px;
    }

    .symptoms-validation {
        padding: 15px;
        text-align: center;
        margin-top: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .symptoms-columns,
    .how-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

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

    .quote-card {
        padding: 20px;
    }

    .quote-icon {
        font-size: 48px;
    }

    .quote-text {
        font-size: 14px;
    }

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

    .video-play {
        width: 48px;
        height: 48px;
    }

    .video-play svg {
        width: 20px;
        height: 20px;
    }

    .app-content {
        text-align: center;
    }

    .app-text {
        margin-bottom: 50px;
    }

    .app-title {
        font-size: 26px;
    }

    .app-subtitle {
        font-size: 14px;
    }

    .app-features {
        flex-wrap: wrap;
        gap: 8px 0;
    }

    .app-features li {
        font-size: 12px;
        padding: 0 12px;
    }

    .mockup {
        box-shadow: none;
    }
    .app-mockups {
        height: 240px;
    }

    .mockup-center {
        width: 130px;
    }

    .mockup-center .mockup-screen {
        width: 118px;
        height: 260px;
    }

    .mockup-left,
    .mockup-right {
        width: 100px;
    }

    .mockup-left .mockup-screen,
    .mockup-right .mockup-screen {
        width: 88px;
        height: 200px;
    }

    .how-grid {
        padding-right: 0;
        gap: 24px;
    }

    .how-card {
        flex-direction: row;
        padding: 15px;
        padding-right: 100px;
        gap: 16px;
        min-height: 140px;
    }

    .how-icon {
        width: 48px;
        height: 48px;
    }

    .how-icon svg {
        width: 24px;
        height: 24px;
    }

    .how-card-photo {
        width: 100px;
        height: 100px;
        right: -10px;
        border-width: 3px;
    }

    .how-card-title {
        font-size: 18px;
    }

    .how-card-subtitle {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .how-card-desc {
        font-size: 12px;
        display: none;
    }

    .founder-card {
        padding: 20px;
    }

    .telegram-preview {
        padding: 15px;
    }

    .packages-table {
        display: none;
    }
    .packages-grid {
        display: grid;
    }

    .assistant-block {
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        text-align: center;
    }
    .assistant-flex {
        flex-direction: column;
    }

    .assistant-photo {
        width: 120px;
        height: 120px;
    }

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

    .assistant-title {
        font-size: 18px;
    }

    .assistant-subtitle {
        font-size: 14px;
    }

    .lead-cta-title {
        font-size: 32px;
    }

    .lead-cta-form {
        padding: 28px 20px;
    }

    .final-cta-title {
        font-size: 32px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .mobile-app {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    }

    .videos-grid {
        gap: 24px; /* Slightly smaller gap for small screens */
        padding: 0 10px; /* Minimal side padding instead of large margins */
    }

    .video-card {
        /* Allow cards to scale down on small phones */
        height: auto;
        width: 100%; 
        max-width: 280px; 
    }

    .app-content {
        padding: 0;
        box-shadow: none;
        background: none;
    }

    /* Mobile Fixed CTA */
    .mobile-fixed-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        background: white;
        padding: 12px 16px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    }

    .mobile-fixed-cta .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }

    .gift .container {
        flex-direction: column;
    }
    .gift-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: center;
    }

    .gift-content h2 {
        margin: 0;
    }
    .gift-content p {
        font-size: 22px;
    }

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }
}

@media (max-width: 360px) {
    .how-icon {
        display: none;
    }
}

@media (max-width: 650px) {
    .videos-grid { 
        display: grid; 
        grid-template-columns: repeat(2, 1fr); 
        gap: 24px; 
        margin-bottom: 60px; 
    } 
    .video-card { 
        aspect-ratio: 9/16; 
        border-radius: var(--radius); 
        overflow: hidden; 
        max-height: 500px; 
    }
}
