/* ============================================
   ProPigeon - Modern Enterprise Website
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e74c3c;
    --primary-dark: #c0392b;
    --primary-light: #ff6b6b;
    --primary-glow: rgba(231, 76, 60, 0.15);
    --primary-glow-strong: rgba(231, 76, 60, 0.3);

    --dark: #09090b;
    --dark-surface: #131316;
    --dark-card: #1a1a1f;
    --dark-border: #27272a;

    --light: #fafafa;
    --light-surface: #f4f4f5;
    --white: #ffffff;

    --text: #09090b;
    --text-secondary: #71717a;
    --text-on-dark: #fafafa;
    --text-on-dark-secondary: #a1a1aa;

    --border: #e4e4e7;
    --border-light: #f4f4f5;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 12px 24px -4px rgba(0,0,0,0.08);
    --shadow-lg: 0 24px 48px -12px rgba(0,0,0,0.12);
    --shadow-xl: 0 32px 64px -16px rgba(0,0,0,0.16);

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --transition: all 0.2s ease;
    --transition-slow: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --container: 1200px;
    --container-sm: 800px;
    --container-lg: 1400px;

    --nav-height: 72px;

    --section-padding: 120px;
    --section-padding-mobile: 64px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Layout --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: var(--container-sm);
    margin: 0 auto;
    padding: 0 24px;
}

.container-lg {
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-dark {
    background: var(--dark);
    color: var(--text-on-dark);
}

.section-dark p {
    color: var(--text-on-dark-secondary);
}

.section-light {
    background: var(--light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header .label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: var(--primary-glow);
    border-radius: var(--radius-full);
}

.section-dark .section-header .label {
    background: rgba(231, 76, 60, 0.2);
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.125rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--text);
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: #1a1a1f;
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    padding: 14px 16px;
}

.btn-ghost:hover {
    color: var(--primary);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: 14px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition-slow);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav.nav-dark.scrolled {
    background: rgba(9, 9, 11, 0.85);
    border-bottom: 1px solid var(--dark-border);
}

.nav-inner {
    max-width: var(--container-lg);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.nav-logo img {
    height: 36px;
    border-radius: 10px;
}

.nav-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.nav-dark .nav-links a {
    color: var(--text-on-dark-secondary);
}

.nav-dark .nav-links a:hover,
.nav-dark .nav-links a.active {
    color: var(--text-on-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-dark .btn-secondary {
    border-color: var(--dark-border);
    color: var(--text-on-dark);
}

.nav-dark .btn-secondary:hover {
    border-color: var(--text-on-dark-secondary);
}

/* Nav dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
    padding: 6px 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-on-dark-secondary) !important;
    transition: var(--transition);
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-on-dark) !important;
}

/* Mobile nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-dark .nav-toggle span {
    background: var(--text-on-dark);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    z-index: 999;
}

.nav-mobile.active {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-mobile a {
    padding: 16px;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-mobile a:hover {
    background: var(--light);
}

/* --- Language Switcher --- */
.lang-switcher {
    position: relative;
}

.lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 6px 12px;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.lang-switcher-btn:hover {
    color: var(--text);
    border-color: var(--text-secondary);
}

.nav-dark .lang-switcher-btn {
    color: var(--text-on-dark-secondary);
    background: var(--dark-card);
    border-color: var(--dark-border);
}

.nav-dark .lang-switcher-btn:hover {
    color: var(--text-on-dark);
    border-color: var(--text-on-dark-secondary);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    max-height: 320px;
    overflow-y: auto;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: var(--transition);
    z-index: 1001;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown::-webkit-scrollbar {
    width: 6px;
}

.lang-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.lang-dropdown::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: 3px;
}

.lang-option {
    display: block;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-on-dark-secondary);
    transition: var(--transition);
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-on-dark);
}

.lang-option.active {
    color: var(--primary);
    background: var(--primary-glow);
}

/* Language switcher - mobile */
.lang-mobile {
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

.lang-mobile .lang-tag {
    padding: 6px 14px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.lang-mobile .lang-tag:hover {
    border-color: var(--text-secondary);
    color: var(--text);
}

.lang-mobile .lang-tag-active {
    background: var(--primary-glow);
    border-color: var(--primary);
    color: var(--primary);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-dark {
    background: var(--dark);
    color: var(--text-on-dark);
}

.hero-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-glow-strong) 0%, transparent 70%);
    pointer-events: none;
}

.hero-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(231, 76, 60, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 640px;
    margin: 0 auto 40px;
}

.hero-dark .hero-content p {
    color: var(--text-on-dark-secondary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-glow);
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Hero mockup */
.hero-mockup {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.mockup-frame {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.05);
}

.mockup-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--dark-border);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--dark-border);
}

.mockup-dot:first-child { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-body {
    aspect-ratio: 16 / 9;
    background: var(--dark-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-dark-secondary);
    font-size: 1.125rem;
}

.mockup-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Stats Bar --- */
.stats-bar {
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
}

.stats-bar.dark {
    border-bottom-color: var(--dark-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 16px;
}

.stat-number {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.section-dark .stat-label {
    color: var(--text-on-dark-secondary);
}

/* --- Feature Cards --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition-slow);
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md), 0 0 0 1px var(--primary-glow);
    transform: translateY(-4px);
}

.section-dark .feature-card {
    background: var(--dark-card);
    border-color: var(--dark-border);
}

.section-dark .feature-card:hover {
    border-color: var(--primary);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-glow);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.375rem;
}

.feature-card h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* --- Split Section (text + image) --- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-reverse {
    direction: rtl;
}

.split-reverse > * {
    direction: ltr;
}

.split-content {
    max-width: 520px;
}

.split-content .label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 16px;
    padding: 6px 14px;
    background: var(--primary-glow);
    border-radius: var(--radius-full);
}

.split-content h2 {
    margin-bottom: 20px;
}

.split-content p {
    margin-bottom: 24px;
    font-size: 1.0625rem;
}

.split-content ul {
    margin-bottom: 32px;
}

.split-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.split-content ul li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    background: var(--primary-glow);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23e74c3c'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.section-dark .split-content ul li {
    color: var(--text-on-dark-secondary);
}

.split-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.split-image .placeholder {
    aspect-ratio: 4/3;
    background: var(--light-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    border: 2px dashed var(--border);
    border-radius: var(--radius-xl);
}

.section-dark .split-image .placeholder {
    background: var(--dark-card);
    border-color: var(--dark-border);
    color: var(--text-on-dark-secondary);
}

/* --- Steps --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    counter-reset: step;
}

.step-card {
    text-align: center;
    padding: 40px 24px;
    counter-increment: step;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 16px;
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.step-card h4 {
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9375rem;
}

/* --- Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-grid .pricing-card {
    max-width: 100%;
}

.pricing-card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 0 1px var(--primary-glow), var(--shadow-lg);
}

.pricing-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
}

.pricing-price {
    margin: 32px 0;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
    margin-right: 4px;
}

.pricing-price .period {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.pricing-features {
    text-align: left;
    margin: 32px 0;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
}

.pricing-features li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-glow);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23e74c3c'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

/* --- FAQ --- */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.section-dark .faq-item {
    border-bottom-color: var(--dark-border);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.0625rem;
    font-weight: 600;
    color: inherit;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.9375rem;
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-secondary);
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-info-card {
    padding: 32px;
    background: var(--light);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.contact-info-card h4 {
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.9375rem;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-detail-card {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.contact-detail-card h4 {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-detail-card p {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
}

/* --- CTA Section --- */
.cta-section {
    padding: var(--section-padding) 0;
    text-align: center;
    background: var(--dark);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow-strong) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-on-dark-secondary);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 40px;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: var(--text-on-dark);
    padding: 80px 0 40px;
    border-top: 1px solid var(--dark-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand p {
    color: var(--text-on-dark-secondary);
    font-size: 0.9375rem;
    margin-top: 16px;
    max-width: 300px;
}

.footer-col h5 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-on-dark-secondary);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    padding: 6px 0;
    font-size: 0.9375rem;
    color: var(--text-on-dark-secondary);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-on-dark-secondary);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-on-dark-secondary);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* --- About Page --- */
.about-story {
    font-size: 1.1875rem;
    line-height: 1.8;
    max-width: 720px;
}

.about-story p {
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: inherit;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value-card {
    padding: 36px;
    background: var(--light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.value-card .value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-glow);
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 1.375rem;
}

.value-card h4 {
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9375rem;
}

/* --- Team --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--light-surface);
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--border);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    margin-bottom: 4px;
}

.team-card p {
    font-size: 0.875rem;
}

/* --- Page Hero (for subpages) --- */
.page-hero {
    padding: calc(var(--nav-height) + 80px) 0 80px;
    text-align: center;
    background: var(--dark);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow-strong) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
}

.page-hero p {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    color: var(--text-on-dark-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Language Grid --- */
.lang-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.lang-tag {
    padding: 6px 14px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
}

/* --- Scroll Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .split-reverse {
        direction: ltr;
    }

    .split-content {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .lang-switcher {
        display: none;
    }

    .lang-mobile {
        display: flex;
    }

    .hero-content {
        padding: 48px 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-group .btn {
        width: 100%;
        max-width: 320px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .hero-mockup {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 64px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Uitslagen & Kampioenschappen --- */
.uitslagen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.uitslagen-card {
    display: flex;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.uitslagen-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.uitslagen-card-body {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    width: 100%;
}

.uitslagen-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 2px;
    line-height: 1.3;
}

.uitslagen-card-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.uitslagen-card-arrow {
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: var(--transition);
    margin-left: auto;
}

.uitslagen-card:hover .uitslagen-card-arrow {
    color: var(--primary);
    transform: translateX(2px);
}

.vereniging-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
    background: var(--light);
    border: 1px solid var(--border);
}

.vereniging-logo-lg {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: contain;
    flex-shrink: 0;
    background: var(--light);
    border: 1px solid var(--border);
}

.vereniging-logo-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    flex-shrink: 0;
    background: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.uitslagen-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.uitslagen-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.uitslagen-breadcrumb a:hover {
    text-decoration: underline;
}

.uitslagen-breadcrumb span {
    color: var(--text-secondary);
}

.uitslagen-breadcrumb-sep {
    color: var(--border);
}

.uitslagen-vereniging-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.uitslagen-section-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.year-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
}

.year-filter-btn {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--light);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
}

.year-filter-btn:hover {
    border-color: var(--text-secondary);
    color: var(--text);
}

.year-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.uitslagen-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.uitslagen-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.uitslagen-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.uitslagen-table thead {
    background: var(--light);
}

.uitslagen-table th {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.uitslagen-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-light);
}

.uitslagen-table tbody tr:hover {
    background: var(--light);
}

.uitslagen-table tbody tr:last-child td {
    border-bottom: none;
}

.uitslagen-table code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    padding: 2px 6px;
    background: var(--light);
    border-radius: 4px;
}

.uitslagen-alert {
    padding: 16px 20px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

@media (max-width: 1024px) {
    .uitslagen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .uitslagen-grid {
        grid-template-columns: 1fr;
    }

    .uitslagen-section-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}
