/* ===================================
   VersicherungsTech Magazin - Road to insureNXT 2026
   Landing Page Styles
   =================================== */

/* --- CSS Custom Properties --- */
:root {
    /* Brand Colors - inspired by versicherungstech-magazin.de */
    --primary: #0a1628;
    --primary-light: #1a2d4a;
    --secondary: #1e3a5f;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --accent-glow: rgba(59, 130, 246, 0.3);
    --gradient-start: #3b82f6;
    --gradient-end: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-light);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
    /*
     * LOGO SIZING: The original PNG has ~80% transparent padding.
     * We scale it up inside a clipping container to show only the visible part.
     * 
     * To adjust: Change --logo-zoom (higher = bigger logo text) 
     * and --logo-shift-y (negative = move up, positive = move down)
     */
    --logo-zoom: 280px;      /* How much to scale the image */
    --logo-shift-y: 0px;     /* Vertical fine-tuning */
    height: 54px;
    flex-shrink: 0;
}

.logo-img {
    height: var(--logo-zoom);
    width: auto;
    display: block;
    filter: brightness(1);
    transition: opacity var(--transition-fast);
    margin-top: var(--logo-shift-y);
}

.logo:hover .logo-img {
    opacity: 0.85;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
}

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

.cta-button-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

.cta-button-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--accent-glow);
    color: var(--white) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
    border-radius: 2px;
}

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    z-index: 999;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
}

.mobile-nav-link:hover {
    color: var(--white);
}

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

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 100px;
    color: var(--accent-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 11px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-subtitle strong {
    color: var(--white);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    border: none;
    font-family: var(--font-primary);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
    color: var(--white);
}

.cta-button.secondary {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 16px;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.trust-item i {
    color: var(--success);
    font-size: 14px;
}

/* Hero Visual Card */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    position: relative;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 100%;
    max-width: 420px;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.hero-card-glow {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    z-index: -1;
    filter: blur(20px);
    animation: glow 3s ease-in-out infinite;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-card-tag {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero-card-date {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-stat {
    text-align: center;
    margin-bottom: 28px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
    display: block;
}

.hero-stat-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.phase-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.05);
}

.phase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.phase-dot.pre {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

.phase-dot.live {
    background: var(--success);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.phase-dot.post {
    background: var(--gradient-end);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-indicator i {
    animation: bounceDown 2s ease-in-out infinite;
}

/* --- Sections --- */
.section {
    padding: var(--section-padding) 0;
}

.section-light {
    background: var(--white);
}

.section-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.section-accent {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.section-cta {
    background: var(--gray-50);
    padding: 80px 0;
}

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

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-tag.light {
    color: var(--accent-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.8;
}

.section-subtitle.light {
    color: rgba(255,255,255,0.6);
}

.section-subtitle strong {
    color: var(--gray-800);
}

.section-subtitle.light strong {
    color: var(--white);
}

/* --- Problem Section --- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.problem-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 36px;
    transition: all var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.problem-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 22px;
    color: var(--accent);
}

.problem-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* --- Timeline Section --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

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

.timeline-marker {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.timeline-marker.pre {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    box-shadow: 0 0 30px var(--accent-glow);
}

.timeline-marker.live {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.timeline-marker.post {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.timeline-content {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 32px;
    flex: 1;
    backdrop-filter: blur(5px);
}

.timeline-phase {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 8px;
    display: block;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.timeline-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timeline-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.timeline-features li i {
    color: var(--success);
    font-size: 12px;
}

/* --- Formats Section --- */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.format-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.format-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.format-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 0 40px var(--accent-glow);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.format-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 26px;
    color: var(--accent);
}

.format-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.format-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

.format-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex: 1;
}

.format-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-600);
}

.format-features li i {
    color: var(--accent);
    font-size: 14px;
}

.format-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--transition-base);
}

.format-cta:hover {
    gap: 12px;
    color: var(--accent);
}

.formats-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 24px;
}

.formats-note i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.formats-note p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

.formats-note a {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* --- Benefits Section --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all var(--transition-base);
}

.benefit-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* --- Team Section --- */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
}

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

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: var(--gray-400);
}

.team-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--gray-500);
}

.partner-logos {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.partner-label {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 16px;
}

.partner-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.partner-item i {
    color: var(--accent);
    font-size: 18px;
}

/* --- CTA Box --- */
.cta-box {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

.cta-visual {
    flex-shrink: 0;
}

.pdf-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px 24px;
}

.pdf-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ef4444;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 24px;
}

.pdf-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pdf-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--gray-800);
}

.pdf-meta {
    font-size: 13px;
    color: var(--gray-400);
}

/* --- Contact Section --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-tag {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.08);
    border-radius: var(--radius-sm);
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-item a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
}

.contact-item a:hover {
    color: var(--accent);
}

.urgency-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
}

.urgency-note i {
    color: var(--warning);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.urgency-note p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--gray-800);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.form-group select {
    cursor: pointer;
    appearance: auto;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

.checkbox-label a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-note {
    grid-column: 1 / -1;
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    margin-top: 4px;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 60px 36px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.success-icon {
    font-size: 56px;
    color: var(--success);
    margin-bottom: 20px;
    animation: countUp 0.5s ease;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    background: var(--primary);
    padding: 48px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-logo-link {
    display: block;
    overflow: hidden;
    height: 46px;
    transition: opacity var(--transition-fast);
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo-img {
    height: 240px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    font-style: italic;
    margin-top: 2px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-fast);
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-card {
        max-width: 360px;
    }
    
    .problem-grid,
    .formats-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-box {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 56px;
    }
    
    .container {
        padding: 0 18px;
    }
    
    .header-inner {
        height: 60px;
        padding: 0 18px;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-nav {
        top: 60px;
    }
    
    .logo-img {
        height: 220px;
    }
    
    .logo {
        height: 44px;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 18px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-title br {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 24px;
        max-width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
    }
    
    .cta-button {
        justify-content: center;
        padding: 13px 24px;
        font-size: 14px;
        width: 100%;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .trust-item {
        font-size: 12px;
    }
    
    .hero-card {
        max-width: 100%;
        padding: 24px;
        animation: none;
    }
    
    .hero-card-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    
    .hero-card-tag {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .phase-item {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    /* Sections Mobile */
    .section-header {
        margin-bottom: 36px;
    }
    
    .section-tag {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 14px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    /* Problem Cards Mobile */
    .problem-grid,
    .formats-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .problem-card {
        padding: 24px;
    }
    
    .problem-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .problem-card h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }
    
    .problem-card p {
        font-size: 14px;
    }
    
    /* Timeline Mobile */
    .timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 28px;
        gap: 20px;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .timeline-content {
        padding: 24px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .timeline-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .timeline-features li {
        justify-content: center;
        font-size: 13px;
    }
    
    /* Format Cards Mobile */
    .format-card {
        padding: 24px;
    }
    
    .format-card.featured {
        margin-top: 8px;
    }
    
    .format-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .format-card h3 {
        font-size: 17px;
    }
    
    .format-card p {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .format-features {
        margin-bottom: 18px;
        gap: 8px;
    }
    
    .format-features li {
        font-size: 13px;
    }
    
    .formats-note {
        padding: 16px 18px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .formats-note i {
        align-self: center;
    }
    
    /* Benefits Mobile */
    .benefit-card {
        padding: 24px;
    }
    
    .benefit-number {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .benefit-card h3 {
        font-size: 16px;
    }
    
    .benefit-card p {
        font-size: 13px;
    }
    
    /* Team Mobile */
    .team-grid {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 32px;
    }
    
    .team-card {
        padding: 20px;
    }
    
    .team-avatar {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
    
    .team-card h3 {
        font-size: 16px;
    }
    
    .team-role {
        font-size: 13px;
    }
    
    /* CTA Box Mobile */
    .section-cta {
        padding: 48px 0;
    }
    
    .cta-box {
        padding: 28px 22px;
        border-radius: var(--radius-lg);
    }
    
    .cta-content h2 {
        font-size: 22px;
    }
    
    .cta-content p {
        font-size: 14px;
    }
    
    .pdf-preview {
        padding: 16px;
    }
    
    .pdf-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .pdf-name {
        font-size: 14px;
    }
    
    .pdf-meta {
        font-size: 12px;
    }
    
    /* Contact Mobile */
    .contact-wrapper {
        gap: 32px;
    }
    
    .contact-info .section-title {
        font-size: 1.4rem;
    }
    
    .contact-info p {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .contact-details {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-item a {
        font-size: 13px;
        word-break: break-all;
    }
    
    .urgency-note {
        padding: 16px;
    }
    
    .urgency-note p {
        font-size: 13px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    .form-group label {
        font-size: 12px;
    }
    
    .checkbox-label {
        font-size: 12px;
    }
    
    .form-note {
        font-size: 11px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 36px 0 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding-bottom: 24px;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-logo-img {
        height: 200px;
    }
    
    .footer-logo-link {
        height: 38px;
    }
    
    .footer-tagline {
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 14px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .hero-badge {
        font-size: 10px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .cta-box {
        padding: 22px 18px;
    }
    
    .format-card,
    .problem-card,
    .benefit-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 16px;
    }
    
    .cta-button.large {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* --- Touch & Performance Optimizations --- */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices for better performance */
    .problem-card:hover,
    .format-card:hover,
    .benefit-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .format-card.featured:hover {
        box-shadow: 0 0 40px var(--accent-glow);
    }
    
    /* Increase touch targets */
    .nav-link,
    .mobile-nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .format-cta {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    /* Disable floating animation on mobile for performance */
    .hero-card {
        animation: none;
    }
    
    .hero-card-glow {
        animation: none;
        opacity: 0.5;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* --- Print styles --- */
@media print {
    .header, .scroll-indicator, .mobile-nav {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}
