/* =============================================
   CONEKTA TU CLINICA - LANDING PAGE STYLES
   Brand Colors:
   - Primary: #41c0be (Turquesa brillante)
   - Primary Dark: #298584 (Turquesa oscuro)
   - Dark: #333333
   - Gray: #999999
   - White: #FFFFFF
   Typography: Montserrat
============================================= */

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

:root {
    --primary: #41c0be;
    --primary-dark: #298584;
    --primary-light: #5dd3d1;
    --dark: #333333;
    --gray: #999999;
    --gray-light: #f5f5f5;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, #41c0be 0%, #298584 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

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

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: 1.25rem;
}

.highlight {
    color: var(--primary);
}

.underline-text {
    position: relative;
    display: inline;
}

.underline-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: var(--primary);
    opacity: 0.3;
    z-index: -1;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(65, 192, 190, 0.1);
    border: 1px solid rgba(65, 192, 190, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.badge svg {
    color: var(--primary);
}

.badge-dark {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.badge-dark svg {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(65, 192, 190, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(65, 192, 190, 0.5);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

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

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    justify-content: center;
}

.logo {
    height: 40px;
    width: auto;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(65, 192, 190, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(65, 192, 190, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

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

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-top: 24px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.stat svg {
    color: var(--primary);
}

/* Form Card */
.hero-form-container {
    position: relative;
    z-index: 1;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.play-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(65, 192, 190, 0.4);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-card > p {
    color: var(--gray);
    margin-bottom: 24px;
}

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

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(65, 192, 190, 0.1);
}

.form-group input::placeholder {
    color: var(--gray);
}

.form-card .btn-primary {
    width: 100%;
    margin-top: 8px;
}

.form-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.75rem;
    color: var(--gray);
}

/* Pain Points Section */
.pain-points {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 60px;
}

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

.pain-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--gray-light);
    border-radius: var(--radius);
    border-left: 4px solid #e74c3c;
}

.pain-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    color: #e74c3c;
}

.pain-card p {
    color: var(--dark);
    font-weight: 500;
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: var(--gray-light);
}

.solution .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-content h2 {
    margin: 16px 0 24px;
}

.solution-content p {
    color: var(--gray);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.solution-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-note {
    color: var(--gray);
    font-size: 0.9rem;
}

.solution-image {
    position: relative;
}

.solution-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.solution-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.2;
}

/* Learn Section */
.learn-section {
    padding: 100px 0;
    background: var(--white);
}

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

.learn-card {
    padding: 32px;
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.learn-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.learn-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(65, 192, 190, 0.1);
    border-radius: var(--radius);
    color: var(--primary);
    margin-bottom: 16px;
}

.learn-card h3 {
    margin-bottom: 12px;
    color: var(--dark);
}

.learn-card p {
    color: var(--gray);
}

/* Results Section */
.results-section {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.results-section .section-title {
    color: var(--white);
    margin-bottom: 60px;
}

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

.result-card {
    text-align: center;
    padding: 32px;
}

.result-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
}

.result-card p {
    color: rgba(255, 255, 255, 0.7);
}

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

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    margin: 16px 0 24px;
}

.about-content > p {
    color: var(--gray);
    margin-bottom: 32px;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    font-weight: 500;
}

.about-list li svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--gray-light);
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.cta-card h2 {
    margin-bottom: 16px;
}

.cta-card > p {
    opacity: 0.9;
    margin-bottom: 40px;
    font-size: 1.125rem;
}

.inline-form {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.inline-form input {
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    min-width: 200px;
}

.inline-form input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.inline-form .btn-primary {
    background: var(--dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.inline-form .btn-primary:hover {
    background: #222;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--dark);
    text-align: center;
}

.footer-logo {
    height: 32px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
    background: var(--primary-dark);
}

.cookie-btn-config,
.cookie-btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-config:hover,
.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Container Override */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.hero-badge-floating {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.hero-badge-floating .number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-badge-floating .text {
    font-size: 0.8rem;
    color: var(--gray);
}

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

.cta-note {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Transformation Section */
.transformation {
    padding: 100px 0;
    background: var(--gray-light);
}

.transformation-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.transformation-header h2 {
    margin: 16px 0 20px;
}

.transformation-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.transformation-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.transform-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 32px;
    border-radius: var(--radius-lg);
}

.transform-card.before {
    background: var(--white);
    border: 2px solid #e74c3c;
}

.transform-card.after {
    background: var(--white);
    border: 2px solid var(--primary);
}

.transform-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transform-card.before h3 {
    color: #e74c3c;
}

.transform-card.after h3 {
    color: var(--primary);
}

.transform-card ul {
    list-style: none;
}

.transform-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--dark);
}

.transform-card.before li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.transform-card.after li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.transform-arrow {
    color: var(--primary);
    flex-shrink: 0;
}

/* Course Content Section */
.course-content {
    padding: 100px 0;
    background: var(--white);
}

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

.module-card {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.module-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.module-card.featured {
    background: rgba(65, 192, 190, 0.1);
    border-color: var(--primary);
}

.module-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 8px;
}

.module-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.module-card p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 12px;
}

.module-lessons {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: rgba(65, 192, 190, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
}

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

/* Applications Section */
.applications-section {
    padding: 100px 0;
    background: var(--gray-light);
}

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

.application-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.application-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.application-card:hover img {
    transform: scale(1.1);
}

.application-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
}

.application-content h3 {
    margin-bottom: 8px;
}

.application-content p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Testimonials Section Override */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 24px;
}

.testimonial-card > p {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 24px;
}

.testimonial-author {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 16px;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Footer Enhanced */
.footer {
    padding: 60px 0 24px;
    background: var(--dark);
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 36px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.disclaimer-link a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: underline;
}

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

/* Button White Variant */
.btn-white {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-container,
    .hero .container,
    .solution .container,
    .about-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-badge-floating {
        bottom: -10px;
        left: 10px;
    }

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

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

    .transform-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .pain-grid,
    .learn-grid {
        grid-template-columns: 1fr;
    }

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

    .applications-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

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

    .inline-form {
        flex-direction: column;
        align-items: center;
    }

    .inline-form input {
        width: 100%;
        max-width: 400px;
    }

    .solution-content,
    .about-content {
        text-align: center;
    }

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

    .about-section .container {
        flex-direction: column-reverse;
    }

    .form-card {
        padding: 32px 24px;
    }

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

    .footer-brand {
        max-width: 100%;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .transformation-grid {
        flex-direction: column;
    }

    .transform-arrow {
        transform: rotate(90deg);
    }
}

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

.hero-content,
.hero-form-container {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-form-container {
    animation-delay: 0.2s;
}

/* Scroll Animations */
.learn-card,
.pain-card,
.result-card,
.gallery-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.learn-card.visible,
.pain-card.visible,
.result-card.visible,
.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}
