/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color-scheme: light;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    color-scheme: light only;
    background-color: #ffffff !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333 !important;
    background-color: #ffffff !important;
    overflow-x: hidden;
    color-scheme: light;
    opacity: 0;
    transition: opacity 0.1s ease;
}

body.lang-ready {
    opacity: 1;
}

/* CSS Variables */
:root {
    --primary-color: #ef4444;
    --primary-dark: #dc2626;
    --primary-light: #fca5a5;
    --secondary-color: #6b7280;
    --accent-color: #059669;
    --tertiary-color: #6b7280;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background: #ffffff;
    --background-alt: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --gradient-secondary: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    --gradient-accent: linear-gradient(135deg, #059669 0%, #047857 100%);
    --gradient-tertiary: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    --gradient-hero: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 50%, #e0f2fe 100%);
    
    /* Mobile viewport height - will be set by JavaScript */
    --vh: 1vh;
}

/* Force Light Mode - Disable dark mode to ensure consistency across all devices */
@media (prefers-color-scheme: dark) {
    :root {
        /* Override dark mode - force light mode colors for consistency */
        --text-primary: #1f2937 !important;
        --text-secondary: #6b7280 !important;
        --text-light: #9ca3af !important;
        --background: #ffffff !important;
        --background-alt: #f9fafb !important;
        --border-color: #e5e7eb !important;
    }
    
    body {
        background-color: #ffffff !important;
        color: #333 !important;
    }
    
    * {
        color-scheme: light !important;
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Image Optimization - Prevent Layout Shift */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lazy loading optimization */
img[loading="lazy"] {
    content-visibility: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    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.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn--outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn--outline-white:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Section Headers */
.section__header {
    text-align: center;
    margin-bottom: 2rem;
}

.section__subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.section__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.section__description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Loading Skeleton */
.loading-skeleton {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.loading-skeleton {
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-skeleton.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-skeleton__content {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.loading-skeleton__logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.loading-skeleton__title {
    width: 300px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    margin: 0 auto 1rem;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.loading-skeleton__subtitle {
    width: 200px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin: 0 auto 2rem;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.loading-skeleton__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.loading-skeleton__button {
    width: 120px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
}

.loading-skeleton__button:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes skeleton-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes logo-spin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes gif-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* GIF beyaz arka planını maskele */
.loading-skeleton__logo img {
    background: transparent !important;
    mix-blend-mode: multiply;
    filter: contrast(1.2) brightness(1.1);
}

/* Inline styles for loading skeleton */
.loading-skeleton {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    opacity: 1;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transform: translateY(0);
}

.header.scrolled::before {
    opacity: 0;
}

.header.scrolled .nav__link,
.header.scrolled .nav__brand {
    color: #1e293b;
}

.header.scrolled .nav__toggle i {
    color: #1e293b;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav__brand:hover {
    opacity: 0.8;
}

.nav__logo-img {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.nav__logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(236, 72, 153, 0.3));
}

.nav__logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav__link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.header.scrolled .nav__link {
    color: var(--text-primary);
    text-shadow: none;
}

.header .dropdown__menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header .dropdown__menu a {
    color: var(--text-primary);
}

.nav__link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav__link:hover {
    color: var(--primary-color);
    background: rgba(236, 72, 153, 0.1);
    transform: translateY(-1px);
}

.nav__link:hover::before {
    width: 80%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__lang-dropdown {
    position: relative;
}

.nav__lang-switcher {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 50px;
    justify-content: center;
}

.nav__lang-switcher .lang-current-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.nav__lang-switcher:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.nav__lang-switcher .lang-chevron {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav__lang-dropdown.active .nav__lang-switcher .lang-chevron {
    transform: rotate(180deg);
}

.header.scrolled .nav__lang-switcher {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    text-shadow: none;
}

.header.scrolled .nav__lang-switcher:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.nav__lang-dropdown.active .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
}

.lang-option:hover {
    background: rgba(239, 68, 68, 0.08);
}

.lang-option.active {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.lang-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.lang-name {
    flex: 1;
}

.lang-check {
    color: #ef4444;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-size: 0.875rem;
}

.lang-option.active .lang-check {
    opacity: 1;
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.nav__close {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    padding: 0.5rem;
}

.dropdown:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__menu li {
    list-style: none;
}

.dropdown__menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.25rem;
    margin: 0.25rem 0;
}

.dropdown__menu a:hover {
    background: rgba(236, 72, 153, 0.1);
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100); /* Use custom vh for mobile */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    margin-top: 0;
    padding-top: 5rem;
}

.hero--fullscreen {
    height: 100vh;
}

.hero__video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    margin-top: 0;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
    display: block;
}

.hero__video--active {
    opacity: 1;
    display: block;
}

.hero__fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    display: none;
    opacity: 1;
    background-color: #f0f0f0;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

/* Video yüklenmezse fallback göster */
.hero__video:not([poster]) {
    display: none;
}

.hero__video:not([poster]) + .hero__fallback-bg {
    display: block;
}

.hero__content--centered {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

/* Video Navigation Dots */
.hero__nav-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.hero__nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero__nav-dot:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero__nav-dot--active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.hero__container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero__content {
    animation: fadeInUp 1s ease;
    max-width: 800px;
    margin: 0 auto;
}

.hero__subtitle {
    display: inline-block;
    padding: clamp(0.4rem, 1vw, 0.625rem) clamp(0.75rem, 2vw, 1.5rem);
    background: transparent;
    border-radius: 0.25rem;
    font-size: clamp(0.65rem, 1.8vw, 1rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: clamp(0.5px, 0.12vw, 1.5px);
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    overflow: hidden;
    animation: pulse-border 2s ease-in-out infinite;
    max-width: 95%;
    text-align: center;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        border-color: rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    }
}

.hero__subtitle::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    border-radius: 0.25rem;
    opacity: 0;
    animation: shine 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes shine {
    0%, 100% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

.hero__title {
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1;
    margin: 0;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.hero__title .text-gradient {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(239, 68, 68, 0.4);
    filter: drop-shadow(0 2px 4px rgba(220, 38, 38, 0.3));
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero__description {
    font-size: 1.4rem;
    margin: 0 auto 3rem auto;
    opacity: 1;
    line-height: 1.7;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 800px;
    position: relative;
    padding: 1.5rem 2rem;
}

.hero__keywords {
    color: #ffffff;
    font-weight: 900;
    font-size: clamp(2.8rem, 6.5vw, 4rem);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.3);
    display: block;
    margin: 2.5rem 0 -0.5rem 0;
    font-style: normal;
    opacity: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 0;
    line-height: 1;
    white-space: nowrap;
}


.hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.hero__stats {
    display: flex;
    gap: 3rem;
    padding: 2rem 3rem;
    position: relative;
}

.hero__stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.stat {
    text-align: center;
    position: relative;
    flex: 1;
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.05em;
}

.stat__label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero__image-container {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.floating-card {
    position: absolute;
    background: white;
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 0.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.card-1 {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -10%;
    animation-delay: 1s;
}

.card-3 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

/* Features Section */
.features {
    padding: 3rem 0;
    background: var(--background-alt);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature__card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.feature__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #dc2626, #b91c1c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.2);
}

.feature__card:hover::before {
    transform: scaleX(1);
}

.feature__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.feature__icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.25);
    transition: all 0.3s ease;
    position: relative;
}

.feature__icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #ef4444, #dc2626, #b91c1c);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature__card:hover .feature__icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.35);
}

.feature__card:hover .feature__icon::after {
    opacity: 1;
}

.feature__icon i {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature__card:hover .feature__icon i {
    transform: scale(1.1);
}

.feature__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.feature__card:hover .feature__title {
    color: #ef4444;
}

.feature__description {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.feature__card:hover .feature__description {
    color: var(--text-primary);
}

.feature__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.feature__link:hover {
    gap: 0.75rem;
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
}

.solutions__container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.solution__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution__item--reverse {
    direction: rtl;
}

.solution__item--reverse > * {
    direction: ltr;
}

.solution__content {
    padding: 2rem 0;
}

.solution__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.solution__icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.25);
}

.solution__icon i {
    font-size: 1.5rem;
    color: white;
}

.solution__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    line-height: 1.2;
}

.solution__description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.solution__features {
    list-style: none;
}

.solution__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.solution__features i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.solution__image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.solution__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Digital Solutions Section */
.digital-solutions {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.digital-solutions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.digital-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
}

.digital-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
}

.digital-card--featured {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
}

.digital-card--featured:hover {
    box-shadow: 0 16px 40px rgba(239, 68, 68, 0.3);
}

.digital-card__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.digital-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 1rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.digital-card--featured .digital-card__icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.digital-card__icon i {
    font-size: 2rem;
    color: white;
}

.digital-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.digital-card--featured h3 {
    color: white;
}

.digital-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.digital-card--featured p {
    color: rgba(255, 255, 255, 0.9);
}

.digital-card__features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    flex-grow: 1;
}

.digital-card__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.digital-card--featured .digital-card__features li {
    color: rgba(255, 255, 255, 0.9);
}

.digital-card__features i {
    color: #ef4444;
    font-size: 0.875rem;
}

.digital-card--featured .digital-card__features i {
    color: white;
}

.digital-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.digital-card--featured .btn--primary {
    background: white;
    color: #ef4444;
}

.digital-card--featured .btn--primary:hover {
    background: #f9fafb;
    transform: translateY(-2px);
}

/* Security & Compliance Section */
.security-compliance {
    padding: 3rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.security-compliance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(239, 68, 68, 0.2) 50%, transparent 100%);
}

.security-compliance__wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.security-compliance__badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 1.25rem;
    color: white;
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.3);
    position: relative;
}

.security-compliance__badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 1.25rem;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
}

.badge__icon-circle {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    animation: pulse-shield 2s ease-in-out infinite;
}

@keyframes pulse-shield {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge__content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge__label {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
}

.badge__sublabel {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.security-compliance__features {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.security-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.security-feature__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 0.75rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.security-feature__text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.security-feature__text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.security-feature__text span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.2;
}

.security-feature__divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    flex-shrink: 0;
}

/* Integrations Section */
.integrations {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    overflow: hidden;
}

.integrations__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.integrations__text {
    max-width: 500px;
}

.integrations__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.integrations__description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.integrations__details {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

.integrations__logos {
    position: relative;
}

.integrations__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    perspective: 1000px;
    max-width: 900px;
    margin: 0 auto;
}

/* First row: 3 items centered */
.integration__logo:nth-child(1),
.integration__logo:nth-child(2),
.integration__logo:nth-child(3) {
    grid-column: span 1;
}

.integration__logo:nth-child(1) {
    grid-column: 1 / 2;
}

/* Adjust for better centering - 14 logos (3-4-4-3 layout) */
@supports (display: grid) {
    .integrations__grid {
        grid-template-columns: repeat(12, 1fr);
    }
    
    /* Row 1: 3 logos centered */
    .integration__logo:nth-child(1) { grid-column: 2 / 5; }
    .integration__logo:nth-child(2) { grid-column: 5 / 8; }
    .integration__logo:nth-child(3) { grid-column: 8 / 11; }
    
    /* Row 2: 4 logos */
    .integration__logo:nth-child(4) { grid-column: 1 / 4; }
    .integration__logo:nth-child(5) { grid-column: 4 / 7; }
    .integration__logo:nth-child(6) { grid-column: 7 / 10; }
    .integration__logo:nth-child(7) { grid-column: 10 / 13; }
    
    /* Row 3: 4 logos */
    .integration__logo:nth-child(8) { grid-column: 1 / 4; }
    .integration__logo:nth-child(9) { grid-column: 4 / 7; }
    .integration__logo:nth-child(10) { grid-column: 7 / 10; }
    .integration__logo:nth-child(11) { grid-column: 10 / 13; }
    
    /* Row 4: 3 logos centered */
    .integration__logo:nth-child(12) { grid-column: 2 / 5; }
    .integration__logo:nth-child(13) { grid-column: 5 / 8; }
    .integration__logo:nth-child(14) { grid-column: 8 / 11; }
}

.integration__logo {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.integration__logo:nth-child(1) { animation-delay: 0.1s; }
.integration__logo:nth-child(2) { animation-delay: 0.15s; }
.integration__logo:nth-child(3) { animation-delay: 0.2s; }
.integration__logo:nth-child(4) { animation-delay: 0.25s; }
.integration__logo:nth-child(5) { animation-delay: 0.3s; }
.integration__logo:nth-child(6) { animation-delay: 0.35s; }
.integration__logo:nth-child(7) { animation-delay: 0.4s; }
.integration__logo:nth-child(8) { animation-delay: 0.45s; }
.integration__logo:nth-child(9) { animation-delay: 0.5s; }
.integration__logo:nth-child(10) { animation-delay: 0.55s; }
.integration__logo:nth-child(11) { animation-delay: 0.6s; }
.integration__logo:nth-child(12) { animation-delay: 0.65s; }
.integration__logo:nth-child(13) { animation-delay: 0.7s; }
.integration__logo:nth-child(14) { animation-delay: 0.75s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo__card {
    background: white;
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.logo__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo__card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.15);
}

.logo__card:hover::before {
    opacity: 1;
}

.logo__card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: grayscale(15%) brightness(0.95);
    transition: all 0.3s ease;
}

.logo__card:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--background-alt);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial__card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #dc2626, #b91c1c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.2);
}

.testimonial__card:hover::before {
    transform: scaleX(1);
}

.testimonial__content {
    margin-bottom: 2rem;
}

.testimonial__stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial__stars i {
    color: #fbbf24;
    font-size: 1.25rem;
}

.testimonial__text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__name {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testimonial__position {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing__card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    padding: 1.2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #dc2626, #b91c1c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.2);
}

.pricing__card:hover::before {
    transform: scaleX(1);
}

.pricing__card--featured {
    padding: 1.5rem;
    border: 2px solid #ef4444;
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 8px 32px rgba(239, 68, 68, 0.2);
}

.pricing__card--featured:hover {
    transform: scale(1.05) translateY(-8px);
    border-color: #dc2626;
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.25);
}

.pricing__badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing__header {
    margin-bottom: 1.25rem;
}

.pricing__title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.pricing__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.pricing__currency {
    font-size: 1.25rem;
    font-weight: 600;
}

.pricing__amount {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0.25rem;
}

.pricing__period {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.pricing__card--featured .pricing__period {
    color: var(--text-secondary);
}

.pricing__description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.pricing__card--featured .pricing__description {
    color: var(--text-secondary);
}

.pricing__features {
    list-style: none;
    margin-bottom: 0;
    padding-bottom: 1rem;
    text-align: left;
    flex-grow: 1;
}

.pricing__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing__card--featured .pricing__features li {
    color: var(--text-secondary);
}

.pricing__features i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.pricing__card .btn {
    margin-top: auto;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--background-alt);
}

.faq__container {
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq__item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq__question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.3s ease;
}

.faq__question:hover {
    background: rgba(239, 68, 68, 0.05);
}

.faq__question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq__question i {
    color: #ef4444;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq__answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq__cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq__cta p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq__redirect-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq__redirect-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq__redirect-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq__redirect-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.faq__redirect-icon i {
    font-size: 2.5rem;
    color: white;
}

.faq__redirect-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq__redirect-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.faq__redirect-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.faq__redirect-card .btn i {
    transition: transform 0.3s ease;
}

.faq__redirect-card:hover .btn i {
    transform: translateX(4px);
}

.faq__redirect-card:nth-child(2):hover .btn i {
    transform: translateY(4px);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--background-alt);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact__icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__icon i {
    color: white;
    font-size: 1.25rem;
}

.contact__details h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact__details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact__social h4 {
    margin-bottom: 1rem;
}

.social__links {
    display: flex;
    gap: 1rem;
}

.social__link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social__link:hover {
    transform: translateY(-2px);
}

/* Form Styles */
.contact__form {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.form__group {
    margin-bottom: 1rem;
}

.form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.form__input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.25rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form__input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form__textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.form__input::placeholder {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__section--brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__logo {
    margin-bottom: 0.5rem;
}

.footer__logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer__description {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer__social-link:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.footer__heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: white;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.875rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__links a i {
    color: #ef4444;
    font-size: 0.9rem;
}

.footer__links a:hover {
    color: #ef4444;
    transform: translateX(3px);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer__legal {
    display: flex;
    gap: 2rem;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer__legal a:hover {
    color: #ef4444;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__content {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 550px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal__content {
    transform: translateY(0);
}

.modal__header {
    position: relative;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.modal__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.modal__subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.modal__close:hover {
    color: var(--text-primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .nav__logo-img {
        height: 2.8rem;
        max-width: 180px;
    }
    
    .nav__link {
        font-size: 0.85rem;
        padding: 0.5rem 0.6rem;
    }
    
    .nav__actions .btn {
        padding: 0.55rem 0.9rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 900px) {
    .nav__logo-img {
        height: 2.6rem;
        max-width: 170px;
    }
    
    .nav__link {
        font-size: 0.8rem;
        padding: 0.5rem 0.5rem;
    }
    
    .nav__actions .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    
    /* Navigation */
    .nav {
        padding: 0.75rem 0;
    }
    
    .nav__brand {
        gap: 0.5rem;
        flex: 1;
        max-width: 50%;
    }
    
    .nav__logo-img {
        height: 2.5rem;
        max-width: 100%;
        width: auto;
        padding-left: 5px;
    }
    
    .nav__logo {
        font-size: 1.125rem;
    }
    
    .nav__actions {
        margin-top: 0;
        width: auto;
    }
    
    .nav__actions .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        width: auto;
        max-width: none;
        white-space: nowrap;
    }
    
    .nav__lang-switcher {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
        min-width: 50px;
    }
    
    .nav__lang-switcher .lang-current-flag {
        font-size: 1.1rem;
    }
    
    .lang-menu {
        right: 0;
        min-width: 140px;
    }
    
    .lang-option {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .nav__toggle {
        font-size: 1.5rem;
        padding: 0.25rem;
        margin-right: 0.5rem;
        color: var(--primary-color);
    }
    
    .nav__menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 999;
        padding: 3rem 2rem 2rem;
    }

    /* Force dark text in mobile menu - always */
    .nav__menu .nav__link,
    .nav__menu .nav__brand,
    .nav__menu .dropdown .nav__link,
    .nav__menu .nav__item .nav__link {
        color: #1e293b !important;
        text-shadow: none !important;
    }

    .nav__menu .nav__close i {
        color: #1e293b !important;
    }
    
    .nav__menu.active {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__menu .nav__actions {
        margin-top: 2.5rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .nav__menu .nav__actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 2rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    .dropdown {
        position: relative;
    }
    
    /* Disable hover on mobile */
    .dropdown:hover .dropdown__menu {
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
    }
    
    .dropdown__menu {
        position: static !important;
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        margin-top: 0 !important;
        padding: 0 !important;
        transition: all 0.3s ease !important;
        display: block !important;
    }
    
    .dropdown.active .dropdown__menu {
        max-height: 500px !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 0.5rem !important;
        padding: 0.5rem 0 !important;
    }
    
    .dropdown__menu li {
        padding: 0;
        list-style: none;
    }
    
    .dropdown__menu a {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        color: var(--text-secondary);
        display: block;
    }
    
    .nav__link i {
        font-size: 0.75rem;
        margin-left: 0.25rem;
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .nav__link i {
        transform: rotate(180deg);
    }
    
    /* Hero */
    .hero {
        height: auto;
        min-height: 100vh;
        min-height: calc(var(--vh, 1vh) * 100); /* Use custom vh for mobile */
        padding: 8rem 0 4rem;
    }
    
    /* Mobil video container fix - aspect-ratio çakışmasını önle */
    .hero__video-container {
        aspect-ratio: unset;
    }
    
    .hero__video {
        aspect-ratio: unset;
        min-height: 100vh;
        min-height: calc(var(--vh, 1vh) * 100);
    }
    
    .hero__content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero__subtitle {
        font-size: clamp(0.6rem, 3vw, 0.85rem);
        padding: 0.35rem 0.75rem;
        letter-spacing: 0.5px;
        max-width: 100%;
    }
    
    .hero__title {
        font-size: clamp(2rem, 8vw, 3.5rem) !important;
        line-height: 1.1;
    }
    
    .hero__keywords {
        font-size: clamp(1.2rem, 4.5vw, 2rem) !important;
        letter-spacing: 0.5px;
        white-space: normal;
        margin: 1.5rem 0 0 0;
        line-height: 1.3;
        word-spacing: 0.3rem;
    }
    
    .hero__description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .stat {
        min-width: 100px;
        flex: 1 1 calc(33.333% - 1rem);
    }
    
    .stat__number {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .stat__label {
        font-size: 0.7rem;
        line-height: 1.3;
        word-break: break-word;
    }
    
    .hero__nav-dots {
        bottom: 1.5rem;
    }
    
    .floating-card {
        position: static;
        margin: 1rem auto;
        display: inline-flex;
    }
    
    /* Sections */
    section {
        padding: 4rem 0;
    }
    
    .section__subtitle {
        font-size: 0.85rem;
    }
    
    .section__title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.2;
    }
    
    .section__description {
        font-size: 1rem;
    }
    
    /* Features */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature__card {
        padding: 1.5rem;
    }
    
    .feature__icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .feature__title {
        font-size: 1.125rem;
    }
    
    .feature__description {
        font-size: 0.9rem;
    }
    
    /* Solutions */
    .solution__item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .solution__item--reverse {
        direction: ltr;
    }
    
    .solution__header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .solution__icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .solution__title {
        font-size: 1.5rem;
    }
    
    .solution__description {
        font-size: 0.95rem;
    }
    
    .solution__image {
        order: -1;
    }

    /* Digital Solutions Mobile */
    .digital-solutions {
        padding: 4rem 0;
    }
    
    .digital-solutions__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .digital-card {
        padding: 2rem 1.5rem;
    }
    
    .digital-card__icon {
        width: 60px;
        height: 60px;
    }
    
    .digital-card__icon i {
        font-size: 1.75rem;
    }
    
    .digital-card h3 {
        font-size: 1.25rem;
    }
    
    .digital-card p {
        font-size: 0.95rem;
    }

    /* Security & Compliance Mobile */
    .security-compliance {
        padding: 2rem 0;
    }

    .security-compliance__wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }

    .security-compliance__badge {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 1.5rem;
    }

    .badge__icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .badge__label {
        font-size: 1.25rem;
    }

    .badge__sublabel {
        font-size: 0.9rem;
    }

    .security-compliance__features {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .security-feature {
        width: 100%;
        padding: 1rem;
        background: #fafafa;
        border-radius: 0.75rem;
    }

    .security-feature__icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .security-feature__text strong {
        font-size: 0.9rem;
    }

    .security-feature__text span {
        font-size: 0.75rem;
    }

    .security-feature__divider {
        display: none;
    }

    /* Integrations Mobile */
    .integrations {
        padding: 4rem 0;
    }

    .integrations__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .integrations__text {
        max-width: 100%;
        text-align: center;
    }

    .integrations__title {
        font-size: 2rem;
    }

    .integrations__description {
        font-size: 1rem;
    }

    .integrations__details {
        font-size: 0.9rem;
        text-align: left;
    }

    .integrations__grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.75rem;
    }

    /* Reset grid-column positioning for mobile */
    .integration__logo {
        grid-column: auto !important;
    }

    .logo__card {
        padding: 0.5rem;
        height: 80px;
    }

    .logo__card img {
        max-width: 90%;
        max-height: 90%;
    }
    
    /* Testimonials */
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial__card {
        padding: 1.5rem;
    }
    
    .testimonial__text {
        font-size: 0.95rem;
    }
    
    /* Pricing */
    .pricing__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .pricing__card {
        padding: 2rem 1.5rem;
    }
    
    .pricing__card--featured {
        transform: none;
    }
    
    .pricing__card--featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing__title {
        font-size: 1.5rem;
    }
    
    /* FAQ */
    .faq__question h3 {
        font-size: 1rem;
    }
    
    .faq__question {
        padding: 1.25rem;
    }
    
    .faq__item.active .faq__answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .faq__answer p {
        font-size: 0.9rem;
    }
    
    .faq__redirect-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq__redirect-card {
        padding: 2rem 1.5rem;
    }
    
    .faq__redirect-icon {
        width: 70px;
        height: 70px;
    }
    
    .faq__redirect-icon i {
        font-size: 2rem;
    }
    
    .faq__redirect-card h3 {
        font-size: 1.25rem;
    }
    
    .faq__redirect-card p {
        font-size: 0.95rem;
    }
    
    /* Contact */
    .contact__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact__item {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        align-items: center;
        padding: 1.25rem;
        background: rgba(239, 68, 68, 0.05);
        border-radius: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .contact__icon {
        width: 3.5rem;
        height: 3.5rem;
        flex-shrink: 0;
    }
    
    .contact__details h4 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: var(--text-primary);
    }
    
    .contact__details p {
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin: 0;
        word-break: break-word;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer__logo {
        display: flex;
        justify-content: center;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
    }
    
    .footer__legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* Modal */
    .modal__content {
        max-width: 95%;
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .modal__header {
        margin-bottom: 1.25rem;
    }
    
    .modal__title {
        font-size: 1.5rem;
    }
    
    .form__group {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .solution__title {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav__toggle,
    .nav__close,
    .floating-card,
    .modal {
        display: none;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    .btn {
        border: 1px solid black;
        color: black;
        background: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #ef4444;
        --text-primary: #000000;
        --text-secondary: #000000;
        --background: #ffffff;
        --border-color: #000000;
    }
    
    .btn--primary {
        background: #ef4444;
        color: #ffffff;
    }
    
    .btn--outline {
        border-color: #000000;
        color: #000000;
    }
}

/* Internal Link Styles for SEO */
.hero__link,
.integrations__link {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: var(--primary-light);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.hero__link:hover,
.integrations__link:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
