/* ========================================
   VerTeklifi Premium Website CSS
   Inspired by modern web design trends
======================================== */

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

:root {
    /* Colors - Inspired by premium designs */
    --primary-gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    
    /* Main Colors */
    --orange-primary: #ff6b35;
    --orange-secondary: #ff8c42;
    --purple-primary: #667eea;
    --purple-secondary: #764ba2;
    
    /* Neutral Colors */
    --dark-primary: #0a0a1a;
    --dark-secondary: #1a1a2e;
    --dark-tertiary: #2d2d44;
    --gray-primary: #8892b0;
    --gray-secondary: #ccd6f6;
    --white-primary: #ffffff;
    --white-secondary: #f8fafc;
    
    /* Background Colors */
    --bg-primary: #0a0a1a;
    --bg-secondary: #1a1a2e;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-card: rgba(255, 255, 255, 0.08);
    
    /* Light Mode Colors */
    --light-bg-primary: #ffffff;
    --light-bg-secondary: #f8fafc;
    --light-text-primary: #1a202c;
    --light-text-secondary: #4a5568;
    --light-border: rgba(0, 0, 0, 0.1);
    --light-glass: rgba(0, 0, 0, 0.05);
    --light-card: rgba(0, 0, 0, 0.02);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Animations */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.3);
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-tooltip: 1070;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--white-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all var(--transition-base);
}

body.light-mode {
    background: var(--light-bg-primary);
    color: var(--light-text-primary);
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    position: relative;
}

.loading-spinner {
    width: 100%;
    height: 100%;
    animation: spin 1s linear infinite;
}

.loading-spinner circle {
    stroke-dasharray: 280;
    stroke-dashoffset: 280;
    animation: draw 2s ease-in-out infinite alternate;
}

.loading-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes draw {
    0% { stroke-dashoffset: 280; }
    100% { stroke-dashoffset: 0; }
}

@keyframes progress {
    0%, 100% { width: 0%; }
    50% { width: 100%; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.95);
    box-shadow: var(--shadow-lg);
}

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--light-border);
}

body.light-mode .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 180px;
    height: auto;
}

.logo-image {
    width: 100%;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

.logo-svg {
    width: 100%;
    height: 100%;
}

.brand-text h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text span {
    font-size: 0.75rem;
    color: var(--gray-primary);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    position: relative;
    color: var(--gray-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    padding: 0.5rem 0;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(100%);
    opacity: 0;
    transition: all var(--transition-base);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: translateY(0);
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: transparent;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: auto;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange-primary);
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: auto;
}

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

.theme-toggle,
.language-selector {
    position: relative;
}

.theme-toggle {
    width: 40px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    transition: all var(--transition-base);
}

.theme-toggle i {
    font-size: 0.7rem;
    transition: all var(--transition-base);
}

.theme-toggle .fa-sun {
    color: var(--orange-primary);
}

.theme-toggle .fa-moon {
    color: var(--gray-primary);
}

body.light-mode .theme-toggle {
    background: rgba(0, 0, 0, 0.1);
}

body.light-mode .theme-toggle .fa-sun {
    color: var(--gray-primary);
}

body.light-mode .theme-toggle .fa-moon {
    color: var(--orange-primary);
}

body.light-mode .nav-link {
    color: var(--light-text-secondary);
}

/* Light mode for all sections and components */
body.light-mode .hero-section {
    background: linear-gradient(135deg, var(--light-bg-primary) 0%, var(--light-bg-secondary) 100%);
}

body.light-mode .platform-section {
    background: var(--light-bg-primary);
    color: var(--light-text-primary);
}

body.light-mode .features-section {
    background: var(--light-bg-secondary);
    color: var(--light-text-primary);
}

body.light-mode .demo-section {
    background: var(--light-bg-primary);
    color: var(--light-text-primary);
}

body.light-mode .testimonials-section {
    background: var(--light-bg-secondary);
    color: var(--light-text-primary);
}

body.light-mode .contact-section {
    background: var(--light-bg-primary);
    color: var(--light-text-primary);
}

body.light-mode .footer {
    background: var(--light-text-primary);
    color: var(--light-bg-primary);
}

/* Cards and components */
body.light-mode .floating-dashboard {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--light-border);
    color: var(--light-text-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.light-mode .section-badge {
    background: var(--light-glass);
    color: var(--orange-primary);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

body.light-mode .step-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--light-border);
    color: var(--light-text-primary);
}

body.light-mode .feature-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--light-border);
    color: var(--light-text-primary);
}

body.light-mode .demo-screen {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--light-border);
    color: var(--light-text-primary);
}

body.light-mode .testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--light-border);
    color: var(--light-text-primary);
}

body.light-mode .contact-form .form {
    background: rgba(255, 255, 255, 0.9);
    color: var(--light-text-primary);
}

body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
    background: var(--light-bg-primary);
    border: 1px solid var(--light-border);
    color: var(--light-text-primary);
}

body.light-mode .btn-ghost {
    border-color: var(--light-border);
    color: var(--light-text-primary);
}

body.light-mode .btn-ghost:hover {
    background: var(--light-glass);
}

/* Text colors */
body.light-mode .section-title {
    color: var(--light-text-primary);
}

body.light-mode .section-subtitle {
    color: var(--light-text-secondary);
}

body.light-mode .hero-title {
    color: var(--light-text-primary);
}

body.light-mode .hero-subtitle {
    color: var(--light-text-secondary);
}

/* Step metrics for platform section */
.step-metric {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--orange-primary);
    border-radius: var(--radius-md);
    text-align: center;
}

.metric-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange-primary);
    display: block;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--gray-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-card.primary {
    border: 2px solid var(--orange-primary);
}

.step-card.secondary {
    border: 2px solid var(--purple-primary);
}

.step-card.accent {
    border: 2px solid #10b981;
}

/* About Section - Parallax Story */
.about-section {
    position: relative;
    min-height: 200vh;
    overflow: hidden;
    background: var(--dark-gradient);
}

.about-parallax-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    will-change: transform;
}

.parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.layer-1 { z-index: 1; }
.layer-2 { z-index: 2; opacity: 0.7; }
.layer-3 { z-index: 3; opacity: 0.4; }

.about-content {
    position: relative;
    z-index: 10;
    padding: 100px 0;
}

.story-chapter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease-out;
}

.story-chapter.visible {
    opacity: 1;
    transform: translateY(0);
}

.story-chapter[data-chapter="vision"] {
    grid-template-columns: 1fr 1fr;
}

.story-chapter[data-chapter="vision"] .story-content {
    order: 1;
}

.story-chapter[data-chapter="vision"] .story-visual {
    order: 2;
}

.chapter-badge {
    display: inline-block;
    background: var(--orange-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.story-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white-primary);
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--gray-secondary);
    margin-bottom: 2rem;
}

.story-quote {
    background: var(--bg-card);
    border-left: 4px solid var(--orange-primary);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    backdrop-filter: blur(20px);
}

.story-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin: 0 0 1rem 0;
    color: var(--white-primary);
}

.story-quote cite {
    color: var(--orange-primary);
    font-weight: 600;
}

/* Problem showcase */
.problem-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.problem-timeline {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    margin-bottom: 2rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-hour {
    background: var(--orange-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.timeline-event {
    flex: 1;
    color: var(--gray-secondary);
    font-size: 1rem;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.problem-stat {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all var(--transition-base);
}

.problem-stat.pain:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.problem-stat .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ef4444;
    display: block;
    margin-bottom: 0.5rem;
}

.problem-stat .stat-label {
    font-size: 0.9rem;
    color: var(--gray-primary);
    line-height: 1.3;
}

/* Pain points */
.pain-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.pain-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.pain-point i {
    color: #ef4444;
    font-size: 1.2rem;
}

.pain-point span {
    color: var(--gray-secondary);
    font-size: 0.9rem;
}

/* Solution benefits */
.solution-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all var(--transition-base);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--orange-primary);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white-primary);
}

.benefit-item p {
    color: var(--gray-primary);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Platform features */
.platform-features {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    margin: 3rem 0;
}

.platform-features h4 {
    color: var(--orange-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.platform-features ul {
    list-style: none;
    padding: 0;
}

.platform-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.platform-features li:last-child {
    border-bottom: none;
}

.platform-features li i {
    color: var(--orange-primary);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.platform-features li strong {
    color: var(--white-primary);
}

/* Transformation showcase */
.transformation-showcase {
    padding: 3rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.before-after-comparison {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.before, .after {
    flex: 1;
    text-align: center;
}

.before h4, .after h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white-primary);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-steps.old .step {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--gray-secondary);
}

.process-steps.new .step {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--gray-secondary);
}

.step {
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
}

.process-time {
    font-size: 1.5rem;
    font-weight: 900;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
}

.transformation-arrow {
    font-size: 2rem;
    color: var(--orange-primary);
    animation: pulse 2s infinite;
}

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

/* Transformation animation */
.transformation-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.before-after {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.before, .after {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    min-width: 200px;
}

.before {
    border: 2px solid #ef4444;
}

.after {
    border: 2px solid #10b981;
}

.chaos-elements, .success-elements {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
    font-size: 2rem;
}

.arrow {
    font-size: 2rem;
    color: var(--orange-primary);
    font-weight: 900;
}

/* Impact metrics */
.impact-metrics {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.metric-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.metric-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.metric-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.metric-content .metric-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange-primary);
    display: block;
}

.metric-content .metric-label {
    font-size: 0.9rem;
    color: var(--gray-primary);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.impact-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
}

.impact-stat .number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.impact-stat .label {
    font-size: 0.9rem;
    color: var(--gray-primary);
}

/* Impact highlights */
.impact-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--orange-primary);
    min-width: 2rem;
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--white-primary);
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--gray-primary);
    margin: 0;
}

/* Story CTA */
.story-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    margin-top: 4rem;
}

.story-cta h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
}

.story-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-story-cta {
    background: white;
    color: var(--orange-primary);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.btn-story-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Light mode styles for about section */
body.light-mode .about-section {
    background: var(--light-bg-primary);
}

body.light-mode .story-title {
    color: var(--light-text-primary);
}

body.light-mode .story-text {
    color: var(--light-text-secondary);
}

body.light-mode .problem-stat,
body.light-mode .pillar,
body.light-mode .story-quote,
body.light-mode .impact-stat,
body.light-mode .highlight-item,
body.light-mode .before,
body.light-mode .after {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--light-border);
    color: var(--light-text-primary);
}

body.light-mode .pillar h4,
body.light-mode .highlight-item h4 {
    color: var(--light-text-primary);
}

body.light-mode .pillar p,
body.light-mode .problem-stat .stat-label,
body.light-mode .impact-stat .label,
body.light-mode .highlight-item p {
    color: var(--light-text-secondary);
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-primary);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

.lang-dropdown a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white-primary);
    transition: all var(--transition-base);
}

/* Mobil menü stilleri */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 1.5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}

.mobile-header {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.mobile-logo {
    height: 30px;
    width: auto;
    max-width: 120px;
}

.mobile-close {
    background: none;
    border: none;
    color: var(--white-primary);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.3rem;
    transition: all var(--transition-base);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-close:hover {
    color: var(--orange-primary);
    transform: rotate(90deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 220px;
}

.mobile-nav a {
    color: var(--white-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    text-align: center;
    backdrop-filter: blur(10px);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: var(--primary-gradient);
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.mobile-actions {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 220px;
}

.mobile-actions .btn-primary {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-mobile-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-primary);
}

.btn-mobile-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange-primary);
}

.btn-mobile-primary {
    background: var(--primary-gradient);
    border: none;
    color: white;
}

.btn-mobile-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

body.mobile-menu-open {
    overflow: hidden;
}

body.light-mode .mobile-menu-overlay {
    background: rgba(255, 255, 255, 0.95);
}

body.light-mode .mobile-nav a {
    color: var(--light-text-primary);
}

body.light-mode .mobile-close {
    color: var(--light-text-primary);
}

body.light-mode .mobile-close:hover {
    color: var(--orange-primary);
}

/* Step Features Light Mode Fix */
body.light-mode .step-features li {
    color: var(--light-text-secondary);
}

/* Problem Timeline Light Mode Fix */
body.light-mode .problem-timeline {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--light-border);
    color: var(--light-text-primary);
}

body.light-mode .timeline-item {
    border-bottom-color: var(--light-border);
    color: var(--light-text-primary);
}

/* Pain Points Light Mode Fix */
body.light-mode .pain-point {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

body.light-mode .pain-point span {
    color: var(--light-text-secondary);
}

/* Solution Benefits Light Mode Fix */
body.light-mode .benefit-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--light-border);
}

body.light-mode .benefit-item h4 {
    color: var(--light-text-primary);
}

body.light-mode .benefit-item p {
    color: var(--light-text-secondary);
}

/* Platform Features Light Mode Fix */
body.light-mode .platform-features {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--light-border);
    color: var(--light-text-primary);
}

body.light-mode .platform-features li {
    border-bottom-color: var(--light-border);
    color: var(--light-text-primary);
}

body.light-mode .platform-features li strong {
    color: var(--light-text-primary);
}

/* Feature Card H3 Light Mode Fix */
body.light-mode .feature-card h3 {
    color: var(--light-text-primary);
}

/* Form Label Light Mode Fix */
body.light-mode .form-group label,
body.light-mode .quantity-selector label {
    color: var(--light-text-secondary);
}

/* Advantage Grid Light Mode Fix */
body.light-mode .advantage {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--light-border);
    color: var(--light-text-primary);
}

/* Timeline Event Light Mode Fix */
body.light-mode .timeline-event {
    color: var(--light-text-primary);
}

/* Mobile Toggle Light Mode Fix */
body.light-mode .mobile-toggle span {
    background: var(--light-text-primary);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--orange-primary) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--purple-primary) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--orange-secondary) 0%, transparent 70%);
    top: 50%;
    left: 20%;
    animation-delay: 4s;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gray-secondary);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--orange-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: slideInUp 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.title-line.highlight {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line.accent {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: slideInUp 1s ease-out 0.8s both;
}

.stat-card {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
}

.stat-visual {
    margin-bottom: 1rem;
}

.stat-chart {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.stat-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange-primary);
    display: block;
}

.stat-unit {
    font-size: 1rem;
    color: var(--gray-primary);
    margin-left: 0.25rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--orange-primary);
}

.stat-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-info p {
    font-size: 0.8rem;
    color: var(--gray-primary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: slideInUp 1s ease-out 1s both;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-hero-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-hero-secondary {
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-primary);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange-primary);
}

.play-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon i {
    margin-left: 2px;
    font-size: 0.8rem;
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.visual-container {
    position: relative;
    height: 600px;
}

.floating-dashboard {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    animation: float 6s ease-in-out infinite;
    box-shadow: var(--shadow-xl);
}

.dashboard-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    flex: auto;
    font-weight: 600;
    font-size: 1.1rem;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-primary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dashboard-status.online {
    color: #10b981;
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-primary);
    margin-bottom: 0.25rem;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-primary);
}

.progress-bars {
    margin-bottom: 1.5rem;
}

.progress-item {
    margin-bottom: 1rem;
}

.progress-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-primary);
    margin-bottom: 0.5rem;
}

.progress-bar {
    position: relative;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 4px;
    transition: width 2s ease-out;
}

.progress-text {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 0.7rem;
    color: var(--orange-primary);
    font-weight: 600;
}

.recent-activity h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--white-primary);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--gray-primary);
}

.activity-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.activity-icon.hotel {
    background: rgba(102, 126, 234, 0.2);
    color: var(--purple-primary);
}

.activity-icon.supplier {
    background: rgba(255, 107, 53, 0.2);
    color: var(--orange-primary);
}

.activity-icon.success {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.activity-time {
    margin-left: auto;
    font-size: 0.7rem;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    width: 180px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1rem;
    backdrop-filter: blur(10px);
    text-align: center;
    box-shadow: var(--shadow-md);
    animation: float 8s ease-in-out infinite;
}

.floating-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
}

.floating-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--orange-primary);
}

.floating-card p {
    font-size: 0.7rem;
    color: var(--gray-primary);
}

.hotel-card {
    top: 100px;
    left: 0;
    animation-delay: 0s;
}

.supplier-card {
    bottom: 150px;
    right: 50px;
    animation-delay: 2s;
}

.dealer-card {
    top: 200px;
    left: 100px;
    animation-delay: 4s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-primary);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--orange-primary);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--orange-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

/* Platform Section */
.platform-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gray-secondary);
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-primary);
    max-width: 600px;
    margin: 0 auto;
}

.platform-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.flow-line {
    position: absolute;
    top: 200px;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.flow-progress {
    height: 100%;
    width: 0%;
    background: var(--primary-gradient);
    border-radius: 1px;
    animation: flowProgress 3s ease-in-out infinite;
}

.step-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all var(--transition-base);
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2rem;
    width: 60px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.step-visual {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 200px;
}

.step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-base);
}

.step-card:hover .step-visual img {
    transform: scale(1.05);
}

.step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--orange-primary);
    transition: all var(--transition-base);
}

.step-card:hover .step-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white-primary);
}

.step-content p {
    color: var(--gray-primary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-secondary);
}

.step-features li i {
    color: var(--orange-primary);
    font-size: 0.8rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all var(--transition-base);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-xl);
}

.feature-card.primary {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, var(--bg-card) 100%);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
    transition: all var(--transition-base);
}

.feature-card:hover .icon-bg {
    transform: scale(1.5);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white-primary);
}

.feature-card p {
    color: var(--gray-primary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    /* height: 150px; */
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

/* Demo Section */
.demo-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--dark-secondary) 100%);
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.demo-feature i {
    font-size: 1.2rem;
    color: var(--orange-primary);
}

.btn-demo-launch {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 1.25rem 2rem;
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.btn-demo-launch:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.demo-visual {
    position: relative;
}

.demo-screen {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
}

.screen-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-dots {
    display: flex;
    gap: 0.5rem;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.screen-dots span:nth-child(1) { background: #ff5f56; }
.screen-dots span:nth-child(2) { background: #ffbd2e; }
.screen-dots span:nth-child(3) { background: #27ca3f; }

.screen-title {
    font-weight: 600;
    color: var(--gray-secondary);
}

.screen-content {
    padding: 2rem;
}

.demo-interface {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    min-height: 400px;
}

.interface-sidebar {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--gray-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-bottom: 0.5rem;
}

.sidebar-item:hover,
.sidebar-item.active {
    background: var(--primary-gradient);
    color: white;
}

.sidebar-item i {
    font-size: 1rem;
}

.interface-main {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.interface-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.interface-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.interface-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-primary);
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 1rem;
    color: var(--white-primary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.input-group input:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.input-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
    padding: 0.5rem;
    z-index: 10;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.result-item img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.result-suppliers {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-selector label {
    font-weight: 500;
    color: var(--gray-secondary);
}

.quantity-input {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.quantity-input button {
    background: none;
    border: none;
    color: var(--gray-secondary);
    padding: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.quantity-input button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-primary);
}

.quantity-input input {
    background: none;
    border: none;
    color: var(--white-primary);
    padding: 0.75rem;
    text-align: center;
    width: 80px;
}

.btn-create-offer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-create-offer:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.demo-results {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
    animation: slideInUp 0.5s ease-out;
}

.result-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-header h4 {
    font-size: 1rem;
    color: var(--white-primary);
}

.result-time {
    font-size: 0.8rem;
    color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.result-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.result-list .result-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    position: relative;
}

.result-list .result-item.best {
    border-color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.05);
}

.result-badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: var(--orange-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.result-info h5 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.result-rating {
    color: #fbbf24;
    font-size: 0.8rem;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--bg-primary) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-xl);
}

.testimonial-card.featured {
    row-span: 2;
}

.testimonial-image {
    position: relative;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: var(--radius-md);
    padding: 0.5rem;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--orange-primary);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-primary);
    margin-bottom: 0.25rem;
}

.company-name {
    font-size: 0.8rem;
    color: var(--orange-primary);
    font-weight: 500;
}

.testimonial-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.testimonial-metrics .metric {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
}

.testimonial-metrics .metric-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 0.25rem;
}

.testimonial-metrics .metric-label {
    font-size: 0.8rem;
    color: var(--gray-primary);
}

.testimonial-header {
    display: flex;
    justify-content: between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.company-info img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.company-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.company-info span {
    font-size: 0.8rem;
    color: var(--gray-primary);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-secondary);
    font-style: italic;
    margin-bottom: 1rem;
    border: none;
}

.testimonial-card .testimonial-author {
    margin-bottom: 0;
}

.testimonial-card .testimonial-author img {
    width: 35px;
    height: 35px;
}

.testimonial-card .testimonial-author strong {
    font-size: 0.9rem;
    color: var(--white-primary);
}

.testimonial-card .testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-primary);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.pricing-label {
    font-weight: 500;
    color: var(--gray-secondary);
}

.discount {
    background: var(--primary-gradient);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

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

.toggle-switch label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    border-radius: 15px;
    transition: all var(--transition-base);
}

.toggle-switch label::before {
    content: '';
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: var(--primary-gradient);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.toggle-switch input:checked + label {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--orange-primary);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border-color: var(--orange-primary);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, var(--bg-card) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--gray-primary);
    font-size: 0.9rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    color: var(--gray-primary);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange-primary);
    line-height: 1;
}

.amount.yearly {
    display: none;
}

.pricing-toggle input:checked ~ .pricing-grid .amount.monthly {
    display: none;
}

.pricing-toggle input:checked ~ .pricing-grid .amount.yearly {
    display: inline;
}

.amount.custom {
    font-size: 2rem;
    color: var(--orange-primary);
}

.period {
    font-size: 1rem;
    color: var(--gray-primary);
    margin-left: 0.25rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.pricing-features .feature i {
    font-size: 0.8rem;
}

.pricing-features .feature.disabled {
    opacity: 0.5;
}

.pricing-features .feature.disabled i {
    color: var(--gray-primary);
}

.pricing-features .feature:not(.disabled) i {
    color: var(--orange-primary);
}

.pricing-btn {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-primary);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--orange-primary);
}

.pricing-btn.primary {
    background: var(--primary-gradient);
    border-color: transparent;
}

.pricing-btn.primary:hover {
    background: var(--primary-gradient);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-guarantee {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    max-width: 500px;
    margin: 0 auto;
}

.guarantee-content i {
    font-size: 2rem;
    color: var(--orange-primary);
}

.guarantee-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.guarantee-content p {
    font-size: 0.9rem;
    color: var(--gray-primary);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--dark-secondary) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-glass);
    color: var(--orange-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    transition: all var(--transition-base);
    text-decoration: none;
}

.contact-method:hover {
    border-color: var(--orange-primary);
    transform: translateX(10px);
}

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

.method-icon i {
    font-size: 1.2rem;
    color: white;
}

.method-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-info p {
    font-size: 1rem;
    color: var(--orange-primary);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.method-info span {
    font-size: 0.8rem;
    color: var(--gray-primary);
}

.contact-image {
    margin-top: 2rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 300px;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-xl);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--gray-secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 1rem;
    color: var(--white-primary);
    font-size: 0.9rem;
    font-family: inherit;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-group.checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
    accent-color: var(--orange-primary);
}

.form-group.checkbox label {
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-top: 1rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* Footer */
.footer {
    background: var(--dark-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--gray-primary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-secondary);
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white-primary);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column ul li a {
    color: var(--gray-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--orange-primary);
    transform: translateX(5px);
}

.footer-newsletter {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(20px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.newsletter-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: var(--gray-primary);
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 1rem;
    color: var(--white-primary);
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.newsletter-form button {
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--radius-sm);
    padding: 1rem;
    color: white;
    cursor: pointer;
    transition: all var(--transition-base);
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    display: flex;
    justify-content: between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal p {
    color: var(--gray-primary);
    font-size: 0.8rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--gray-primary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

.legal-links a:hover {
    color: var(--orange-primary);
}

.footer-certifications {
    display: flex;
    gap: 1.5rem;
}

.certification {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-primary);
}

.certification i {
    color: var(--orange-primary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

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

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes flowProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        margin-top: 80px; /* Header yüksekliği kadar boşluk */
    }
    
    .floating-dashboard {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .floating-elements {
        display: none;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-newsletter {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions .btn-ghost,
    .nav-actions .btn-primary,
    .language-selector {
        display: none;
    }
    
    /* Theme toggle mobilde görünür olsun */
    .theme-toggle {
        display: flex;
        order: -1;
        margin-right: 0.5rem;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .platform-flow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .flow-line {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .demo-interface {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .interface-sidebar {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-form {
        /* flex-direction: column; */
        min-width: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .scroll-indicator {
        display: none; /* Mobilde gizle */
    }
    
    /* About section mobile - TAŞMA SORUNLARINI DÜZELT */
    .story-chapter {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
        padding: 0 1rem; /* Yatay padding ekle */
        overflow: hidden; /* Yatay taşmayı önle */
    }
    
    .story-content {
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .story-visual {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .story-text {
        font-size: 1rem; /* Mobilde font boyutunu küçült */
        line-height: 1.5;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .story-chapter[data-chapter="vision"] .story-content,
    .story-chapter[data-chapter="vision"] .story-visual {
        order: unset;
        width: 100%;
        max-width: 100%;
    }
    
    .problem-showcase,
    .vision-pillars,
    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Sosyal medya linklerini mobilde ortala */
    .social-links {
        display: flex;
        gap: 1rem;
        justify-content: center; /* Mobilde sosyal linkleri ortala */
        align-items: center;
        flex-wrap: wrap;
    }
    
    /* Platform features mobil düzeltmeleri */
    .platform-features {
        padding: 1.5rem;
        margin: 2rem 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .platform-features h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .platform-features li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 0;
        text-align: left;
    }
    
    .platform-features li i {
        margin-top: 0;
        font-size: 1.2rem;
    }
    
    .before-after {
        flex-direction: column;
        gap: 1rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-cta h3 {
        font-size: 1.8rem;
    }
    
    .about-section {
        min-height: auto;
    }
    
    .about-parallax-container {
        position: absolute;
    }

    .problem-stats {
        display: contents;
    }

    .story-chapter {
        grid-template-columns: none;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* ========================================
   NEW ABOUT SECTION STYLES
======================================== */

/* Process visualization */
.process-visualization {
    padding: 3rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.flow-step {
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--orange-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    animation: float 3s ease-in-out infinite;
}

.flow-step h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white-primary);
    margin-bottom: 0.5rem;
}

.flow-step p {
    font-size: 0.9rem;
    color: var(--gray-primary);
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--orange-primary);
    margin: 0 1rem;
}

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

.network-visualization {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-gradient);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    font-weight: 700;
    z-index: 5;
    box-shadow: var(--shadow-glow);
}

.network-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.network-node {
    position: absolute;
    background: var(--bg-card);
    border: 2px solid var(--orange-primary);
    padding: 1rem;
    border-radius: var(--radius-md);
    color: var(--white-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.network-node.hotel {
    top: 10%;
    left: 10%;
}

.network-node.supplier {
    top: 10%;
    right: 10%;
}

.network-node.dealer {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

/* Process details */
.process-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all var(--transition-base);
}

.detail-item:hover {
    transform: translateX(10px);
    border-color: var(--orange-primary);
}

.detail-icon {
    font-size: 2.5rem;
    color: var(--orange-primary);
    min-width: 60px;
    text-align: center;
}

.detail-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white-primary);
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: var(--gray-primary);
    line-height: 1.6;
}

/* Competitive advantages */
.competitive-advantages {
    margin: 3rem 0;
}

.competitive-advantages h5 {
    color: var(--orange-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.advantage {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: var(--white-primary);
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-base);
}

.advantage:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: var(--shadow-md);
}

/* Success metrics */
.success-metrics {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.main-metric {
    text-align: center;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

.success-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.success-stat .number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.success-stat .label {
    color: var(--gray-primary);
    font-size: 0.9rem;
}

/* Transformation results */
.transformation-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 3rem 0;
}

.result-category {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.result-category h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white-primary);
    margin-bottom: 1.5rem;
}

.result-category ul {
    list-style: none;
    padding: 0;
}

.result-category li {
    padding: 0.75rem 0;
    color: var(--gray-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 1.5rem;
}

.result-category li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: bold;
}

.result-category li:last-child {
    border-bottom: none;
}

/* Impact testimonial */
.impact-testimonial {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    margin: 3rem 0;
    position: relative;
}

.impact-testimonial:before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--orange-primary);
    line-height: 1;
}

.impact-testimonial blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--white-primary);
    margin: 0 0 1rem 0;
    padding-left: 2rem;
}

.impact-testimonial cite {
    color: var(--orange-primary);
    font-weight: 600;
    font-style: normal;
    padding-left: 2rem;
}

/* Enhanced CTA */
.cta-content {
    position: relative;
    z-index: 2;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-stat .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-story-primary {
    background: white;
    color: var(--orange-primary);
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    text-decoration: auto;
}

.btn-story-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-story-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.btn-story-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}
    
.btn-hero-primary,
.btn-hero-secondary {
    width: 100%;
    justify-content: center;
}

.step-card {
    padding: 1.5rem;
}

.feature-card {
    padding: 1.5rem;
}

.testimonial-card {
    padding: 1.5rem;
}

.pricing-card {
    padding: 1.5rem;
}

.contact-form {
    padding: 1.5rem;
}

/* ========================================
   Countdown Timer Styles
======================================== */

.countdown-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.countdown-timer {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    min-width: 100px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.15);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: var(--text-shadow);
    font-family: 'Space Grotesk', monospace;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #0000001c;
    background-clip: text;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Responsive countdown */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 1rem 0.8rem;
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 0.5rem;
        justify-content: space-between;
    }
    
    .countdown-item {
        padding: 0.8rem 0.5rem;
        min-width: 70px;
        flex: 1;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
}

/* Teleprompter Activity Styles */
.teleprompter-item {
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.teleprompter-item:hover {
    transform: translateX(5px);
    background: rgba(255, 107, 53, 0.05);
    border-radius: var(--radius-md);
}

.activity-icon.offer {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.activity-icon.delivery {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.activity-icon.general {
    background: rgba(156, 163, 175, 0.2);
    color: #9ca3af;
}

.activity-text {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--gray-secondary);
}

.activity-time {
    font-size: 0.75rem;
    color: var(--gray-tertiary);
    font-weight: 500;
    white-space: nowrap;
}

/* Countdown Expired Styles */
.countdown-expired {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--orange-primary);
    font-size: 1.2rem;
    font-weight: 600;
}