/* ========================================
   IFRScore - Premium IFRS 16 Platform
   Enhanced Visual Design with Animations
   ======================================== */

:root {
    /* Navy Blue + White + Gold Color Palette */
    --primary: #1E3A5F;
    --primary-dark: #152A45;
    --primary-light: #2D5A8A;
    --secondary: #3B82C4;
    --secondary-light: #5BA3E0;
    --accent: #D4A853;
    --accent-light: #E8C77E;
    --success: #22C55E;
    --success-light: #4ADE80;
    --warning: #F59E0B;
    --danger: #EF4444;

    /* Gradients */
    --gradient: linear-gradient(135deg, #1E3A5F 0%, #2D5A8A 100%);
    --gradient-light: linear-gradient(135deg, #3B82C4 0%, #5BA3E0 100%);
    --gradient-accent: linear-gradient(135deg, #D4A853 0%, #E8C77E 100%);
    --gradient-success: linear-gradient(135deg, #22C55E 0%, #4ADE80 100%);
    --gradient-warm: linear-gradient(135deg, #1E3A5F 0%, #D4A853 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #3B82C4 100%);

    /* Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #64748B;
    --text-muted: #94A3B8;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg-dark: #2C3E50;           /* Soft Navy - marka rengiyle uyumlu, daha yumuşak */
    --bg-dark-secondary: #34495E;

    /* Border */
    --border: #E2E8F0;
    --border-light: #F1F5F9;

    /* Shadows */
    --shadow: 0 4px 6px -1px rgba(30, 58, 95, 0.1), 0 2px 4px -1px rgba(30, 58, 95, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(30, 58, 95, 0.1), 0 4px 6px -2px rgba(30, 58, 95, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(30, 58, 95, 0.15), 0 10px 10px -5px rgba(30, 58, 95, 0.08);
    --shadow-glow: 0 0 40px rgba(30, 58, 95, 0.3);
    --shadow-glow-light: 0 0 40px rgba(59, 130, 196, 0.3);
    --shadow-glow-accent: 0 0 40px rgba(212, 168, 83, 0.3);

    /* Border Radius */
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Global Animations
   ======================================== */

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(30, 58, 95, 0.4); }
    50% { box-shadow: 0 0 40px rgba(30, 58, 95, 0.8); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce-in {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes slide-up {
    from { transform: translateY(60px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-15deg); }
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.gradient-text {
    background: var(--gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gradient);
    background-size: 200% 200%;
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(30, 58, 95, 0.5);
    animation: gradient-shift 2s ease infinite;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

/* Secondary/Teal button variant */
.btn-secondary {
    background: var(--gradient-light);
    background-size: 200% 200%;
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(59, 130, 196, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(59, 130, 196, 0.5);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--gradient);
    color: white;
    font-weight: 800;
    font-size: 16px;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.4);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 6px 25px rgba(30, 58, 95, 0.5);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trademark {
    font-size: 0.5em;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    vertical-align: super;
    margin-left: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(30, 58, 95, 0.1);
    padding: 4px;
    border-radius: 50px;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: transparent;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(30, 58, 95, 0.1);
}

.lang-btn.active {
    background: var(--gradient);
    box-shadow: 0 2px 10px rgba(30, 58, 95, 0.3);
}

.lang-flag {
    width: 24px;
    height: 16px;
    border-radius: 3px;
    overflow: hidden;
}

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(30, 58, 95, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 196, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(212, 168, 83, 0.08) 0%, transparent 40%);
    z-index: -1;
}

/* Animated Background Orbs */
.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.hero-bg::before {
    width: 400px;
    height: 400px;
    background: rgba(30, 58, 95, 0.2);
    top: 10%;
    left: 10%;
}

.hero-bg::after {
    width: 300px;
    height: 300px;
    background: rgba(59, 130, 196, 0.2);
    bottom: 20%;
    right: 10%;
    animation-delay: -4s;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(30, 58, 95, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 28px;
    border: 1px solid rgba(30, 58, 95, 0.2);
    animation: slide-up 0.8s ease forwards;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-glow 2s ease infinite;
}

.hero h1 {
    margin-bottom: 28px;
    animation: slide-up 0.8s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: slide-up 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 56px;
    animation: slide-up 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.trust-badges {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    animation: slide-up 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--success);
}

/* Dashboard Mockup */
.hero-image {
    position: relative;
    animation: slide-up 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.dashboard-mockup {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.3),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transition: var(--transition);
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) translateY(-10px);
    box-shadow:
        0 60px 120px -20px rgba(0, 0, 0, 0.35),
        0 40px 80px -30px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: var(--transition);
}

.dashboard-mockup:hover .mockup-dots span {
    animation: bounce-in 0.5s ease forwards;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; animation-delay: 0.1s; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; animation-delay: 0.2s; }
.mockup-dots span:nth-child(3) { background: #28ca42; animation-delay: 0.3s; }

.mockup-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.mockup-content {
    display: flex;
    padding: 24px;
    gap: 20px;
    min-height: 320px;
}

.mockup-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 60px;
}

.sidebar-item {
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: var(--transition);
}

.sidebar-item.active {
    background: var(--gradient);
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.4);
}

.mockup-main {
    flex: 1;
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.mockup-card {
    height: 70px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.mockup-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

.card-1 {
    background: var(--gradient);
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.3);
}
.card-2 {
    background: var(--gradient-light);
    box-shadow: 0 4px 20px rgba(59, 130, 196, 0.3);
}
.card-3 {
    background: var(--gradient-accent);
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

.card-1::after { animation-delay: 0s; }
.card-2::after { animation-delay: 0.5s; }
.card-3::after { animation-delay: 1s; }

.mockup-chart {
    height: 110px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.mockup-chart::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 60px;
    background: linear-gradient(90deg,
        rgba(30, 58, 95, 0.6) 0%,
        rgba(59, 130, 196, 0.6) 50%,
        rgba(212, 168, 83, 0.6) 100%);
    clip-path: polygon(0 100%, 5% 60%, 15% 70%, 25% 40%, 35% 50%, 45% 20%, 55% 35%, 65% 10%, 75% 30%, 85% 15%, 95% 25%, 100% 5%, 100% 100%);
    border-radius: 4px;
}

.mockup-table {
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.carousel-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(30, 58, 95, 0.3);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-indicators .indicator:hover {
    background: rgba(30, 58, 95, 0.5);
}

.carousel-indicators .indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Carousel Slide 2: Contract List */
.contract-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contract-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 0.8fr;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.contract-row.header {
    background: rgba(30, 58, 95, 0.4);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contract-row .status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    text-align: center;
}

.contract-row .status.active {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.contract-row .status.pending {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

/* Carousel Slide 3: Payment Schedule */
.payment-schedule {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.payment-header,
.payment-row {
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr 1fr 1.2fr;
    gap: 8px;
    padding: 10px 12px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

.payment-header {
    background: rgba(30, 58, 95, 0.4);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-row {
    background: rgba(255, 255, 255, 0.05);
}

.payment-row:nth-child(odd) {
    background: rgba(255, 255, 255, 0.08);
}

/* Carousel Slide 4: Reports */
.report-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.report-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.report-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.report-icon {
    font-size: 2rem;
}

.report-card span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    text-align: center;
}

/* ========================================
   Section Styles
   ======================================== */

section {
    padding: 120px 0;
    position: relative;
}

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

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

/* ========================================
   Problem/Solution Section
   ======================================== */

.problem-solution {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.problems, .solution {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.problems.animate-in, .solution.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.ps-title {
    font-size: 1.25rem;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.problems-title {
    color: #e53e3e;
}

.problems-title::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #e53e3e;
    border-radius: 50%;
}

.solution-title {
    color: var(--success);
}

.solution-title::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--success);
    border-radius: 50%;
}

.ps-list {
    list-style: none;
}

.ps-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.ps-list li:hover {
    padding-left: 10px;
    background: rgba(229, 62, 62, 0.03);
}

.ps-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.problem-icon {
    background: rgba(229, 62, 62, 0.1);
    color: #e53e3e;
}

.solution-content {
    background: white;
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(67, 233, 123, 0.2);
    position: relative;
    overflow: hidden;
}

.solution-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-success);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(67, 233, 123, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow 3s ease infinite;
}

.solution-icon svg {
    width: 40px;
    height: 40px;
    color: var(--success);
}

.solution-content p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 1.1rem;
}

/* ========================================
   Features Section - ENHANCED
   ======================================== */

.features {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(30, 58, 95, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(59, 130, 196, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.features .section-header h2,
.features .section-header p {
    color: white;
}

.features .section-header .gradient-text {
    background: linear-gradient(135deg, #D4A853 0%, #F5D799 50%, #D4A853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.feature-card:hover .feature-icon {
    background: var(--gradient);
}

.feature-card:hover .feature-icon svg {
    color: white;
    stroke: white;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    stroke: white;
    transition: var(--transition);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Feature card - all icons have consistent semi-transparent background */

/* ========================================
   Who Is It For Section
   ======================================== */

.who-is-it-for {
    background: var(--bg-primary);
    position: relative;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.audience-card {
    background: white;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 58, 95, 0.15);
    border-color: transparent;
}

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

.audience-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.audience-card:hover .audience-icon {
    background: var(--gradient);
}

.audience-card:hover .audience-icon svg {
    color: white;
    stroke: white;
}

.audience-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.audience-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* Audience card color variations */
.audience-card:nth-child(2) .audience-icon {
    background: rgba(59, 130, 196, 0.1);
}
.audience-card:nth-child(2) .audience-icon svg {
    color: var(--secondary);
}
.audience-card:nth-child(2):hover .audience-icon {
    background: var(--gradient-light);
}

.audience-card:nth-child(3) .audience-icon {
    background: rgba(212, 168, 83, 0.1);
}
.audience-card:nth-child(3) .audience-icon svg {
    color: var(--accent);
}
.audience-card:nth-child(3):hover .audience-icon {
    background: var(--gradient-accent);
}

.audience-card:nth-child(4) .audience-icon {
    background: rgba(33, 181, 115, 0.1);
}
.audience-card:nth-child(4) .audience-icon svg {
    color: var(--success);
}
.audience-card:nth-child(4):hover .audience-icon {
    background: var(--gradient-success);
}

.industry-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.industry-badge {
    padding: 12px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: default;
}

.industry-badge:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

/* ========================================
   Stats Section
   ======================================== */

.stats-section {
    background: var(--gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.95;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.75;
}

/* ========================================
   How It Works Section
   ======================================== */

.how-it-works {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}

.step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 30px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.4);
    position: relative;
    transition: var(--transition);
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed rgba(30, 58, 95, 0.3);
    border-radius: 50%;
    animation: rotate-slow 20s linear infinite;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(30, 58, 95, 0.5);
}

.step-content h3 {
    margin-bottom: 14px;
    font-size: 1.3rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.step-connector {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin-top: 40px;
    border-radius: 2px;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--accent);
}

/* ========================================
   Comparison Section
   ======================================== */

.comparison {
    background: var(--bg-primary);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 24px 28px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.comparison-table tr:hover td {
    background: rgba(30, 58, 95, 0.03);
}

.comparison-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table th.highlight {
    background: var(--gradient);
    color: white;
    position: relative;
}


.comparison-table td.highlight {
    background: rgba(30, 58, 95, 0.05);
    font-weight: 500;
}

.check {
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}
.cross {
    color: #e53e3e;
    font-weight: 700;
    font-size: 1.2rem;
}
.warning {
    color: #ed8936;
    font-weight: 700;
    font-size: 1.2rem;
}
.price { font-size: 1.25rem; }

.table-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 20px;
}

/* ========================================
   Pricing Section
   ======================================== */

.pricing {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--primary);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--text-muted);
    transition: var(--transition);
    border-radius: 28px;
}

.toggle-slider::before {
    position: absolute;
    content: '';
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: var(--transition);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(28px);
}

.toggle-discount {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    align-items: stretch;
    padding-top: 20px;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    border: 2px solid var(--border);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.pricing-card:hover::before {
    background: var(--gradient);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(30, 58, 95, 0.2);
}

.pricing-card.featured::before {
    background: var(--gradient);
    height: 5px;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 40px 100px rgba(30, 58, 95, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 28px;
}

.pricing-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.pricing-description {
    color: var(--text-secondary);
}

.pricing-price {
    text-align: center;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price .amount.custom {
    font-size: 2rem;
}

.pricing-price .period {
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    transition: var(--transition);
}

.pricing-features li:hover {
    padding-left: 8px;
}

.pricing-features .check {
    color: var(--success);
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 48px;
    font-size: 1rem;
}

/* ERP Integration Add-on */
.erp-addon {
    margin-top: 60px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.erp-addon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.erp-addon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
    opacity: 1;
}

.erp-addon:hover::before {
    opacity: 1;
}

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

.erp-addon-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.erp-addon-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-warm);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.erp-addon-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.erp-addon-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.erp-addon-title h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-primary);
}

.erp-addon-badge {
    background: rgba(212, 168, 83, 0.15);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.erp-addon-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Large ERP Logos */
.erp-logos-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.erp-logo-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    min-height: 90px;
}

.erp-logo-large:hover {
    border-color: var(--primary);
    background: white;
    box-shadow: var(--shadow);
}

.erp-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.erp-logo-text.logo-erp { color: #E31E24; }
.erp-logo-text.sap { color: #0070AD; }
.erp-logo-text.oracle { color: #C74634; }
.erp-logo-text.dynamics { color: #002050; }
.erp-logo-text.mikro { color: #003087; }
.erp-logo-text.netsis { color: #00529B; }
.erp-logo-text.parasut { color: #6B4FBB; }
.erp-logo-text.datev { color: #4AA02C; }
.erp-logo-text.odoo { color: #875A7B; }
.erp-logo-text.sage { color: #00AA00; }

.erp-logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.erp-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.erp-logo {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 24px;
    min-width: 100px;
    transition: var(--transition);
}

.erp-logo:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2);
}

.erp-logo:hover span {
    color: white;
}

.erp-logo span {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.erp-logo-svg {
    height: 28px;
    width: auto;
    transition: var(--transition);
}

.erp-logo-svg.sap {
    height: 26px;
}

.erp-logo-svg.oracle {
    height: 24px;
}

.erp-logo-svg.odoo {
    height: 26px;
}

.erp-logo-svg.dynamics {
    height: 24px;
}

.erp-logo:hover .erp-logo-svg text {
    fill: white;
}

.erp-logo.more {
    background: transparent;
    border-style: dashed;
}

.erp-logo.more span {
    color: var(--text-secondary);
}

.erp-logo.more:hover {
    background: var(--bg-secondary);
    border-style: solid;
}

.erp-logo.more:hover span {
    color: var(--primary);
}

.erp-addon-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.erp-addon-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.erp-price-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ERP Pricing Table */
.erp-pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 24px 0;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius);
}

.erp-pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.erp-name {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.erp-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.erp-price small {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Setup Fee Notice */
.setup-fee-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, rgba(30, 58, 95, 0.05) 100%);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin: 40px auto;
    max-width: 700px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.setup-fee-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.setup-fee-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.setup-fee-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.setup-fee-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.setup-fee-price {
    font-weight: 800;
    color: var(--secondary);
    font-size: 1.5rem;
}

.setup-fee-description {
    width: 100%;
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Pricing Feature Disabled/Highlight */
.feature-disabled {
    opacity: 0.5;
}

.feature-disabled .cross {
    color: var(--text-muted);
}

.feature-highlight {
    background: linear-gradient(90deg, rgba(212, 168, 83, 0.15) 0%, transparent 100%);
    margin: 0 -24px;
    padding: 8px 24px;
    border-radius: var(--radius-sm);
}

.feature-highlight .check {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .erp-addon {
        padding: 28px 20px;
    }

    .erp-addon-header {
        flex-direction: column;
        gap: 12px;
    }

    .erp-addon-title {
        flex-direction: column;
        gap: 8px;
    }

    .erp-addon-title h3 {
        font-size: 1.25rem;
    }

    .erp-logos {
        gap: 10px;
    }

    .erp-logo {
        padding: 10px 16px;
        min-width: 80px;
    }

    .erp-logo span {
        font-size: 0.85rem;
    }

    .erp-addon-footer {
        flex-direction: column;
        gap: 16px;
    }

    .erp-addon-price {
        align-items: center;
    }
}

/* ========================================
   FAQ Section
   ======================================== */

.faq {
    background: var(--bg-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    color: var(--text-primary);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   CTA Section
   ======================================== */

.cta {
    position: relative;
    background: var(--bg-dark);
    color: white;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(30, 58, 95, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(59, 130, 196, 0.2) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta .gradient-text {
    background: linear-gradient(135deg, #D4A853 0%, #F5D799 50%, #D4A853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta > .container > .cta-content > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    font-size: 1.15rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

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

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form select option {
    background: var(--bg-dark);
    color: white;
    padding: 12px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 20px rgba(30, 58, 95, 0.2);
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.contact-form .btn {
    width: 100%;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 100px 0 50px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 70px;
}

.footer-brand .logo-text {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    color: white;
}

.footer-brand .logo-icon {
    background: white;
    color: var(--primary);
}

.footer-brand .trademark {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    color: white;
}

.footer-brand p {
    margin: 20px 0 28px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(30, 58, 95, 0.4);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.social-links .ifrs-link {
    width: auto;
    padding: 0 12px;
    border-radius: 22px;
}

.social-links .ifrs-logo {
    width: auto;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-links h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

/* Footer Trust Badges */
.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 40px 0;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}

.trust-badge-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.trust-badge-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    flex-shrink: 0;
}

.trust-badge-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.trust-badge-icon.gdpr {
    background: linear-gradient(135deg, #003399 0%, #0055cc 100%);
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
}

.trust-badge-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: white;
}

.trust-badge-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-developer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-developer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-developer a:hover {
    color: #fff;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* ========================================
   Scroll Animations
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    section {
        padding: 80px 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

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

    .mobile-menu-btn {
        display: flex;
    }

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

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .ps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .step-connector {
        width: 3px;
        height: 50px;
        margin: 0;
    }

    .step-connector::after {
        right: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(50%) rotate(90deg);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-trust-badges {
        gap: 12px;
        padding: 30px 0;
    }

    .trust-badge-item {
        padding: 10px 14px;
        gap: 10px;
    }

    .trust-badge-icon {
        width: 36px;
        height: 36px;
    }

    .trust-badge-icon svg {
        width: 18px;
        height: 18px;
    }

    .trust-badge-title {
        font-size: 0.85rem;
    }

    .trust-badge-subtitle {
        font-size: 0.7rem;
    }

    .comparison-table th.highlight::before {
        display: none;
    }

    .industry-badges {
        gap: 10px;
    }

    .industry-badge {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    section {
        padding: 60px 0;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .feature-card {
        padding: 28px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
        font-size: 0.875rem;
    }
}

/* ========================================
   IFRS 16 Nedir Page Styles
   ======================================== */

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--bg-secondary);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: var(--text-muted);
    font-weight: 500;
}

/* Page Hero */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(30, 58, 95, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 196, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
}

/* Quick Summary */
.quick-summary {
    padding: 80px 0;
    background: var(--bg-primary);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.summary-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.summary-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-card:nth-child(2) .summary-icon {
    background: var(--gradient-light);
}

.summary-card:nth-child(3) .summary-icon {
    background: var(--gradient-accent);
}

.summary-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.summary-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* Guide Content Section */
.guide-content {
    padding: 80px 0 120px;
    background: var(--bg-secondary);
}

.content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* Guide Sidebar */
.guide-sidebar {
    position: sticky;
    top: 100px;
}

.guide-nav {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.guide-nav h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.guide-nav ul {
    list-style: none;
}

.guide-nav li {
    margin-bottom: 8px;
}

.guide-nav a {
    display: block;
    padding: 10px 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.guide-nav a:hover,
.guide-nav a.active {
    background: rgba(30, 58, 95, 0.1);
    color: var(--primary);
}

.sidebar-cta {
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    color: white;
}

.sidebar-cta h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.sidebar-cta p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.sidebar-cta .btn {
    background: white;
    color: var(--primary);
    width: 100%;
}

.sidebar-cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Guide Main Content */
.guide-main {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--border);
}

.guide-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.guide-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.guide-section h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.guide-section h3 {
    font-size: 1.25rem;
    margin: 28px 0 16px;
    color: var(--text-primary);
}

.guide-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.guide-section ul,
.guide-section ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--text-secondary);
}

.guide-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Info Box */
.info-box {
    background: rgba(30, 58, 95, 0.08);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-box.warning {
    background: rgba(212, 168, 83, 0.1);
    border-left-color: var(--accent);
}

.info-box .info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(212, 168, 83, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box .info-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.info-box .info-content {
    flex: 1;
}

.info-box h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1rem;
}

.info-box.warning h4 {
    color: var(--accent);
}

.info-box p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Comparison Box */
.comparison-box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    margin: 28px 0;
    align-items: center;
}

.comparison-item {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.comparison-item.old {
    background: rgba(229, 62, 62, 0.08);
    border: 1px solid rgba(229, 62, 62, 0.2);
}

.comparison-item.new {
    background: rgba(33, 181, 115, 0.08);
    border: 1px solid rgba(33, 181, 115, 0.2);
}

.comparison-item.old h4 {
    color: #e53e3e;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-item.new h4 {
    color: var(--success);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-formula {
    background: rgba(0, 0, 0, 0.05);
    padding: 12px 16px;
    border-radius: var(--radius);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 600;
}

.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-arrow svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.comparison-box ul {
    padding-left: 20px;
    margin: 0;
}

.comparison-box li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.old-system,
.new-system {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.old-system {
    background: rgba(229, 62, 62, 0.08);
    border: 1px solid rgba(229, 62, 62, 0.2);
}

.new-system {
    background: rgba(33, 181, 115, 0.08);
    border: 1px solid rgba(33, 181, 115, 0.2);
}

.old-system h4 {
    color: #e53e3e;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-system h4 {
    color: var(--success);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Formula Box */
.formula-box {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin: 24px 0;
}

.formula-box h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1rem;
}

.formula {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: var(--radius);
    font-family: 'Courier New', monospace;
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 12px;
    text-align: center;
}

.formula:last-child {
    margin-bottom: 0;
}

.formula-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.formula-legend span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.formula-legend strong {
    color: var(--accent);
}

/* Example Box */
.example-box {
    background: rgba(59, 130, 196, 0.08);
    border: 1px solid rgba(59, 130, 196, 0.2);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 24px 0;
}

.example-box h4 {
    color: var(--secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.example-box p {
    margin-bottom: 8px;
}

.example-box ul {
    margin: 0;
    padding-left: 20px;
}

.example-params {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.param {
    background: rgba(59, 130, 196, 0.1);
    padding: 12px 16px;
    border-radius: var(--radius);
    text-align: center;
}

.param-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.param-value {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.1rem;
}

.example-result {
    background: var(--gradient-light);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    color: white;
}

.result-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 4px;
}

.result-value {
    font-size: 1.75rem;
    font-weight: 800;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 28px 0;
}

.column {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.column-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.column-title.affected {
    color: var(--primary);
}

.column-title.exempt {
    color: var(--accent);
}

.column:first-child {
    background: rgba(30, 58, 95, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.2);
}

.column:last-child {
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.check-list,
.cross-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.check-list li,
.cross-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.cross-list li::before {
    content: '○';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Impact Icons */
.impact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.impact-icon.up {
    background: rgba(33, 181, 115, 0.15);
}

.impact-icon.up svg {
    color: var(--success);
}

.impact-icon.down {
    background: rgba(229, 62, 62, 0.15);
}

.impact-icon.down svg {
    color: #e53e3e;
}

.impact-icon svg {
    width: 24px;
    height: 24px;
}

/* Guide Section CTA */
.guide-main .guide-cta {
    background: var(--gradient);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    margin-top: 48px;
}

.guide-main .guide-cta h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.guide-main .guide-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.guide-main .guide-cta .btn-primary {
    background: white;
    color: var(--primary);
}

.guide-main .guide-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.guide-main .guide-cta .btn-outline {
    border-color: white;
    color: white;
}

.guide-main .guide-cta .btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* Affected Grid */
.affected-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 28px 0;
}

.affected-item,
.exempt-item {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.affected-item {
    background: rgba(30, 58, 95, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.2);
}

.exempt-item {
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.2);
}

.affected-item h4 {
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.exempt-item h4 {
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.affected-grid ul {
    padding-left: 20px;
    margin: 0;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 28px 0;
}

.impact-card {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.impact-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.impact-card h4 span {
    font-size: 1.25rem;
}

.impact-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Process Steps */
.process-steps {
    margin: 28px 0;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.process-step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-num {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Guide CTA */
.guide-cta {
    background: var(--gradient);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.guide-cta h2 {
    color: white;
    margin-bottom: 16px;
}

.guide-cta p {
    opacity: 0.9;
    margin-bottom: 32px;
    font-size: 1.15rem;
}

.guide-cta .btn-primary {
    background: white;
    color: var(--primary);
}

.guide-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.guide-cta .btn-outline {
    border-color: white;
    color: white;
}

.guide-cta .btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* Guide Page Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .guide-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 2.25rem;
    }

    .guide-sidebar {
        grid-template-columns: 1fr;
    }

    .guide-main {
        padding: 32px 24px;
    }

    .comparison-box,
    .affected-grid,
    .impact-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

    .comparison-box {
        gap: 16px;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }

    .example-params {
        grid-template-columns: 1fr;
    }

    .guide-cta {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.75rem;
    }

    .page-hero-description {
        font-size: 1rem;
    }

    .guide-main {
        padding: 24px 20px;
    }

    .guide-section h2 {
        font-size: 1.5rem;
    }

    .process-step {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   Legal Pages Styles
   ======================================== */

.last-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.legal-content {
    padding: 80px 0 120px;
    background: var(--bg-secondary);
}

.legal-main {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--border);
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.legal-section h3 {
    font-size: 1.15rem;
    margin: 24px 0 12px;
    color: var(--text-primary);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--text-secondary);
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-section .contact-info {
    background: var(--bg-secondary);
    padding: 20px 24px;
    border-radius: var(--radius);
    margin-top: 16px;
}

.legal-section .contact-info p {
    margin-bottom: 8px;
}

.legal-section .contact-info p:last-child {
    margin-bottom: 0;
}

/* Data Tables */
.data-table {
    margin: 24px 0;
    overflow-x: auto;
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.data-table th,
.data-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
}

.data-table td {
    color: var(--text-secondary);
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Application Methods */
.application-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.method-card {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.method-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.method-card p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.method-card a {
    color: var(--secondary);
    font-weight: 600;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-main {
        padding: 32px 24px;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .application-methods {
        grid-template-columns: 1fr;
    }

    .data-table th,
    .data-table td {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .legal-main {
        padding: 24px 20px;
    }
}