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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-card: rgba(0, 0, 0, 0.02);
    --accent: #a23b72;
    --accent-light: #c44d8e;
    --accent-dark: #85265c;
    --text-primary: #1a1a1a;
    --text-secondary: rgba(0, 0, 0, 0.6);
    --text-muted: rgba(0, 0, 0, 0.4);
    --icon-bg: #f2e9ed;
    --border: rgba(0, 0, 0, 0.08);
    --border-accent: rgba(162, 59, 114, 0.2);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Comfortaa', sans-serif;
    --secondary: #5f7e7c;  

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --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);

    --section-padding: 100px 0;
    --container-width: 1200px;
    --radius: 16px;
    --radius-sm: 8px;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, .section-title, .section-label, .nav-cta, .cta-button, .price, .step-number, .logo-text {
    font-family: var(--font-heading);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    /* backdrop-filter: blur(20px); */
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    height: 28px;
    width: auto;
}

.logo-text {
    font-weight: 600;
    font-size: 18px;
    color: var(--accent);
}

.logo-subtitle {
    font-size: 13px;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(162, 59, 114, 0.3);
}

section {
    padding: 60px 40px;
    margin: 0 auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    background: var(--bg-secondary);
}

/* .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(162, 59, 114, 0.05) 0%, transparent 50%);
} */

.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);
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 48px 48px 48px 56px;
    max-width: calc(100% - 448px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-brand {
    color: var(--bg-primary);
}

.hero-badge span {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 64px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 32px;
}

.hero h1 .highlight {
    color: var(--accent-dark);
}

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

.hero-image {
    width: 100%;
    height: 340px;
    border-radius: 20px;
    transform-origin: center;
    object-fit: cover;
}

.hero-image-caption {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--bg-primary);
    max-width: 600px;
    margin: 0 0 40px;
    text-align: left;
}

.hs-big {
    font-size: clamp(28px, 3.5vw, 32px);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(162, 59, 114, 0.3);
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

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

.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-outline {
    background: transparent;
    color: var(--accent-dark);
    border: 2px solid var(--accent-dark);
}

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-title strong {
    color: var(--accent);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.problems {
    background: var(--bg-primary);
    padding: 80px;
}

section > div {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.problem-card {
    border-radius: 20px;
    border-top: 6px solid var(--accent-dark);
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0,05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg-secondary);
}

.problem-card:hover {
    border-color: var(--accent-light);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.problem-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.problem-icon-wrapper {
    background: rgba(133, 38, 92, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-icon-wrapper svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-dark);
}

.problem-card h3 {
    font-size: 19px;
    color: var(--accent-dark);
    margin: 0;
    font-weight: 700;
}

.problem-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-card li {
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.5;
    font-size: 14px;
}

.problem-card li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #8c9696;
}

.emotional-trigger {
    text-align: center;
    margin-top: 40px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(162, 59, 114, 0.1), rgba(162, 59, 114, 0.05));
    border-radius: 16px;
    border: 1px solid var(--border-accent);
}

.emotional-trigger p {
    font-size: 25px;
    font-weight: 500;
    font-family: var(--font-heading);
}

.emotional-trigger strong {
    color: var(--accent);
}

.why-iv {
    padding-top: 80px;
    background: var(--bg-secondary);
}

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

.benefit-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: transparent;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-dark); /* Колірна лінія іконки */
    stroke-width: 1.8px; /* Робимо лінію трохи витонченішою */
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 600;
}

.key-accent {
    background: var(--secondary);
    border-radius: 16px;
    padding: 28px 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--bg-primary)
}

.key-accent p {
    font-size: 17px;
    color: white;
    line-height: 1.7;
}

.key-accent strong {
    color: var(--accent);
    font-family: var(--font-heading);
}

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

.comparison-card {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 28px;
    transition: all 0.3s;
    border-left: 4px solid var(--secondary);
}

.comparison-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.comparison-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.comparison-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.how-it-works {
    background: var(--bg-primary);
    border-radius: 32px;
    padding: 100px;
    width: 100%;
}

.steps-container {
    max-width: 860px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: flex;
    gap: 28px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(95, 126, 124, 0.15);
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-dark);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.revive-step-connector {
    position: absolute;
    left: 27px;
    top: 92px;
    bottom: -1px;
    width: 2px;
    background: rgba(133, 38, 92, 0.15);
}

.bonus-section {
    margin-top: 40px;
    padding: 32px;
    background: var(--secondary);
    border: 1px solid var(--border-accent);
    border-radius: 24px;
}

.bonus-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 28px;
    text-align: center;
    color: var(--bg-primary);
}

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

.bonus-item {
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.bonus-item h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent);
}

.bonus-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.no-worry {
    text-align: center;
    margin-top: 24px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.no-worry p {
    font-size: 17px;
    font-weight: 500;
    font-family: var(--font-heading);
}

.pricing {
    padding-top: 80px;
    background: var(--bg-secondary);
    width: 100%;
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.3s;
    border: 2px solid rgba(95, 126, 124, 0.2);
    text-align: center;
}

.pricing-card:hover {
    border-color: var(--accent-dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(133, 38, 92, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pricing-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent-dark);
}

.pricing-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-dark);
}

.price span {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 40px;
}

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

.team {
    background: var(--secondary);
    padding: 100px;
    width: 100%;
    color: var(--bg-primary)
}

.team-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.team-list > * {
    flex: 0 0 calc(50% - 8px);
}


.team-tag {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    color: white;
    transition: all 0.3s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-tag:hover {
    background: rgba(255, 255, 255, 0.2);
}

.team-info {
    text-align: center;
    margin-bottom: 32px;
}

.team-info p {
    color: white;
    font-size: 15px;
    margin-bottom: 12px;
}

.team-info .highlight {
    font-weight: 600;
    font-family: var(--font-heading);
}

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

.how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 20px;
    overflow: visible;
    padding-right: 80px;
    max-width: 600px;
    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;
    color: #2d2d2d;
    font-family: Comfortaa, cursive;
}

.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(--accent);
}

.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;
    margin-bottom: 4px;
    line-height: 1.3;
}

.secondary-title {
    text-align: center;
    margin: 80px 0 40px;
    font-size: 30px;
}

.founders {
    padding-top: 80px;
}

.founders-title {
    text-align: center;
}

.founders-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.founders-intro p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
}

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

.founder-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.3s;
}

.founder-card:hover {
    border-color: var(--border-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.founder-photo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin-bottom: 20px;
    object-fit: cover;
}

.founder-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.founder-card .role {
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
}

.founder-card blockquote {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    border-left: 3px solid var(--accent);
    padding-left: 16px;
}

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

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

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

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

.telegram-preview {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 12px 24px 24px;
    margin-top: 12px;
}

.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-primary);
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

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


.video-placeholder {
    margin-top: 16px;
    padding: 14px;
    background: white;
    border-radius: 12px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.video-placeholder:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.final-cta {
    text-align: center;
    padding: 80px 40px;
}

.final-cta h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.messenger-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.messenger-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.messenger-link:hover {
    border-color: var(--border-accent);
    color: var(--accent);
}

.footer {
    background: var(--bg-secondary);
    padding: 48px 40px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo img {
    height: 24px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 28px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

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

.footer-copy {
    color: var(--text-muted);
    font-size: 12px;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

.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;
    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;
}


.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);
}


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

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

@media (max-width: 1024px) {

    .how-grid {
        padding: 0;
    }

    .how-card {
        padding: 20px 30px;
        padding-right: 100px;
        min-height: 120px;
    }

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

    .nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 50px 24px;
    }

    .problems, .how-it-works, .team {
        margin: 0;
        padding: 40px 24px;
    }

    .problems-grid, .benefits-row, .comparison-grid, .pricing-cards, .founders-grid {
        grid-template-columns: 1fr;
    }

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

    .step-number {
        margin: 0 auto;
    }

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

    .why-iv, .pricing, .founders {
        padding-top: 50px;
    }

    .how-it-works, .team {
        margin-top: 30px;
    }

    .team-list > * {
        flex: 0 0 calc(50% - 8px);
    }

    .hero-inner {
        flex-direction: column-reverse;
        width: 100%;
    }

    .hero-image {
        width: 280px;
        height: 280px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        align-items: center;
    }

    .hero-brand.mobile {
        display: block;
        margin-top: 48px;
        margin-bottom: 0;
    }

    .hero-image-container {
        width: 100%;
        justify-content: center;
        padding: 48px 0 0;
    }

    .desktop {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-content {
        padding: 24px 24px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .team-list > * {
        flex: 0 0 calc(100% - 8px);
    }
}