/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal-primary: #14b8a6;
    --teal-dark: #0d9488;
    --teal-light: #5eead4;
    --green-accent: #10b981;
    --orange-accent: #f97316;
    --yellow-accent: #fbbf24;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-white: #ffffff;
    --bg-light-gray: #f9fafb;
    --bg-light: #f9fafb;
    --border-light: #e5e7eb;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-image {
    height: 65px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Fallback if logo image doesn't load - keep icon style */
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    margin-left: 2px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
}

.globe-icon {
    width: 20px;
    height: 20px;
}

.language-select {
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    font-family: inherit;
    padding: 0.25rem 0;
}

.btn-nav {
    background: var(--teal-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.btn-nav:hover {
    background: var(--teal-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content - Two Column Layout */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    margin-top: 80px;
}

/* Left Column - Content */
.content-column {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 50%, #cffafe 100%);
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    max-width: 600px;
    width: 100%;
    z-index: 1;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.trust-dot {
    width: 8px;
    height: 8px;
    background: var(--teal-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.main-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.headline-part1 {
    color: var(--text-dark);
}

.headline-part2 {
    color: var(--teal-primary);
    display: block;
}

.description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--teal-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(20, 184, 166, 0.3);
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(20, 184, 166, 0.4);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--teal-primary);
    color: var(--teal-primary);
    transform: translateY(-2px);
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
}

.social-proof {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partner-logos {
    display: flex;
    gap: 0.75rem;
}

.partner-logo {
    width: 50px;
    height: 50px;
    border: 2px solid var(--teal-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--teal-primary);
    background: white;
    font-size: 1.25rem;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars svg {
    width: 18px;
    height: 18px;
}

.rating-score {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Right Column - Video Player */
.video-column {
    background: linear-gradient(135deg, #fed7aa 0%, #fde68a 50%, #fef3c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.video-wrapper {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #d1fae5 0%, #fef3c7 100%);
    border-radius: 16px;
    border: 4px solid var(--teal-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-content {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 1.5rem;
}

.video-character {
    width: 120px;
    height: 120px;
    background: var(--orange-accent);
    border-radius: 50%;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 16px rgba(249, 115, 22, 0.3);
}

.video-character::before,
.video-character::after {
    content: '';
    position: absolute;
    background: var(--text-dark);
    border-radius: 50%;
}

.video-character::before {
    width: 12px;
    height: 12px;
    top: 35%;
    left: 35%;
}

.video-character::after {
    width: 12px;
    height: 12px;
    top: 35%;
    right: 35%;
}

.video-accent {
    width: 40px;
    height: 40px;
    background: var(--teal-primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 20%;
    box-shadow: 0 4px 8px rgba(20, 184, 166, 0.3);
}

.video-overlay {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.overlay-1 {
    position: absolute;
    top: 5%;
    left: 5%;
    max-width: 180px;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.overlay-2 {
    position: absolute;
    top: 30%;
    left: 7% ;
    max-width: 140px;
}

.pill-icon {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.pill-top,
.pill-bottom {
    width: 20px;
    height: 10px;
    border-radius: 10px 10px 0 0;
}

.pill-top {
    background: #ef4444;
}

.pill-bottom {
    background: var(--yellow-accent);
    border-radius: 0 0 10px 10px;
}

.qr-code-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--orange-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
    z-index: 100;
}

.qr-code-icon svg {
    width: 40px;
    height: 40px;
}

.video-progress {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-fill {
    width: 65%;
    height: 100%;
    background: var(--teal-primary);
    border-radius: 3px;
    position: relative;
}

.progress-scrubber {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.current-time {
    color: var(--text-dark);
}

.separator {
    color: var(--text-gray);
}

.total-time {
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .video-column {
        min-height: 500px;
    }

    .main-headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-right {
        gap: 1rem;
    }

    .btn-nav {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .content-column,
    .video-column {
        padding: 2rem 1.5rem;
    }

    .main-headline {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* About Section */
.about-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.section-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    border-color: var(--teal-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(20, 184, 166, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--teal-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-info .section-text {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item .contact-icon {
    width: 50px;
    height: 50px;
    background: var(--teal-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

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

.contact-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 1rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--bg-light-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-primary);
    background: white;
}

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

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 1.75rem;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .video-frame {
        border-width: 3px;
    }

    .video-character {
        width: 80px;
        height: 80px;
    }

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

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo .logo-icon svg {
    width: 20px;
    height: 20px;
    margin-left: 2px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--teal-primary);
    transform: translateY(-3px);
}

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

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--teal-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

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

    .footer-section {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}