/* CSS Variables */
:root {
    --wynfull-blue: #0E4DA4;
    --wynfull-blue-dark: #0A3A7A;
    --wynfull-blue-light: #E8F2FF;
    --wynfull-blue-lighter: #F3F7FF;
    --accent-blue: #1E40AF;
    --success-green: #059669;
    --text-accent: #374151;

    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --text-white: #FFFFFF;

    --background-primary: #FFFFFF;
    --background-light: #F8FAFC;
    --background-gray: #F1F5F9;
    --background-dark: #0F172A;

    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-light);
    overflow-x: hidden;
}

.container {
    margin: 0 auto;
    padding: 0 2rem;
}

.container.container-fluid {
    max-width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--success-green);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: var(--background-primary);
    color: var(--wynfull-blue);
    border: 2px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--wynfull-blue);
    background: var(--wynfull-blue-light);
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

@media (min-width: 768px) {
    .nav-container {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        align-items: center;
        gap: 2rem;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-icon {
    border: 2px solid var(--wynfull-blue);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.logo-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-text h2 {
    color: var(--wynfull-blue);
    text-shadow: none;
}

.logo-text span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-text span {
    color: var(--text-secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-links a {
    color: var(--text-primary);
    text-shadow: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

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

.nav-cta-container {
    display: flex;
    justify-content: flex-end;
}

.nav-cta {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .nav-cta {
    background: var(--wynfull-blue);
    color: white;
    border: 2px solid var(--wynfull-blue);
}

.nav-cta:hover {
    background: white;
    color: var(--wynfull-blue);
    border-color: white;
}

.navbar.scrolled .nav-cta:hover {
    background: transparent;
    color: var(--wynfull-blue);
    border-color: var(--wynfull-blue);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.navbar.scrolled .mobile-menu-toggle {
    color: var(--text-primary);
    text-shadow: none;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--background-primary);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--border-light);
    background: var(--wynfull-blue);
    color: #ffffff;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-logo .logo-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo .logo-text h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.mobile-logo .logo-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.mobile-menu-content a {
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.mobile-menu-content a:hover {
    background: var(--background-light);
    color: var(--wynfull-blue);
}

.mobile-menu-content .mobile-cta {
    margin: 1rem 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--wynfull-blue);
    color: white;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    border: none;
}

.mobile-menu-content .mobile-cta:hover {
    background: var(--wynfull-blue-dark);
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--wynfull-blue-lighter) 100%);
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3;
}

.hero-background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 77, 164, 0.7);
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--wynfull-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: #FFD700;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.highlight {
    color: #ffffff;
    font-weight: 700;
}

.hero-subheadline {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ffffff;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--wynfull-blue);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-video-preview {
    width: 100%;
    max-width: 600px;
    margin-bottom: 1rem;
}

.video-preview-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: var(--background-primary);
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 77, 164, 0.8) 0%, rgba(14, 77, 164, 0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-overlay:hover {
    background: linear-gradient(135deg, rgba(14, 77, 164, 0.9) 0%, rgba(14, 77, 164, 0.7) 100%);
}

.video-play-button {
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.video-play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-play-button i {
    margin-left: 3px; /* Adjust play icon position */
}

.video-info {
    text-align: center;
    color: white;
}

.video-info h4 {
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.video-info p {
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.hero-dashboard-preview {
    background: var(--background-primary);
    border-radius: 16px;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--border-light);
}

.dashboard-header {
    background: var(--wynfull-blue);
    padding: 1rem;
}

.dashboard-nav {
    display: flex;
    gap: 1rem;
}

.nav-item {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-item.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.dashboard-content {
    padding: 1.5rem;
}

.dashboard-card {
    background: var(--background-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wynfull-blue);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--wynfull-blue) 0%, var(--success-green) 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mini-card {
    background: var(--background-primary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mini-card-icon {
    font-size: 1.5rem;
}

.mini-card-title {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.mini-card-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-bubble {
    background: var(--background-primary);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.feature-bubble:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-bubble i {
    color: var(--wynfull-blue);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.container {
    max-width: 1300px;
}

.video-modal-content {
    border-radius: 16px;
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-2xl);
}

.video-modal-header {
    background: var(--wynfull-blue);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-modal-header h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 600;
}

.video-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

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

.hero-overlay-stats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    animation: float 3s ease-in-out infinite;
}

.stat-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 80px;
    left: 20px;
    animation-delay: 1s;
}

.stat-3 {
    top: 50%;
    right: -10px;
    animation-delay: 2s;
}

.stat-icon {
    font-size: 1.2rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* How Wynfull Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--background-light);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.section-hero-image {
    margin-bottom: 2rem;
}

.process-image {
    width: 100%;
    max-width: 800px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.step-card {
    background: var(--background-primary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--wynfull-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--wynfull-blue);
    font-size: 1.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Resource Library Section */
.resource-preview {
    padding: 5rem 0;
    background: var(--background-primary);
}

.resource-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-light);
    background: var(--background-primary);
    color: var(--text-secondary);
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--wynfull-blue);
    color: white;
    border-color: var(--wynfull-blue);
}

.tab-btn:hover {
    border-color: var(--wynfull-blue);
    color: var(--wynfull-blue);
}

.tab-btn.active:hover {
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

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

.resource-card {
    background: var(--background-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resource-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.phase-badge {
    background: var(--wynfull-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.resource-time {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.resource-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.resource-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    background: var(--background-light);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-3px);
}

.tool-icon {
    width: 50px;
    height: 50px;
    background: var(--wynfull-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--wynfull-blue);
    font-size: 1.25rem;
}

.tool-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tool-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.tool-type {
    display: inline-block;
    background: var(--wynfull-blue);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Signup Section */
.signup-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.signup-hero-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin: 2rem auto;
}

.signup-image-left,
.signup-image-right {
    flex: 1;
}

.signup-lifestyle-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.signup-lifestyle-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.signup-container {
    max-width: 900px;
    margin: 3rem auto 0;
    background: var(--background-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.signup-tabs {
    display: flex;
    background: var(--background-gray);
}

.signup-tab {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.signup-tab.active {
    background: var(--background-primary);
    color: var(--wynfull-blue);
    border-bottom: 2px solid var(--wynfull-blue);
}

.form-container {
    display: none;
    padding: 2rem;
}

.form-container.active {
    display: block;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wynfull-blue);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.full-width {
    width: 100%;
    margin-top: 1rem;
}

/* Why Wynfull is Different Section */
.why-different {
    padding: 5rem 0;
    background: var(--background-light);
}

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

.difference-card {
    background: var(--background-primary);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--background-gray);
}

.difference-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.difference-icon {
    width: 80px;
    height: 80px;
    background: var(--wynfull-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--wynfull-blue);
}

.difference-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.difference-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Privacy Policy Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.modal-container {
    background: var(--background-primary);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: var(--wynfull-blue);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-content {
    max-height: calc(90vh - 100px);
    overflow-y: auto;
    padding: 0;
}

.privacy-content {
    padding: 2rem;
    line-height: 1.6;
}

.privacy-content h3 {
    color: var(--wynfull-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--wynfull-blue-light);
}

.privacy-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem 0;
}

.privacy-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin: 0.5rem 0 1rem 1.5rem;
    color: var(--text-secondary);
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.privacy-content a {
    color: var(--wynfull-blue);
    text-decoration: none;
    font-weight: 500;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-container {
        margin: 10px;
        max-height: calc(100vh - 20px);
    }

    .modal-header {
        padding: 1rem 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .privacy-content {
        padding: 1.5rem;
    }

    .privacy-content h3 {
        font-size: 1.3rem;
    }

    .privacy-content h4 {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.footer-logo span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.75rem;
        width: 100%;
    }

    .footer-logo .logo-text h3 {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .footer-logo .logo-text span {
        font-size: 0.8rem;
    }

    .footer-right {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: left;
        width: 100%;
    }

    .footer-links a {
        font-size: 1rem;
        padding: 0.5rem 0;
        width: 100%;
        display: block;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 1rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
    }

    .nav-links,
    .nav-cta-container {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

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

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

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Why Wynfull is Different Section */
.why-different {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.why-different::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.why-different .container {
    position: relative;
    z-index: 1;
}

.why-different .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-different .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wynfull-blue);
    margin-bottom: 1rem;
    position: relative;
}

.why-different .section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.difference-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(14, 77, 164, 0.08);
    border: 1px solid rgba(14, 77, 164, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.difference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wynfull-blue), #F5C518);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.difference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(14, 77, 164, 0.15);
}

.difference-card:hover::before {
    transform: scaleX(1);
}

.difference-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--wynfull-blue), #1E5BB8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 8px 25px rgba(14, 77, 164, 0.2);
}

.difference-icon i {
    font-size: 2rem;
    color: white;
}

.difference-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--wynfull-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.difference-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Why Wynfull is Different CTA Section */
.why-different-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(14, 77, 164, 0.1);
    border: 1px solid rgba(14, 77, 164, 0.08);
    position: relative;
    overflow: hidden;
}

.why-different-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 77, 164, 0.03) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.why-different-description {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.movement-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--wynfull-blue), #1E5BB8);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(14, 77, 164, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.movement-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.movement-button:hover {
    background: linear-gradient(135deg, #0A3D85, var(--wynfull-blue));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(14, 77, 164, 0.4);
    color: white;
    text-decoration: none;
}

.movement-button:hover::before {
    left: 100%;
}

.movement-button:active {
    transform: translateY(-1px) scale(1.02);
}

.secondary-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--wynfull-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: 2px solid var(--wynfull-blue);
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--wynfull-blue);
    transition: left 0.4s ease;
    z-index: -1;
}

.secondary-button:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 77, 164, 0.2);
}

.secondary-button:hover::before {
    left: 0;
}

.secondary-button:active {
    transform: translateY(0) scale(0.98);
}

.dashboard-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--success-green), #10B981);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
    border: none;
    cursor: pointer;
    margin: 0.5rem;
    letter-spacing: 0.5px;
}

.dashboard-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.dashboard-button:hover {
    background: linear-gradient(135deg, #047857, var(--success-green));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.4);
    color: white;
    text-decoration: none;
}

.dashboard-button:hover::before {
    left: 100%;
}

.dashboard-button:active {
    transform: translateY(-1px) scale(1.02);
}

/* Navigation Dashboard Button */
.dashboard-nav-btn {
    background: linear-gradient(135deg, var(--success-green), #10B981) !important;
    color: white !important;
    margin-left: 0.75rem;
    transition: all 0.3s ease;
    border-color: var(--success-green, #10B981) !important;
}

.dashboard-nav-btn:hover {
    background: linear-gradient(135deg, #047857, var(--success-green)) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
    color: white !important;
}

/* Mobile Dashboard Button */
.dashboard-mobile-btn {
    background: linear-gradient(135deg, var(--success-green), #10B981) !important;
    color: white !important;
    margin-top: 0.5rem;
}

@media (max-width: 1024px) {
    .difference-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .difference-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-different {
        padding: 3rem 0;
    }

    .why-different .section-header h2 {
        font-size: 2rem;
    }

    .difference-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .difference-card {
        padding: 2rem 1.5rem;
    }

    .why-different-cta {
        padding: 2rem 1.5rem;
        margin: 1.5rem 1rem 0;
        border-radius: 16px;
    }

    .why-different-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .movement-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        border-radius: 40px;
    }

    .secondary-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        border-radius: 40px;
    }
    
    .dashboard-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        border-radius: 40px;
    }
}

@media (max-width: 480px) {
    .why-different .section-header h2 {
        font-size: 1.75rem;
    }

    .difference-card {
        padding: 1.5rem 1rem;
    }

    .difference-icon {
        width: 70px;
        height: 70px;
    }

    .difference-icon i {
        font-size: 1.75rem;
    }

    .difference-card h3 {
        font-size: 1.3rem;
    }

    .why-different-description {
        font-size: 1.1rem;
    }

    .movement-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .secondary-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .dashboard-button {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
    }
}

/* Learning Phases Styles */
.phases-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phase-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.2s ease;
}

.phase-card:hover {
    box-shadow: var(--shadow-md);
}

.phase-card.current {
    border-color: var(--wynfull-blue);
    box-shadow: 0 0 0 1px rgba(14, 77, 164, 0.1);
}

.phase-card.locked {
    opacity: 0.7;
}

.phase-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phase-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(14, 77, 164, 0.1);
    color: var(--wynfull-blue);
    flex-shrink: 0;
}

.phase-card.completed .phase-icon {
    background: rgba(46, 182, 125, 0.1);
    color: #2EB67D;
}

.phase-card.locked .phase-icon {
    background: rgba(107, 114, 128, 0.1);
    color: var(--text-light);
}

.phase-info {
    flex: 1;
}

.phase-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.phase-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.phase-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.phase-status.completed {
    background: rgba(46, 182, 125, 0.1);
    color: #2EB67D;
}

.phase-status.current {
    background: rgba(14, 77, 164, 0.1);
    color: var(--wynfull-blue);
}

.phase-status.locked {
    background: rgba(107, 114, 128, 0.1);
    color: var(--text-light);
}

.phase-progress {
    padding: 0 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #2EB67D;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.phase-card.current .progress-fill {
    background: var(--wynfull-blue);
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.danger-text {
    color: red;
}
