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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-bottom-color: rgba(0, 0, 0, 0.12);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo span {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #333;
}

.nav-mobile {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    background: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.8) 50%, #ffffff 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 0 2rem;
    max-width: 1600px;
    margin: 0 auto;
}


/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    padding-right: 0;
}

/* Hero Mockups */
.hero-mockups {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-left: 2rem;
}


/* Split Showcase */
.split-showcase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
    position: relative;
}

.showcase-half {
    padding: 3.5rem 2.5rem;
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-half {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02) 0%, rgba(37, 99, 235, 0.04) 100%);
    border-radius: 24px 0 0 24px;
}

.returning-half {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(5, 150, 105, 0.04) 100%);
    border-radius: 0 24px 24px 0;
}

/* Center Divider */
.center-divider {
    position: relative;
    width: 2px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-line {
    width: 1px;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(148, 163, 184, 0.3) 50%, transparent 100%);
}

.divider-glow {
    position: absolute;
    width: 40px;
    height: 200px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.05) 25%,
        rgba(16, 185, 129, 0.05) 75%,
        transparent 100%);
    border-radius: 20px;
    filter: blur(8px);
}

/* Device Backplates */
.device-backplate {
    position: relative;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.new-backplate {
    background: rgba(255, 255, 255, 0.6);
}

.returning-backplate {
    background: rgba(255, 255, 255, 0.6);
}

.device-backplate:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.08),
        0 6px 16px rgba(0, 0, 0, 0.06);
}

/* Device Badges */
.device-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.new-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.returning-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}


.badge-icon {
    font-size: 0.75rem;
}

/* Device Container */
.device-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-device {
    max-width: 280px;
    height: auto;
    border-radius: 24px;
    box-shadow: 
        0 24px 48px rgba(0, 0, 0, 0.12),
        0 12px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-device:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.hero-title {
    white-space: pre-line;
    word-break: keep-all;
    overflow-wrap: normal;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    font-weight: 400;
    max-width: 480px;
    margin: 0;
}

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

.hero-ctas .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.15),
        0 4px 12px rgba(37, 99, 235, 0.1);
}

.hero-ctas .btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 32px rgba(37, 99, 235, 0.2),
        0 6px 16px rgba(37, 99, 235, 0.15);
}

.hero-ctas .btn:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(37, 99, 235, 0.2),
        0 8px 24px rgba(37, 99, 235, 0.15);
}

.hero-visual {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.hero-mockup {
    position: relative;
}

.mockup-screen {
    width: 300px;
    height: 200px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.mockup-screen:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.mockup-content {
    padding: 1rem;
}

.mockup-header {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
}

.block {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.block:hover::before {
    left: 100%;
}

.block:hover {
    transform: scale(1.05);
}

.block-dynamic {
    background: #dbeafe;
    color: #1e40af;
    border: 2px solid #2563eb;
}

.block-swap {
    background: #fecaca;
    color: #991b1b;
    border: 2px solid #dc2626;
}

.block-static {
    background: #f3f4f6;
    color: #4b5563;
    border: 2px solid #d1d5db;
}

/* Sections */
section {
    padding: 6rem 0;
    position: relative;
}

/* Section spacing variations */
.comparison-overview {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
    position: relative;
}

.comparison-overview .section-title {
    margin-bottom: 5rem;
}

.problem {
    padding: 8rem 0;
}

.problem .section-title {
    margin-bottom: 5rem;
}

.scenario {
    padding: 8rem 0;
}

.scenario .section-title {
    margin-bottom: 3rem;
}

.scenario-description {
    margin-bottom: 4rem;
}

.solution {
    padding: 8rem 0;
}

.solution .section-title {
    margin-bottom: 3rem;
}

.solution .section-subtitle {
    margin-bottom: 5rem;
}

.coverage {
    padding: 6rem 0;
}

.cta {
    padding: 8rem 0;
}

/* Enhanced gradient backgrounds */
.problem {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
}

.solution {
    background: linear-gradient(135deg, #fefefe 0%, #f9fafb 100%);
    position: relative;
}

.solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.solution .container {
    position: relative;
    z-index: 2;
}

.coverage {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.coverage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 40%);
    z-index: 1;
}

.coverage .container {
    position: relative;
    z-index: 2;
}

.coverage .section-title {
    margin-bottom: 5rem;
}

.social-proof {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #f8fafc 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #1a202c;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Problem Section */
.problem {
    background: #f8fafc;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.problem-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    border: 2px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 320px;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 20px 20px 0 0;
}

.problem-item:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.1);
}

.problem-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 2rem;
    color: #ef4444;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.problem-item:hover .problem-icon {
    color: #dc2626;
    transform: scale(1.1);
}

.problem-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
}

.problem-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    font-weight: 400;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Solution Section */
.solution-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
    gap: 2rem;
    position: relative;
    min-height: 400px;
    align-content: stretch;
    height: 400px;
}

.solution-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 50%, #e2e8f0 100%);
    z-index: 1;
    opacity: 0.6;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    border: 2px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    min-height: 300px;
    justify-content: flex-start;
    align-self: stretch;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 0;
}

.step:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.3);
}

.step-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.step-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    font-weight: 400;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    min-height: 0;
    flex: 1;
}

/* Coverage Section */
.coverage {
    background: #f8fafc;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.coverage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    border: 2px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
}

.coverage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(124, 58, 237, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coverage-item:hover {
    transform: translateY(-4px);
    border-color: #e2e8f0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.coverage-item:hover::before {
    opacity: 1;
}

.coverage-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 2rem;
    color: #64748b;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.coverage-item:hover .coverage-icon {
    color: #475569;
    transform: scale(1.1);
}

.coverage-item h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.coverage-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    position: relative;
    z-index: 1;
    font-weight: 400;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Specific hover colors for different touchpoints */
.coverage-item:nth-child(1):hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.1);
}

.coverage-item:nth-child(1):hover .coverage-icon {
    color: #3b82f6;
}

.coverage-item:nth-child(2):hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.1);
}

.coverage-item:nth-child(2):hover .coverage-icon {
    color: #10b981;
}

.coverage-item:nth-child(3):hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.1);
}

.coverage-item:nth-child(3):hover .coverage-icon {
    color: #f97316;
}

.coverage-item:nth-child(4):hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.1);
}

.coverage-item:nth-child(4):hover .coverage-icon {
    color: #a855f7;
}

.coverage-item h3 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

/* Benefits Section */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(37, 99, 235, 0.05);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #1a202c;
    margin-bottom: 0.5rem;
}

/* Social Proof */
.social-proof {
    background: #f8fafc;
}

.logos-placeholder {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    color: #9ca3af;
    font-weight: 500;
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.logo-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: #2563eb;
}

.testimonial-placeholder {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-placeholder blockquote {
    font-size: 1.125rem;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1rem;
}

.testimonial-placeholder cite {
    color: #718096;
    font-style: normal;
    font-weight: 500;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    color: #cbd5e1;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta .btn {
    min-width: 200px;
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.cta .btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.cta .btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    border-color: rgba(255, 255, 255, 0.95);
}

/* Footer */
.footer {
    background: #f8fafc;
    padding: 3rem 0 1rem;
}

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

.footer-brand .logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand .logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.footer-brand .logo span {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #718096;
}

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

.footer-group h4 {
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-group a {
    display: block;
    color: #718096;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-group a:hover {
    color: #2563eb;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    color: #718096;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 0 1rem;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
        padding-right: 0;
    }
    
    .hero-mockups {
        order: 1;
        margin-left: 0;
    }
    
    .split-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-half {
        padding: 2rem 1rem;
    }
    
    .new-half {
        border-radius: 24px;
    }
    
    .returning-half {
        border-radius: 24px;
    }
    
    .center-divider {
        display: none;
    }
    
    
    .hero-device-showcase {
        flex-direction: column;
        gap: 2rem;
    }
    
    .vs-connector {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .hero-device {
        max-width: 200px;
    }
    
    .comparison-glow {
        width: 400px;
        height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        max-width: none;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .solution-steps {
        flex-direction: column;
        gap: 3rem;
        align-items: stretch;
    }
    
    .step {
        min-height: auto;
        height: auto;
    }
    
    .mockup-screen {
        width: 280px;
        height: 180px;
    }
    
    .problem-grid,
    .benefits-list,
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-item,
    .benefit-item {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.875rem;
        margin-bottom: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        gap: 2rem;
        justify-content: center;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    /* Disable hover effects on mobile */
    .problem-item:hover,
    .coverage-item:hover,
    .benefit-item:hover,
    .logo-item:hover {
        transform: none;
        box-shadow: initial;
    }
}

/* Product Page Styles */
.comparison-overview {
    padding: 3rem 0;
    background: #f8fafc;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.comparison-side {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    border: 2px solid #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.comparison-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 20px 20px 0 0;
}

.comparison-side.before::before {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.comparison-side.after::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.comparison-side:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.comparison-side.before:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.1);
}

.comparison-side.after:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.1);
}

.comparison-side h2 {
    margin-bottom: 2rem;
    margin-top: 0.5rem;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1e293b;
}

.comparison-side.before h2 {
    color: #dc2626;
}

.comparison-side.after h2 {
    color: #059669;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-list li {
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #475569;
    font-weight: 500;
    text-align: left;
    transition: all 0.2s ease;
}

.comparison-list li:hover {
    background: #f1f5f9;
    border-left-color: #cbd5e1;
}

.before .comparison-list li {
    border-left-color: #fca5a5;
}

.before .comparison-list li:hover {
    border-left-color: #f87171;
    background: #fef2f2;
}

.after .comparison-list li {
    border-left-color: #86efac;
}

.after .comparison-list li:hover {
    border-left-color: #4ade80;
    background: #f0fdf4;
}

/* Mobile Mockup Styles */
.mobile-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.mobile-screenshot {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.mobile-screenshot:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

/* Scenario Styles */
.scenario {
    padding: 4rem 0;
}

.scenario:nth-child(even) {
    background: #f8fafc;
}

.scenario-description {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scenario-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.scenario-before,
.scenario-after {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.scenario-before h3,
.scenario-after h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid #f1f5f9;
    transition: all 0.2s ease;
}

.scenario-before h3:hover,
.scenario-after h3:hover {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.mockup-frame {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mockup-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    z-index: 1;
}

.mockup-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 99, 235, 0.3);
}

.mockup-header {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #475569;
    border-bottom: 2px solid #e2e8f0;
    position: relative;
    z-index: 2;
}

.mockup-content {
    padding: 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.homepage-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.homepage-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.hero-block {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6;
    position: relative;
}

.hero-block::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    z-index: -1;
}

.hero-block.returning {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: #10b981;
    position: relative;
}

.hero-block.returning::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    z-index: -1;
}

.featured {
    background: #f9fafb;
}

.trust {
    background: #fef3c7;
    border-color: #f59e0b;
}

.reorder {
    background: #e0e7ff;
    border-color: #6366f1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.product-item {
    background: white;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.cart-suggestion,
.cart-threshold,
.cart-upgrade {
    margin-bottom: 1rem;
}

.suggestion-item,
.offer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f0f9ff;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.purchase-confirm {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #22c55e;
}

.postpurchase-offer {
    margin-bottom: 1rem;
}

.care-instructions {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

/* Technical Overview */
.technical-overview {
    background: #1a202c;
    color: white;
}

.technical-overview .section-title {
    color: white;
}

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

.tech-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tech-item h3 {
    color: white;
    margin-bottom: 1rem;
}

.tech-item p {
    color: #a0aec0;
}

/* FAQ Styles */
.faq {
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .comparison-grid,
    .scenario-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mobile-mockup {
        padding: 1rem;
    }
    
    .mobile-screenshot {
        max-width: 250px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .mockup-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 5rem 0 2.5rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.625rem;
        margin-bottom: 1.5rem;
    }
    
    .mockup-screen {
        width: 260px;
        height: 160px;
    }
    
    .problem-item,
    .benefit-item {
        padding: 1.25rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Design Partners Page Styles */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.benefits-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.partner-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #1a202c;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.6;
}

.commitment-section {
    padding: 4rem 0;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.commitment-item {
    text-align: center;
    padding: 1.5rem;
}

.commitment-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.commitment-item h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.commitment-item p {
    color: #4a5568;
}

.ideal-partner {
    padding: 4rem 0;
    background: #f8fafc;
}

.ideal-criteria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.criteria-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2563eb;
}

.criteria-card h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.criteria-card p {
    color: #4a5568;
    line-height: 1.6;
}

.application-form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.application-form-section .section-title {
    color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.application-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc2626;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.checkbox-item label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .partner-benefits {
        grid-template-columns: 1fr;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .ideal-criteria {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .application-form {
        padding: 2rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .application-form {
        padding: 1.5rem;
    }
}

/* About Page Styles */
.founder-story {
    padding: 4rem 0;
}

.story-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: -60px;
    width: 2px;
    background: #e5e7eb;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    margin-right: 2rem;
    flex-shrink: 0;
}

.marker-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-year {
    color: #2563eb;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-content h2 {
    color: #1a202c;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.story-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.story-text strong {
    color: #1a202c;
    font-weight: 600;
}

.story-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.story-list li {
    margin-bottom: 0.75rem;
    color: #4a5568;
}

.story-list strong {
    color: #1a202c;
}

.visual-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #e5e7eb;
}

.visual-box.frustrated {
    border-left-color: #dc2626;
    background: #fef2f2;
}

.visual-box.enterprise {
    border-left-color: #059669;
    background: #f0fdf4;
}

.visual-box.mission {
    border-left-color: #2563eb;
    background: #eff6ff;
}

.visual-box h4 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.visual-box ul {
    list-style: none;
    padding: 0;
}

.visual-box li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.vision-section {
    padding: 4rem 0;
    background: #f8fafc;
}

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

.vision-quote {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-style: italic;
}

.vision-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.vision-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vision-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vision-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.vision-stat .stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
}

.values-section {
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.value-item:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-item p {
    color: #4a5568;
    line-height: 1.6;
}

.team-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.founder-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.founder-info {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.founder-avatar {
    font-size: 4rem;
    flex-shrink: 0;
}

.founder-details h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.founder-bio,
.founder-mission {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.founder-mission {
    font-style: italic;
    color: #2563eb;
    font-weight: 500;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .timeline-marker {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .story-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vision-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .vision-stat {
        flex: 1;
        margin: 0 0.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .founder-info {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .vision-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vision-stat {
        margin: 0;
    }
    
    .timeline-content h2 {
        font-size: 1.5rem;
    }
    
    .vision-quote {
        font-size: 1.25rem;
    }
}

/* Contact Page Styles */
.contact-options {
    padding: 4rem 0;
    background: #f8fafc;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-option {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.contact-option:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-option h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-option p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.calendar-section {
    padding: 4rem 0;
}

.calendar-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.calendar-info h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.calendar-agenda {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.calendar-agenda li {
    padding: 0.75rem 0;
    color: #4a5568;
    font-size: 1.1rem;
}

.calendar-details {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.detail-item {
    margin-bottom: 1rem;
    color: #4a5568;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item strong {
    color: #1a202c;
    margin-right: 0.5rem;
}

.calendar-embed {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.calendar-placeholder {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.calendar-placeholder h4 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.placeholder-note {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.placeholder-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: left;
}

.placeholder-form h5 {
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.contact-form-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info h3 {
    color: #1a202c;
    margin-bottom: 2rem;
    font-size: 1.25rem;
}

.faq-preview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item-preview {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2563eb;
}

.faq-item-preview h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.faq-item-preview p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.response-promise {
    padding: 3rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.promise-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.promise-content h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.promise-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.promise-item strong {
    display: block;
    font-size: 1.125rem;
    color: white;
    margin-bottom: 0.5rem;
}

.promise-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.alt-contact {
    padding: 4rem 0;
}

.alt-contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.alt-contact-content h3 {
    color: #1a202c;
    margin-bottom: 3rem;
    font-size: 1.5rem;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    text-align: left;
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-info strong {
    display: block;
    color: #1a202c;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.method-info span {
    color: #4a5568;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-option {
        padding: 2rem 1.5rem;
    }
    
    .calendar-container,
    .form-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .calendar-placeholder,
    .contact-form-container {
        padding: 2rem;
    }
    
    .placeholder-form {
        padding: 1.5rem;
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .promise-item {
        padding: 1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-option {
        padding: 1.5rem 1rem;
    }
    
    .option-icon {
        font-size: 2.5rem;
    }
    
    .calendar-placeholder,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .placeholder-form {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .method-icon {
        font-size: 2.5rem;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Apply animations on page load */
.hero-title {
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-ctas {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.problem-item:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.problem-item:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.problem-item:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.section-title {
    animation: fadeInUp 0.6s ease-out;
}

.benefit-icon {
    animation: pulse 2s infinite;
}

.benefit-icon:hover {
    animation: bounce 0.6s ease;
}

/* Founder LinkedIn Profile Links */
.founder-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 119, 181, 0.2);
}

.founder-linkedin:hover {
    background: linear-gradient(135deg, #005885, #004a6b);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.founder-linkedin:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 119, 181, 0.3);
}

/* Founder Title */
.founder-title {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0.25rem 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Partnership Section */
.partnership-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.partnership-section.partnership-compact {
    padding: 2rem 0;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.partnership-column h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.25rem;
    text-align: left;
    position: relative;
}

.partnership-column h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 3px;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    border-radius: 2px;
}



.benefit-list,
.requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li,
.requirement-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #4a5568;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-list li:last-child,
.requirement-list li:last-child {
    border-bottom: none;
}

.benefit-list li:hover,
.requirement-list li:hover {
    color: #1a202c;
    transform: translateX(4px);
    transition: all 0.2s ease;
}

/* Combined Hero, Partnership & Form Section */
.hero-partnership-form {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.program-info {
    text-align: left;
}

.program-info .hero-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    text-align: left;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.program-info .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.program-info .partnership-grid {
    margin-top: 2rem;
}

.application-form-sidebar {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 120px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.application-form-sidebar:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Compact Form */
.form-compact {
    padding: 2rem 0;
}

.form-compact .form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-compact .form-container h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.form-compact .form-subtitle {
    margin-bottom: 1.5rem;
    color: #6b7280;
    font-size: 0.95rem;
}

.form-compact .form-group {
    margin-bottom: 1rem;
}

.form-compact .form-group label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
    display: block;
}

.form-compact .form-group input,
.form-compact .form-group select,
.form-compact .form-group textarea {
    padding: 0.75rem;
    font-size: 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: #fafafa;
}

.form-compact .form-group input:focus,
.form-compact .form-group select:focus,
.form-compact .form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-compact .form-group textarea {
    min-height: 60px;
}

@media (max-width: 768px) {
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-partnership-form {
        padding: 2rem 0;
    }
    
    .hero-partnership-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-info .hero-title {
        font-size: 1.875rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .program-info .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .application-form-sidebar {
        position: static;
        margin-top: 1rem;
    }
}

.founder-linkedin svg {
    width: 20px;
    height: 20px;
}

/* Founder Photos */
.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #e2e8f0;
    transition: all 0.3s ease;
    max-width: 140px;
    max-height: 140px;
    align-self: center;
}

.founder-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 160px;
    margin-right: 1.5rem;
    align-self: center;
}

.founder-info {
    display: flex;
    align-items: center;
    min-height: 160px;
}

.founder-photo:hover {
    transform: scale(1.02);
    border-color: #cbd5e1;
}

/* Design Partner Page Styles */
.hero-partnership-form {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-partnership-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-partnership-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* Program Info Section */
.program-info {
    padding-right: 2rem;
}

.program-info .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.program-info .hero-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 500px;
}

.partnership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.partnership-column h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e2e8f0;
}

.benefit-list, .requirement-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li, .requirement-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    font-size: 1rem;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.benefit-list li:last-child, .requirement-list li:last-child {
    border-bottom: none;
}

.benefit-list li:hover, .requirement-list li:hover {
    background: rgba(59, 130, 246, 0.02);
    padding-left: 1rem;
    margin-left: -1rem;
    border-radius: 8px;
}

/* Application Form Sidebar */
.application-form-sidebar {
    background: white;
    border-radius: 24px;
    padding: 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 2rem;
}

.application-form {
    padding: 2.5rem 3rem;
    border-radius: 24px;
}

.form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Google Form Wrapper */
.google-form-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.google-form-wrapper iframe {
    display: block;
    border: none;
    border-radius: 16px;
}

/* Enhanced Form Styles */
.application-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.application-form .form-group {
    margin-bottom: 1.2rem;
}

.application-form label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.application-form input,
.application-form select,
.application-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafbfc;
    box-sizing: border-box;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.application-form textarea {
    resize: vertical;
    min-height: 80px;
}

.application-form select {
    cursor: pointer;
}

.application-form .btn-full {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Responsive Design for Partnership Page */
@media (max-width: 1024px) {
    .hero-partnership-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .program-info {
        padding-right: 0;
    }
    
    .partnership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .application-form-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-partnership-form {
        padding: 4rem 0 3rem;
    }
    
    .program-info .hero-title {
        font-size: 2.5rem;
    }
    
    .program-info .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .application-form-sidebar {
        padding: 2rem 1.5rem;
    }
    
    .application-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .partnership-column h2 {
        font-size: 1.25rem;
    }
}