/* ========================================
   KONUBUL V2 - Kurumsal Tasarım
   Premium Akademik Platform
   ======================================== */

/* ========================================
   1. CSS VARIABLES
   ======================================== */
:root {
    /* Light Theme - Elegant Corporate */
    --bg-body: #f7f8fa;
    --bg-primary: #ffffff;
    --bg-secondary: #f1f3f8;
    --bg-tertiary: #e8ecf4;
    --bg-elevated: #ffffff;

    --text-primary: #0f1729;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-light: #a0aec0;

    /* Corporate Blue */
    --brand-primary: #1a365d;
    --brand-secondary: #2c5282;
    --brand-tertiary: #3182ce;
    --brand-light: #ebf4ff;

    /* Gold Accent */
    --accent-gold: #c9a227;
    --accent-gold-light: #f6e9b1;
    --accent-gold-dark: #9a7b1a;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #3182ce 100%);
    --gradient-gold: linear-gradient(135deg, #c9a227 0%, #e6c54b 50%, #c9a227 100%);
    --gradient-subtle: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);

    /* Status */
    --success: #38a169;
    --warning: #d69e2e;
    --error: #e53e3e;

    /* Borders & Shadows */
    --border-color: #e2e8f0;
    --border-light: rgba(26, 54, 93, 0.1);

    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-brand: 0 8px 32px rgba(26, 54, 93, 0.2);
    --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.25);

    /* Layout */
    --nav-height: 80px;
    --container-max: 1200px;
    --section-gap: 120px;

    /* Typography */
    --font-family: 'Baloo 2', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 0.15s;
    --duration-normal: 0.3s;
    --duration-slow: 0.5s;

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
}

/* Dark Theme - Premium Dark */
[data-theme="dark"] {
    --bg-body: #0d1117;
    --bg-primary: #161b22;
    --bg-secondary: #1c2128;
    --bg-tertiary: #21262d;
    --bg-elevated: #1c2128;

    --text-primary: #f0f6fc;
    --text-secondary: #c9d1d9;
    --text-muted: #8b949e;
    --text-light: #6e7681;

    --brand-primary: #58a6ff;
    --brand-secondary: #79c0ff;
    --brand-tertiary: #a5d6ff;
    --brand-light: rgba(88, 166, 255, 0.1);

    --accent-gold: #f0c14b;
    --accent-gold-light: rgba(240, 193, 75, 0.15);
    --accent-gold-dark: #d4a72c;

    --gradient-brand: linear-gradient(135deg, #1c2128 0%, #21262d 100%);

    --border-color: #30363d;
    --border-light: rgba(240, 246, 252, 0.1);

    --shadow-brand: 0 8px 32px rgba(88, 166, 255, 0.15);
    --shadow-gold: 0 8px 32px rgba(240, 193, 75, 0.15);
}

/* ========================================
   2. RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background var(--duration-normal) var(--ease-out),
    color var(--duration-normal) var(--ease-out);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--duration-fast) var(--ease-out);
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul { list-style: none; }

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

::selection {
    background: var(--brand-primary);
    color: white;
}

/* ========================================
   3. LAYOUT
   ======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   4. BACKGROUND PATTERN
   ======================================== */
.bg-pattern {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.pattern-grid {
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(var(--border-light) 1px, transparent 1px),
            linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    transition: opacity var(--duration-slow);
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--brand-primary);
    top: -200px;
    right: -200px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-gold);
    bottom: -100px;
    left: -100px;
    animation: orbFloat2 25s ease-in-out infinite;
}

[data-theme="dark"] .gradient-orb {
    opacity: 0.15;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, 80px) scale(1.1); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(60px, -60px); }
}

/* ========================================
   5. NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--duration-normal) var(--ease-out);
}

.navbar.scrolled {
    background: var(--bg-primary);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(22, 27, 34, 0.95);
    backdrop-filter: blur(20px);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transition: transform var(--duration-fast);
}

.logo:hover .logo-img {
    transform: scale(1.08);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    letter-spacing: 0.5px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    position: relative;
    transition: all var(--duration-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform var(--duration-fast) var(--ease-out);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--brand-primary);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme Toggle - Premium Switch */
.theme-toggle {
    width: 56px;
    height: 30px;
    padding: 0;
}

.toggle-track {
    width: 100%;
    height: 100%;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 6px;
    transition: background var(--duration-fast);
    border: 1px solid var(--border-color);
}

.toggle-thumb {
    position: absolute;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--bg-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration-normal) var(--ease-out);
}

[data-theme="dark"] .toggle-thumb {
    transform: translateX(26px);
}

.toggle-track svg {
    width: 14px;
    height: 14px;
    position: relative;
    z-index: 1;
    transition: opacity var(--duration-fast);
}

.icon-sun {
    color: var(--accent-gold);
    opacity: 1;
}

.icon-moon {
    color: var(--brand-primary);
    opacity: 0.4;
    margin-left: auto;
}

[data-theme="dark"] .icon-sun { opacity: 0.4; }
[data-theme="dark"] .icon-moon { opacity: 1; color: var(--accent-gold); }

.theme-toggle:hover .toggle-track {
    background: var(--bg-secondary);
}

/* Nav Button */
.btn-nav {
    padding: 10px 24px;
    background: var(--gradient-brand);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: all var(--duration-fast);
    box-shadow: var(--shadow-brand);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26, 54, 93, 0.3);
}

[data-theme="dark"] .btn-nav {
    background: var(--brand-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 10;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   6. HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--nav-height) + 40px) 0 60px;
    position: relative;
    overflow: hidden;
}

/* Hero Layout - Flexbox */
.hero-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 0 1 550px;
    max-width: 550px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px 8px 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all var(--duration-fast) var(--ease-out);
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--duration-fast);
}

.btn-primary {
    background: var(--gradient-brand);
    color: white;
    box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(26, 54, 93, 0.35);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

[data-theme="dark"] .btn-primary {
    background: var(--brand-primary);
}

.btn-outline {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    flex-shrink: 0;
    width: 450px;
    height: 450px;
}

.visual-card {
    position: absolute;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.main-card {
    width: 280px;
    height: 280px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: mainFloat 6s ease-in-out infinite;
}

.main-card img {
    width: 160px;
    height: 160px;
}

@keyframes mainFloat {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, calc(-50% - 15px)); }
}

.float-card {
    padding: 14px 18px;
    gap: 10px;
    animation: floatCard 5s ease-in-out infinite;
}

.float-card svg {
    width: 22px;
    height: 22px;
    color: var(--accent-gold);
}

.float-card span {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-primary);
}

.card-1 {
    top: 20px;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    animation: floatCard3 5s ease-in-out infinite 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 10px)); }
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ========================================
   7. QUICK NAVIGATION
   ======================================== */
.quick-nav {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.nav-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nav-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.nav-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity var(--duration-normal);
}

.nav-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.nav-card:hover::before {
    opacity: 1;
}

.nav-card:hover * {
    color: white !important;
    position: relative;
    z-index: 1;
}

.nav-card.highlight {
    background: var(--gradient-brand);
    border-color: transparent;
}

.nav-card.highlight * {
    color: white !important;
}

.nav-card.highlight:hover {
    box-shadow: var(--shadow-brand);
}

.card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-light);
    line-height: 1;
}

.nav-card.highlight .card-number,
.nav-card:hover .card-number {
    color: rgba(255,255,255,0.3) !important;
}

.card-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.card-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.card-arrow {
    width: 20px;
    height: 20px;
    margin-left: auto;
    color: var(--text-muted);
    transition: transform var(--duration-fast);
}

.nav-card:hover .card-arrow {
    transform: translateX(4px);
}

/* ========================================
   8. FEATURES SECTION
   ======================================== */
.features {
    padding: var(--section-gap) 0;
}

.section-header {
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--brand-light);
    color: var(--brand-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-tag.light {
    background: rgba(255,255,255,0.15);
    color: white;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-title.left {
    text-align: left;
}

.section-title.light {
    color: white;
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 40px 32px;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-primary);
}

.feature-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--brand-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    transition: all var(--duration-fast);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card:hover .feature-icon {
    background: var(--brand-primary);
    color: white;
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-tertiary);
    line-height: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   9. WHY SECTION
   ======================================== */
.why-section {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
}

.why-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-text {
    margin-bottom: 32px;
}

.why-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.why-text strong {
    color: var(--text-primary);
}

.why-highlight {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.highlight-bar {
    width: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    flex-shrink: 0;
}

.why-highlight p {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0;
}

/* Puzzle Visual */
.why-visual {
    display: flex;
    justify-content: center;
}

.visual-box {
    width: 320px;
    height: 320px;
    position: relative;
}

.box-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.puzzle-piece {
    position: absolute;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--duration-slow) var(--ease-out);
}

.piece-1 {
    width: 140px;
    height: 140px;
    top: 0;
    left: 0;
    animation: puzzleFloat1 4s ease-in-out infinite;
}

.piece-2 {
    width: 140px;
    height: 140px;
    top: 0;
    right: 0;
    animation: puzzleFloat2 4s ease-in-out infinite 0.5s;
}

.piece-3 {
    width: 140px;
    height: 140px;
    bottom: 0;
    left: 0;
    animation: puzzleFloat3 4s ease-in-out infinite 1s;
}

.piece-4 {
    width: 140px;
    height: 140px;
    bottom: 0;
    right: 0;
    background: var(--gradient-brand);
    border-color: transparent;
    animation: puzzleFloat4 4s ease-in-out infinite 1.5s;
}

.puzzle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--accent-gold);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes puzzleFloat1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(8px, 8px); } }
@keyframes puzzleFloat2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-8px, 8px); } }
@keyframes puzzleFloat3 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(8px, -8px); } }
@keyframes puzzleFloat4 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-8px, -8px); } }
@keyframes glowPulse { 0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); } }

/* ========================================
   10. COMPARISON SECTION
   ======================================== */
.comparison {
    padding: var(--section-gap) 0;
    background: var(--brand-primary);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .comparison {
    background: var(--bg-tertiary);
}

.comparison::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.03'%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");
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 64px;
    position: relative;
    z-index: 1;
}

/* Risk Column */
.risk-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.risk-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all var(--duration-fast);
}

.risk-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-8px);
}

.risk-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.risk-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
}

.risk-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.risk-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Divider Column */
.divider-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.divider-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
}

.divider-badge {
    padding: 24px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.divider-badge span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.divider-badge strong {
    display: block;
    font-size: 1.125rem;
    color: var(--accent-gold);
}

/* Solution Column */
.solution-column {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.solution-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.solution-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}

.solution-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 8px;
}

.solution-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.solution-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.solution-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--accent-gold-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold-dark);
}

.solution-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.solution-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ========================================
   11. HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
    padding: var(--section-gap) 0;
}

.steps-timeline {
    position: relative;
    margin-top: 64px;
    padding-left: 80px;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--brand-primary), var(--accent-gold));
}

.step-item {
    position: relative;
    padding-bottom: 48px;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-marker {
    position: absolute;
    left: -80px;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-brand);
    z-index: 1;
}

.step-marker span {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}

.step-content {
    padding: 24px 32px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--duration-fast);
}

.step-content:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   12. SUMMARY SECTION
   ======================================== */
.summary {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
}

.summary-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px;
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.summary-header {
    margin-bottom: 48px;
}

.summary-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.summary-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 8px;
}

.summary-tagline {
    font-size: 1.125rem;
    color: var(--accent-gold-dark);
    font-weight: 600;
}

.summary-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
    text-align: left;
}

.summary-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast);
}

.summary-feature:hover {
    background: var(--brand-light);
}

.summary-feature svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: var(--success);
}

.summary-feature span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.summary-progress {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.progress-step {
    width: 40px;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    transition: all var(--duration-fast);
}

.progress-step.active {
    background: var(--gradient-gold);
    width: 60px;
}

/* ========================================
   13. FOOTER
   ======================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand-primary);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--duration-fast);
}

.social-links a:hover {
    background: var(--brand-primary);
    color: white;
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--brand-primary);
}

.contact-mail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-mail:hover {
    color: var(--brand-primary);
}

.contact-mail svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-bottom .copyright {
    color: var(--text-light);
}

/* ========================================
   14. BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--brand-primary);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-brand);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-fast);
    z-index: 999;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 54, 93, 0.4);
}

/* ========================================
   15. RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .hero-layout {
        gap: 40px;
    }

    .hero-visual {
        width: 400px;
        height: 400px;
    }

    .main-card {
        width: 240px;
        height: 240px;
    }

    .main-card img {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-gap: 80px;
    }

    .hero-layout {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-content {
        max-width: 600px;
    }

    .hero-visual {
        width: 350px;
        height: 350px;
    }

    .main-card {
        width: 220px;
        height: 220px;
    }

    .main-card img {
        width: 130px;
        height: 130px;
    }

    .float-card {
        display: none;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .nav-cards,
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .why-layout {
        grid-template-columns: 1fr;
    }

    .why-visual {
        order: -1;
    }

    .visual-box {
        width: 280px;
        height: 280px;
        margin: 0 auto 40px;
    }

    .puzzle-piece {
        width: 120px;
        height: 120px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .divider-column {
        flex-direction: row;
        padding: 20px 0;
    }

    .divider-line {
        flex: 1;
        height: 2px;
        width: auto;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    /* Navbar her zaman arka planlı olsun mobilde */
    .navbar {
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-color);
    }

    [data-theme="dark"] .navbar {
        background: var(--bg-secondary);
    }

    .navbar.scrolled {
        box-shadow: var(--shadow-md);
    }

    /* Menü açıkken navbar stilini sabit tut */
    .navbar.menu-open,
    .navbar.menu-open.scrolled {
        background: var(--bg-primary) !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    [data-theme="dark"] .navbar.menu-open,
    [data-theme="dark"] .navbar.menu-open.scrolled {
        background: var(--bg-secondary) !important;
    }

    /* Mobil menü tam ekran */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--duration-normal);
        z-index: 998;
        padding-top: var(--nav-height);
    }

    [data-theme="dark"] .nav-menu {
        background: var(--bg-secondary);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 16px 40px;
        width: 100%;
        text-align: center;
        border-radius: var(--radius-md);
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--bg-secondary);
    }

    [data-theme="dark"] .nav-link:hover,
    [data-theme="dark"] .nav-link.active {
        background: var(--bg-tertiary);
    }

    .nav-link::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 999;
    }

    .btn-nav {
        display: none;
    }

    /* Theme toggle mobilde görünür */
    .theme-toggle {
        z-index: 999;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .steps-timeline {
        padding-left: 60px;
    }

    .step-marker {
        left: -60px;
        width: 40px;
        height: 40px;
    }

    .timeline-line {
        left: 19px;
    }

    .summary-card {
        padding: 40px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: none;
    }

    .social-links {
        justify-content: center;
    }

    /* Hero visual mobilde gizle */
    .hero-visual {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px 6px 10px;
    }

    .nav-card {
        padding: 20px 24px;
    }

    .card-number {
        font-size: 2rem;
    }

    .feature-card {
        padding: 28px 24px;
    }

    .step-content {
        padding: 20px 24px;
    }

    .risk-card,
    .solution-column {
        padding: 24px;
    }
}

/* ========================================
   16. ACCESSIBILITY & MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar, .back-to-top, .bg-pattern {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}

/* ========================================
   17. ABOUT PAGE STYLES
   ======================================== */

/* Page Hero */
.page-hero {
    padding: calc(var(--nav-height) + 80px) 0 100px;
    position: relative;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-secondary) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Intro */
.about-intro {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-content .section-title {
    margin-bottom: 32px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.intro-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 320px;
    height: 320px;
}

.visual-icon-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: var(--gradient-brand);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-brand);
}

.visual-icon-box svg {
    width: 80px;
    height: 80px;
    color: white;
}

.visual-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--bg-primary);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: floatBadge 4s ease-in-out infinite;
}

.visual-floating-badge svg {
    width: 22px;
    height: 22px;
    color: var(--accent-gold);
}

.visual-floating-badge span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.badge-1 {
    top: 20px;
    right: 0;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 40px;
    left: -10px;
    animation-delay: 1s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Core Values */
.core-values {
    padding: var(--section-gap) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.value-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--accent-gold-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-gold-dark);
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Compliance Section */
.compliance-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.compliance-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.compliance-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-top: 24px;
}

.compliance-text strong {
    color: var(--text-primary);
}

.compliance-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.compliance-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    min-width: 140px;
    transition: all var(--duration-normal);
}

.compliance-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    width: 56px;
    height: 56px;
    background: var(--brand-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 28px;
    height: 28px;
    color: var(--brand-primary);
}

.compliance-badge span {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
    text-align: center;
}

/* Vision Section */
.vision-section {
    padding: var(--section-gap) 0;
}

.vision-card {
    background: var(--gradient-brand);
    border-radius: var(--radius-2xl);
    padding: 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.vision-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.section-tag.light {
    background: rgba(255,255,255,0.15);
    color: white;
}

.vision-card h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-top: 16px;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.vision-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 32px;
}

.vision-content strong {
    color: var(--accent-gold);
}

.vision-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.vision-highlight svg {
    width: 24px;
    height: 24px;
}

.vision-highlight span {
    font-weight: 700;
    font-size: 1rem;
}

/* Mission Section */
.mission-section {
    padding: var(--section-gap) 0;
    background: var(--bg-secondary);
}

.mission-layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
}

.mission-icon-area {
    display: flex;
    justify-content: center;
}

.mission-icon-box {
    width: 160px;
    height: 160px;
    background: var(--accent-gold);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    animation: starPulse 3s ease-in-out infinite;
}

.mission-icon-box svg {
    width: 80px;
    height: 80px;
    color: white;
    fill: white;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.mission-content .section-title {
    margin-bottom: 20px;
}

.mission-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.mission-content strong {
    color: var(--text-primary);
}

.mission-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mission-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.mission-feature svg {
    width: 22px;
    height: 22px;
    color: var(--success);
    flex-shrink: 0;
}

.mission-feature span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* About CTA */
.about-cta {
    padding: 80px 0;
}

.cta-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .intro-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .intro-visual {
        order: -1;
    }

    .visual-container {
        width: 280px;
        height: 280px;
    }

    .visual-icon-box {
        width: 150px;
        height: 150px;
    }

    .visual-icon-box svg {
        width: 60px;
        height: 60px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compliance-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mission-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mission-icon-area {
        order: -1;
    }

    .mission-icon-box {
        width: 120px;
        height: 120px;
    }

    .mission-icon-box svg {
        width: 60px;
        height: 60px;
    }

    .mission-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: calc(var(--nav-height) + 60px) 0 80px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 60px auto 0;
    }

    .compliance-badges {
        flex-direction: column;
        align-items: center;
    }

    .compliance-badge {
        width: 100%;
        max-width: 200px;
    }

    .vision-card {
        padding: 40px 24px;
    }

    .mission-features {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .visual-container {
        width: 240px;
        height: 240px;
    }

    .visual-icon-box {
        width: 120px;
        height: 120px;
    }

    .visual-icon-box svg {
        width: 50px;
        height: 50px;
    }

    .visual-floating-badge {
        padding: 10px 14px;
    }

    .visual-floating-badge span {
        font-size: 0.8rem;
    }
}

/* ========================================
   18. FAQ PAGE STYLES
   ======================================== */

/* FAQ Section */
.faq-section {
    padding: 80px 0 var(--section-gap);
    background: var(--bg-secondary);
}

.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* FAQ Sidebar */
.faq-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
}

.sidebar-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all var(--duration-fast);
}

.category-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.category-link:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.category-link.active {
    background: var(--brand-light);
    color: var(--brand-primary);
}

[data-theme="dark"] .category-link.active {
    background: rgba(88, 166, 255, 0.15);
}

/* Help Card */
.help-card {
    text-align: center;
    background: var(--gradient-brand);
    border: none;
    color: white;
}

.help-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.help-card p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.help-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.help-icon svg {
    width: 28px;
    height: 28px;
}

.help-card .btn-outline {
    background: white;
    color: var(--brand-primary);
    border-color: white;
    padding: 10px 20px;
    font-size: 0.85rem;
}

.help-card .btn-outline:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

/* FAQ Content */
.faq-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.faq-category {
    scroll-margin-top: calc(var(--nav-height) + 24px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.category-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    opacity: 0.5;
    line-height: 1;
}

.category-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration-fast);
}

.faq-item:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    cursor: pointer;
    transition: all var(--duration-fast);
}

.faq-question:hover {
    color: var(--brand-primary);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--brand-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal) var(--ease-out),
    padding var(--duration-normal) var(--ease-out);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.faq-answer p:first-child {
    padding-top: 0;
    border-top: 1px solid var(--border-color);
    margin-top: 0;
    padding-top: 20px;
}

.faq-answer p + p {
    padding-top: 0;
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* FAQ CTA */
.faq-cta {
    padding: 80px 0;
}

.faq-cta .cta-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.faq-cta .cta-card h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.faq-cta .cta-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* FAQ Responsive */
@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .sidebar-card {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .faq-sidebar {
        grid-template-columns: 1fr;
    }

    .help-card {
        display: none;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 20px 16px;
        font-size: 0.9rem;
    }

    .faq-answer p:first-child {
        padding-top: 16px;
    }

    .category-header h2 {
        font-size: 1.25rem;
    }

    .faq-cta .cta-card {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .category-link {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .category-link svg {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   19. BLOG PAGE STYLES
   ======================================== */

/* Blog Section */
.blog-section {
    padding: 80px 0 var(--section-gap);
    background: var(--bg-secondary);
}

/* Featured Post */
.blog-featured {
    margin-bottom: 60px;
}

.featured-link {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.featured-link:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-primary);
}

.featured-image {
    position: relative;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.featured-icon {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-icon svg {
    width: 60px;
    height: 60px;
    color: white;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: var(--accent-gold);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
}

.featured-content {
    padding: 48px 48px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.blog-category {
    padding: 6px 14px;
    background: var(--brand-light);
    color: var(--brand-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-date svg,
.blog-read-time svg {
    width: 16px;
    height: 16px;
}

.featured-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.featured-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.featured-excerpt {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brand-primary);
    transition: gap var(--duration-fast);
}

.read-more svg {
    width: 18px;
    height: 18px;
    transition: transform var(--duration-fast);
}

.featured-link:hover .read-more svg,
.blog-card-link:hover .read-more svg {
    transform: translateX(4px);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
}

.blog-card-link {
    display: block;
    height: 100%;
}

.blog-card-icon {
    height: 160px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.blog-card-icon svg {
    width: 56px;
    height: 56px;
    color: var(--brand-primary);
    opacity: 0.6;
}

.blog-card-content {
    padding: 28px;
}

.blog-card-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-content .blog-meta {
    margin-bottom: 12px;
}

/* Newsletter */
.blog-newsletter {
    padding: 80px 0;
}

.newsletter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px 56px;
    background: var(--gradient-brand);
    border-radius: var(--radius-2xl);
    color: white;
}

.newsletter-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.newsletter-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.newsletter-card .btn-primary {
    background: white;
    color: var(--brand-primary);
    box-shadow: none;
    flex-shrink: 0;
}

.newsletter-card .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ========================================
   20. BLOG DETAIL STYLES
   ======================================== */

/* Blog Detail Hero */
.blog-detail-hero {
    padding: calc(var(--nav-height) + 60px) 0 60px;
    background: linear-gradient(180deg, var(--bg-body) 0%, var(--bg-secondary) 100%);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 32px;
    transition: all var(--duration-fast);
}

.back-link svg {
    width: 18px;
    height: 18px;
}

.back-link:hover {
    color: var(--brand-primary);
}

.back-link:hover svg {
    transform: translateX(-4px);
}

.blog-detail-header {
    max-width: 800px;
}

.blog-detail-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 12px;
}

.blog-detail-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold);
}

/* Blog Detail Content */
.blog-detail-content {
    padding: 60px 0 var(--section-gap);
    background: var(--bg-secondary);
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}

.blog-main {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.blog-intro {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.blog-intro .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-intro strong {
    color: var(--text-primary);
}

.blog-section {
    margin-bottom: 40px;
}

.blog-section h2 {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent-gold);
    opacity: 0.7;
}

.blog-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.blog-section strong {
    color: var(--text-primary);
}

.blog-conclusion h2 {
    color: var(--brand-primary);
}

.highlight-box {
    background: var(--brand-light);
    border-left: 4px solid var(--brand-primary);
    padding: 24px 28px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-top: 24px;
}

.highlight-box p {
    margin-bottom: 0;
    color: var(--text-primary);
}

/* Blog Share */
.blog-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

.blog-share > span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all var(--duration-fast);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

.share-btn:hover {
    background: var(--brand-primary);
    color: white;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 28px;
}

.sidebar-widget h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-post {
    display: block;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast);
}

.related-post:hover {
    background: var(--brand-light);
}

.related-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.4;
}

.related-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* CTA Widget */
.cta-widget {
    background: var(--gradient-brand);
    border: none;
    color: white;
    text-align: center;
}

.cta-widget h3 {
    color: white;
    border-color: rgba(255,255,255,0.2);
}

.cta-widget p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-widget .btn-primary {
    background: white;
    color: var(--brand-primary);
    box-shadow: none;
    width: 100%;
    justify-content: center;
}

.cta-widget .btn-primary:hover {
    background: rgba(255,255,255,0.9);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .featured-link {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 240px;
    }

    .featured-content {
        padding: 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-widget {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .featured-content {
        padding: 24px;
    }

    .featured-content h2 {
        font-size: 1.35rem;
    }

    .blog-main {
        padding: 32px 24px;
    }

    .blog-detail-header h1 {
        font-size: 1.75rem;
    }

    .newsletter-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }

    .blog-sidebar {
        flex-direction: column;
    }

    .sidebar-widget {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .blog-card-content {
        padding: 20px;
    }

    .blog-meta {
        gap: 10px;
    }

    .blog-section h2 {
        font-size: 1.15rem;
    }
}
/* ========================================
   19. BLOG PAGE STYLES
   ======================================== */

/* Blog Section */
.blog-section {
    padding: 80px 0 var(--section-gap);
    background: var(--bg-secondary);
}

/* Featured Post */
.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: 60px;
    transition: all var(--duration-normal);
}

.blog-featured:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-primary);
}

.featured-image {
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.featured-icon {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-icon svg {
    width: 60px;
    height: 60px;
    color: white;
}

.featured-content {
    padding: 48px 48px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.blog-category {
    background: var(--accent-gold-light);
    color: var(--accent-gold-dark);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.blog-date,
.blog-read {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-date::before {
    content: '📅 ';
}

.blog-read::before {
    content: '⏱️ ';
}

.featured-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}

.featured-title a {
    color: var(--text-primary);
    transition: color var(--duration-fast);
}

.featured-title a:hover {
    color: var(--brand-primary);
}

.featured-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--duration-normal);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-primary);
}

.blog-card-image {
    background: var(--bg-tertiary);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    width: 72px;
    height: 72px;
    background: var(--brand-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 36px;
    height: 36px;
    color: var(--brand-primary);
}

.blog-card-content {
    padding: 28px;
}

.blog-card-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-content h3 a {
    color: var(--text-primary);
    transition: color var(--duration-fast);
}

.blog-card-content h3 a:hover {
    color: var(--brand-primary);
}

.blog-card-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-primary);
    transition: gap var(--duration-fast);
}

.blog-link:hover {
    gap: 12px;
}

.blog-link svg {
    width: 16px;
    height: 16px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
}

.newsletter-card {
    background: var(--gradient-brand);
    border-radius: var(--radius-2xl);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: white;
}

.newsletter-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.newsletter-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    min-width: 300px;
}

.input-group svg {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.input-group input {
    flex: 1;
    background: none;
    border: none;
    font-size: 0.95rem;
    color: white;
    outline: none;
}

.input-group input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form .btn-primary {
    background: white;
    color: var(--brand-primary);
}

.newsletter-form .btn-primary:hover {
    background: rgba(255,255,255,0.9);
}

/* ========================================
   20. BLOG ARTICLE STYLES
   ======================================== */

/* Article Header */
.blog-article {
    padding: calc(var(--nav-height) + 60px) 0 80px;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    transition: color var(--duration-fast);
}

.back-link:hover {
    color: var(--brand-primary);
}

.back-link svg {
    width: 18px;
    height: 18px;
}

.article-header .blog-meta {
    justify-content: center;
    margin-bottom: 24px;
}

.article-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.title-highlight {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-excerpt {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Article Layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

/* Article Content */
.article-content {
    max-width: 100%;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-gold);
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.content-section p strong {
    color: var(--text-primary);
}

.content-highlight {
    background: var(--brand-light);
    border-left: 4px solid var(--brand-primary);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin: 32px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

[data-theme="dark"] .content-highlight {
    background: rgba(88, 166, 255, 0.1);
}

.content-highlight svg {
    width: 32px;
    height: 32px;
    color: var(--brand-primary);
    flex-shrink: 0;
}

.content-highlight p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Article CTA */
.article-cta {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    margin: 48px 0;
}

.article-cta h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.article-cta p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Article Share */
.article-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.article-share > span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.share-links {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all var(--duration-fast);
}

.share-btn:hover {
    background: var(--brand-primary);
    color: white;
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
}

.article-sidebar .sidebar-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 24px;
    margin-bottom: 24px;
}

.article-sidebar .sidebar-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

/* TOC */
.toc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-list a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast);
}

.toc-list a:hover {
    background: var(--bg-secondary);
    color: var(--brand-primary);
}

/* Related Posts */
.related-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-list a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border-radius: var(--radius-md);
    transition: all var(--duration-fast);
}

.related-list a:hover {
    background: var(--bg-secondary);
}

.related-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.related-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-featured {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 220px;
    }

    .featured-content {
        padding: 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .article-sidebar .sidebar-card {
        margin-bottom: 0;
    }

    .newsletter-card {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }

    .input-group {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .featured-content {
        padding: 24px;
    }

    .featured-title {
        font-size: 1.35rem;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .article-header {
        text-align: left;
    }

    .article-header .blog-meta {
        justify-content: flex-start;
    }

    .content-highlight {
        flex-direction: column;
        gap: 16px;
    }

    .newsletter-card {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .blog-card-content {
        padding: 20px;
    }

    .blog-meta {
        gap: 10px;
    }

    .blog-card-content h3 {
        font-size: 1.05rem;
    }

    .article-cta {
        padding: 28px 20px;
    }

    .article-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* ========================================
   21. PRICING PAGE STYLES
   ======================================== */

/* Pricing Section */
.pricing-section {
    padding: 80px 0 var(--section-gap);
    background: var(--bg-secondary);
}

/* Trust Badges */
.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--brand-primary);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* Pricing Card */
.pricing-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all var(--duration-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Popular Card */
.pricing-popular {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-brand);
    transform: scale(1.02);
    z-index: 2;
}

.pricing-popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-brand);
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-popular .pricing-header {
    padding-top: 52px;
}

/* Premium Card */
.pricing-premium {
    border-color: var(--accent-gold);
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(255, 193, 7, 0.05) 100%);
}

.pricing-premium:hover {
    box-shadow: var(--shadow-gold);
}

.premium-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-gold);
    color: var(--accent-gold-dark);
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-premium .pricing-header {
    padding-top: 52px;
}

/* Pricing Header */
.pricing-header {
    padding: 32px 28px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-icon {
    width: 64px;
    height: 64px;
    background: var(--brand-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pricing-icon svg {
    width: 32px;
    height: 32px;
    color: var(--brand-primary);
}

.pricing-popular .pricing-icon {
    background: var(--gradient-brand);
}

.pricing-popular .pricing-icon svg {
    color: white;
}

.pricing-premium .pricing-icon {
    background: var(--gradient-gold);
}

.pricing-premium .pricing-icon svg {
    color: var(--accent-gold-dark);
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Pricing Body */
.pricing-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Pricing Price */
.pricing-price {
    text-align: center;
    margin-bottom: 28px;
}

.price-old {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-current {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-current small {
    font-size: 1rem;
    font-weight: 600;
}

.price-save {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 12px;
    background: var(--success-light);
    color: var(--success);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

/* Pricing Features */
.pricing-features {
    flex: 1;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features .feature-highlight {
    background: var(--bg-secondary);
    margin: 0 -12px;
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-features .feature-highlight svg {
    color: var(--brand-primary);
}

.pricing-features .feature-divider {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-top: 16px;
    padding-bottom: 8px;
    border: none;
}

/* Button Block */
.btn-block {
    width: 100%;
    justify-content: center;
}

/* Gold Button */
.btn-gold {
    background: var(--gradient-gold);
    color: var(--accent-gold-dark);
    border: none;
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* FAQ Teaser */
.pricing-faq-teaser {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px 40px;
    gap: 24px;
}

.faq-teaser-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.faq-teaser-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.guarantee-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all var(--duration-normal);
}

.guarantee-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    background: var(--brand-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.guarantee-icon svg {
    width: 28px;
    height: 28px;
    color: var(--brand-primary);
}

.guarantee-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.guarantee-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Responsive */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .pricing-popular {
        transform: none;
        order: -1;
    }

    .pricing-popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 1024px) {
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-trust {
        gap: 24px;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-faq-teaser {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .pricing-header {
        padding: 24px 20px 20px;
    }

    .pricing-body {
        padding: 20px;
    }

    .price-current {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
    }

    .trust-item span {
        display: none;
    }

    .trust-item svg {
        width: 28px;
        height: 28px;
    }
}

/* ========================================
   22. CONTACT PAGE STYLES
   ======================================== */

/* Contact Section */
.contact-section {
    padding: 80px 0 var(--section-gap);
    background: var(--bg-secondary);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 36px;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.info-card > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    transition: all var(--duration-fast);
}

a.info-item:hover {
    background: var(--brand-light);
    transform: translateX(4px);
}

[data-theme="dark"] a.info-item:hover {
    background: rgba(88, 166, 255, 0.1);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

[data-theme="dark"] .info-icon {
    background: rgba(88, 166, 255, 0.15);
}

.info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--brand-primary);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Social */
.info-social {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.info-social > span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.social-buttons {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all var(--duration-fast);
}

.social-btn:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateY(-2px);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* Company Card */
.company-card {
    background: var(--gradient-brand);
    border-radius: var(--radius-2xl);
    padding: 32px;
    color: white;
    text-align: center;
}

.company-logo {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.company-logo svg {
    width: 32px;
    height: 32px;
}

.company-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.company-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

.company-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.company-badges .badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Contact Form */
.contact-form-wrapper {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
}

.form-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.required {
    color: var(--error);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper svg {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    pointer-events: none;
    z-index: 1;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all var(--duration-fast);
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    background: var(--bg-primary);
    box-shadow: 0 0 0 4px var(--brand-light);
}

[data-theme="dark"] .input-wrapper input:focus,
[data-theme="dark"] .input-wrapper select:focus,
[data-theme="dark"] .input-wrapper textarea:focus {
    box-shadow: 0 0 0 4px rgba(88, 166, 255, 0.15);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: var(--text-muted);
}

.input-wrapper input.error,
.input-wrapper select.error,
.input-wrapper textarea.error {
    border-color: var(--error);
}

.input-wrapper select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 44px;
}

.textarea-wrapper {
    align-items: flex-start;
}

.textarea-wrapper svg {
    top: 16px;
}

.textarea-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    display: block;
    font-size: 0.8rem;
    color: var(--error);
    margin-top: 6px;
    min-height: 18px;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.char-count.over-limit {
    color: var(--error);
}

/* Checkbox */
.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: all var(--duration-fast);
    display: inline-block;
}

.checkbox-label:hover .checkmark {
    border-color: var(--brand-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.checkbox-label input[type="checkbox"]:focus + .checkmark {
    box-shadow: 0 0 0 3px var(--brand-light);
}

[data-theme="dark"] .checkbox-label input[type="checkbox"]:focus + .checkmark {
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.2);
}

.checkbox-label input[type="checkbox"].error + .checkmark {
    border-color: var(--error);
}

.checkbox-label a {
    color: var(--brand-primary);
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

#submitBtn {
    position: relative;
}

#submitBtn .btn-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

#submitBtn .btn-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

#submitBtn.loading .btn-text,
#submitBtn.loading .btn-icon {
    display: none;
}

#submitBtn.loading .btn-loading {
    display: flex;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success & Error Messages */
.form-success,
.form-error {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show,
.form-error.show {
    display: block;
}

.success-icon,
.error-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon {
    background: var(--success-light);
    color: var(--success);
}

.error-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.success-icon svg,
.error-icon svg {
    width: 40px;
    height: 40px;
}

.form-success h4,
.form-error h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-success p,
.form-error p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Contact FAQ */
.contact-faq {
    padding: 0 0 80px;
}

.faq-teaser-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: 32px 40px;
}

.faq-teaser-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-gold-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-teaser-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-gold-dark);
}

.faq-teaser-content {
    flex: 1;
}

.faq-teaser-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.faq-teaser-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Contact Responsive */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .contact-form-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 28px 24px;
    }

    .faq-teaser-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 24px;
    }

    .info-item {
        padding: 12px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-icon svg {
        width: 20px;
        height: 20px;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 12px 12px 12px 44px;
        font-size: 0.9rem;
    }

    .input-wrapper svg {
        left: 12px;
        width: 18px;
        height: 18px;
    }
}
/* ============================================================
   HERO FEATURES - 4 MADDE 2SER YAN YANA
   ============================================================ */

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-tick {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Mobil - tek sutun */
@media screen and (max-width: 768px) {
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1.5rem;
    }
    
    .hero-feature {
        font-size: 1rem;
    }
    
    .feature-tick {
        width: 28px;
        height: 28px;
    }
}
