/* LogiHub - Современный дизайн 2025 */

/* CSS Variables */
:root {
    /* Corporate Colors */
    --primary-color: #1e3a8a; /* Indigo 800 */
    --primary-dark: #172554;  /* Indigo 950 */
    --primary-light: #3b82f6; /* Blue 500 for accents */
    --secondary-color: #0f766e; /* Teal 700 */
    --accent-color: #0ea5e9; /* Sky 500 */
    --danger-color: #b91c1c; /* Red 700 */
    --warning-color: #b45309; /* Amber 700 */
    --success-color: #166534; /* Green 700 */
    
    /* Neutral Colors */
    --gray-50: #f8fafc;
    --gray-100: #eef2f7;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1f2937;
    --gray-900: #0f172a;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f6f8fb;
    --bg-tertiary: #edf2f7;
    --bg-dark: #0b1220;
    
    /* Text Colors */
    --text-primary: #0f172a; /* High contrast */
    --text-secondary: #334155;
    --text-muted: #64748b;
    --text-white: #ffffff;
    
    /* Border Colors */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --border-dark: #94a3b8;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.25s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: var(--line-height-tight);
    color: var(--text-primary);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--primary-dark);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    user-select: none;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover:not(:disabled) {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border-medium);
    color: var(--text-primary);
}

.btn-outline:hover:not(:disabled) {
    background-color: var(--gray-50);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--font-size-xs);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-base);
}

.btn-block {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
}

.navbar {
    padding: var(--space-md) 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
}

.logo {
    width: 32px;
    height: 32px;
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.user-menu {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background-color: var(--gray-50);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.user-btn:hover {
    background-color: var(--gray-100);
    border-color: var(--border-medium);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: var(--space-sm);
    min-width: 200px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    color: var(--text-primary);
    transition: background-color var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--gray-50);
}

.dropdown-item:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--space-sm);
    background: none;
    border: none;
    cursor: pointer;
}

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

/* Hero Section - Light & Modern Design */
.hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eef2f7 100%);
    color: var(--text-primary);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin: 0;
    border-radius: 0;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 150px;
    }
}

/* Subtle Pattern Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.35;
    z-index: 1;
}

/* Decorative Elements */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><g opacity="0.06"><path d="M100,200 Q300,100 500,200 Q700,300 900,200 Q1100,100 1200,200" stroke="%233b82f6" stroke-width="2" fill="none"/><path d="M100,400 Q300,300 500,400 Q700,500 900,400 Q1100,300 1200,400" stroke="%2310b981" stroke-width="2" fill="none"/><path d="M100,600 Q300,500 500,600 Q700,700 900,600 Q1100,500 1200,600" stroke="%23f59e0b" stroke-width="2" fill="none"/></g></svg>');
    z-index: 1;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.15;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-3xl);
    text-align: center;
    min-height: 80vh;
    justify-content: center;
}

.hero-content.hero-alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    max-width: 1600px;
    padding: var(--space-4xl) var(--space-3xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25), 0 20px 40px rgba(0, 0, 0, 0.2);
    margin: var(--space-xl);
    min-height: 85vh;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    color: #1e293b;
    letter-spacing: -0.02em;
    position: relative;
    text-align: center;
    max-width: 1000px;
}

.hero-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}


.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    line-height: 1.6;
    margin-bottom: var(--space-3xl);
    color: #475569;
    font-weight: 400;
    letter-spacing: 0.01em;
    max-width: 800px;
    position: relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-search { 
    background: #ffffff; 
    border: 1px solid #e2e8f0; 
    border-radius: 16px; 
    padding: var(--space-2xl); 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), 0 6px 12px rgba(0, 0, 0, 0.04); 
    width: 100%; 
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-search:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15), 0 16px 32px rgba(0, 0, 0, 0.1);
}

.hero-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-color), var(--secondary-color));
    border-radius: 24px 24px 0 0;
}

.hero-search-row { 
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr 1fr; 
    gap: var(--space-md); 
    align-items: end; 
    margin-bottom: var(--space-lg);
}

.hero-search-actions { 
    display: flex; 
    gap: var(--space-sm); 
    margin-top: var(--space-lg); 
    flex-wrap: wrap; 
    justify-content: center;
}

.microcopy { 
    margin-top: 12px; 
    color: var(--text-muted); 
    font-size: var(--font-size-sm); 
    text-align: center;
    line-height: 1.5;
}

.hero-search .search-field { 
    position: relative;
}

.hero-search .search-field label { 
    font-size: var(--font-size-sm); 
    color: #374151; 
    margin-bottom: 6px; 
    display: block; 
    font-weight: 600;
    letter-spacing: 0.025em;
}

.hero-search .search-field input, 
.hero-search .search-field select { 
    width: 100%; 
    padding: 12px 16px; 
    border: 1px solid #e2e8f0; 
    border-radius: 8px; 
    font-size: var(--font-size-base); 
    transition: all 0.3s ease;
    background: #f8fafc;
    font-weight: 500;
    color: #1e293b;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hero-search .search-field input:focus, 
.hero-search .search-field select:focus { 
    border-color: #3b82f6; 
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1); 
    outline: none;
    background: #ffffff;
    transform: translateY(-2px);
}

.hero-search .search-field input:hover, 
.hero-search .search-field select:hover {
    border-color: #cbd5e1;
    background: #ffffff;
}



.hero-search .search-field input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.hero-search .search-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 48px;
}
.hero-search-btn { 
    padding: 12px 24px; 
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: 1px solid #3b82f6;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-search-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-color: #2563eb;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.hero-quick-links { 
    margin-top: var(--space-sm); 
    color: var(--text-muted); 
    display: flex; 
    align-items: center; 
    gap: var(--space-sm); 
}

.hero-quick-links a { 
    color: var(--text-secondary); 
}

.hero-badges { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 8px; 
    margin-top: 16px; 
    justify-content: center;
}

.hero-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 25px;
    color: var(--primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.hero-badges .badge:hover {
    background: rgba(59, 130, 246, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.hero-badges .badge i {
    font-size: 14px;
}

/* Trust Info Block */
.hero-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
}

.hero-trust-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
    margin-bottom: var(--space-sm);
}

.hero-trust-text {
    font-size: var(--font-size-base);
    color: #374151;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta-btn {
    padding: 20px 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: var(--font-size-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: 1px solid #3b82f6;
}

.hero-cta-btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.hero-cta-btn-secondary {
    background: #ffffff;
    color: #374151;
    border: 2px solid #e2e8f0;
}

.hero-cta-btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Hero Visual Column */
.hero-col-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-col-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 24px;
    z-index: -1;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.hero-visual i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    width: 100%;
    margin-top: var(--space-lg);
}

.hero-stat {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--space-xs);
}

.hero-stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* New hero alternative layout */
.hero-alt { grid-template-columns: 1.1fr 0.9fr; }
.hero-col { display: flex; flex-direction: column; gap: var(--space-lg); }
.hero-col-text { align-self: center; }
.hero-ctas { display: flex; gap: var(--space-md); flex-wrap: wrap; }
.hero-features { display: flex; flex-wrap: wrap; gap: var(--space-sm); color: var(--text-secondary); }
.hero-features .feature { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border: 1px solid var(--border-light); border-radius: 999px; background: var(--bg-primary); font-size: var(--font-size-xs); }

.hero-col-visual { position: relative; }
.hero-map { position: relative; width: 100%; height: 360px; border-radius: var(--radius-2xl); background:
    radial-gradient(120% 120% at 100% 0%, #e0f2fe 0%, transparent 60%),
    radial-gradient(120% 120% at 0% 100%, #e9d5ff 0%, transparent 60%),
    linear-gradient(135deg, #eff6ff, #ecfeff);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.kpis { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: space-between; padding: var(--space-xl); }
.kpi { background: var(--bg-primary); border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: var(--space-md) var(--space-lg); box-shadow: var(--shadow-sm); text-align: center; min-width: 140px; }
.kpi-num { display: block; font-size: var(--font-size-3xl); font-weight: 700; color: var(--primary-color); line-height: 1; }
.kpi-label { display: block; font-size: var(--font-size-xs); color: var(--text-secondary); margin-top: 4px; }

@media (max-width: 1024px) {
    .hero-alt { grid-template-columns: 1fr; }
    .hero-col-visual { order: -1; }
    .hero-map { height: 260px; }
    .kpis { justify-content: center; gap: var(--space-md); }
}

/* Expanded hero text container */
.hero .hero-text {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-4xl) var(--space-3xl);
    color: var(--text-white);
    max-width: 1600px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero .hero-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-color), var(--secondary-color));
    border-radius: 32px 32px 0 0;
}

.hero .hero-text h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.hero .hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-color));
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

.hero .hero-text p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    letter-spacing: 0.01em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
    color: var(--text-primary);
    width: 100%;
    max-width: 400px;
}

.card-header h3 {
    margin-bottom: var(--space-lg);
    text-align: center;
    color: var(--text-primary);
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.form-group label {
    font-weight: 500;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
}

.form-group input,
.form-group select {
    padding: var(--space-md);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Stats Section */
.stats {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-secondary);
}

/* Trust */
.trust { padding: var(--space-3xl) 0; background: var(--bg-primary); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-xl); }
.trust-card { border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: var(--space-xl); background: var(--bg-primary); box-shadow: var(--shadow-sm); }
.trust-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); color: var(--text-white); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-md); }
.trust-meta { display: flex; gap: var(--space-xl); flex-wrap: wrap; margin-top: var(--space-xl); color: var(--text-secondary); }
.trust-meta .meta-item { display: inline-flex; align-items: center; gap: var(--space-sm); }

/* Partners */
.partners {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.partners-track {
    display: grid;
    grid-template-columns: repeat(6, minmax(100px, 1fr));
    gap: var(--space-xl);
    align-items: center;
    justify-items: center;
}

.partner-logo {
    height: 36px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: opacity var(--transition-fast);
}

.partner-logo:hover { opacity: 1; }

/* Benefits */
.benefits { padding: var(--space-3xl) 0; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
}

.benefit-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.benefit-card h3 { margin-bottom: var(--space-xs); }
.benefit-card p { margin: 0; }

/* Steps */
.steps { padding: var(--space-3xl) 0; background: var(--bg-secondary); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-xl);
}

.step-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

/* CTA banner */
.cta-banner { padding: var(--space-3xl) 0; }

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
}

.cta-text h2 { margin-bottom: var(--space-sm); }
.cta-text p { margin: 0; color: var(--text-secondary); }

.cta-actions { display: flex; gap: var(--space-md); flex-wrap: wrap; }

/* Newsletter */
.newsletter { padding: var(--space-3xl) 0; background: var(--bg-secondary); }

.newsletter-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
}

.chips { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-xl); }
.chip { padding: 8px 12px; border: 1px solid var(--border-light); background: var(--bg-primary); border-radius: 999px; font-size: var(--font-size-xs); color: var(--text-secondary); cursor: pointer; }
.chip:hover { border-color: var(--primary-color); color: var(--primary-color); }

/* Comparison mini-widget */
.comparison { padding: var(--space-3xl) 0; background: var(--bg-secondary); }
.tabs { display: inline-flex; gap: var(--space-sm); margin-bottom: var(--space-lg); }
.tab { padding: 8px 12px; border: 1px solid var(--border-light); background: var(--bg-primary); border-radius: 999px; font-size: var(--font-size-xs); cursor: pointer; }
.tab.active { background: var(--primary-color); border-color: var(--primary-color); color: var(--text-white); }
.table.like { border: 1px solid var(--border-light); border-radius: var(--radius-xl); overflow: hidden; background: var(--bg-primary); }
.t-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 2fr; gap: 0; padding: 14px 16px; border-top: 1px solid var(--border-light); }
.t-row.head { background: var(--bg-secondary); font-weight: 600; color: var(--text-primary); }

/* Social proof */
.social-proof { padding: var(--space-3xl) 0; }
.proof-grid { display: grid; grid-template-columns: 2fr 1fr; gap: var(--space-xl); }
.review-card { border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: var(--space-xl); background: var(--bg-primary); box-shadow: var(--shadow-sm); }
.review-head { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-sm); }
.review-head .badge { padding: 4px 8px; border-radius: 999px; background: var(--bg-secondary); border: 1px solid var(--border-light); font-size: var(--font-size-xs); color: var(--text-secondary); }
.kpi-card { border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: var(--space-xl); background: var(--bg-primary); display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); align-items: center; justify-items: center; }
.kpi-item span { display: block; color: var(--text-secondary); font-size: var(--font-size-xs); }
.kpi-item strong { display: block; font-size: var(--font-size-2xl); color: var(--primary-color); }

/* Docs & Tracking */
.docs-tracking { padding: var(--space-3xl) 0; background: var(--bg-secondary); }
.docs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.doc-card, .track-card { border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: var(--space-xl); background: var(--bg-primary); box-shadow: var(--shadow-sm); }
.progress { display: flex; align-items: center; gap: 8px; margin: var(--space-md) 0; }
.progress .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-medium); }
.progress .dot.done { background: var(--primary-color); }
.progress .line { height: 2px; flex: 1; background: var(--border-medium); }
.progress .line.done { background: var(--primary-color); }

/* FAQ */
.faq { padding: var(--space-3xl) 0; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-md); }
.faq-grid details { border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: var(--space-md); background: var(--bg-primary); }
.compliance-links { display: flex; gap: var(--space-md); margin-top: var(--space-md); justify-content: center; }

/* AI Section */
.ai { padding: var(--space-3xl) 0; }
.ai-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--space-2xl); align-items: center; }
.ai-text .list { margin: var(--space-md) 0; display: grid; gap: var(--space-sm); }
.ai-card { border: 1px solid var(--border-light); border-radius: var(--radius-2xl); background: var(--bg-primary); box-shadow: var(--shadow-sm); padding: var(--space-xl); }
.ai-sample .row { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: 8px; }
.ai-sample .row.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-top: var(--space-sm); }
.ai-sample .row.kpis strong { color: var(--primary-color); }
.ai-sample .hint { margin-top: var(--space-sm); color: var(--text-muted); font-size: var(--font-size-xs); }

@media (max-width: 1024px) {
    .ai-grid { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: 1fr; }
    .docs-grid { grid-template-columns: 1fr; }
}
.newsletter-form { display: flex; gap: var(--space-md); margin-top: var(--space-md); }
.newsletter-form input {
    flex: 1;
    padding: var(--space-md);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
}

@media (max-width: 640px) {
    .partners-track { grid-template-columns: repeat(3, 1fr); }
    .cta-inner { flex-direction: column; text-align: center; }
    .newsletter-form { flex-direction: column; }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: var(--font-size-xl);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-xs);
}

.stat-label {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Companies Section */
.companies {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.company-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.company-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.company-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.company-info {
    flex: 1;
}

.company-name {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.company-type {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: var(--space-xs);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.company-email {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.company-email::before {
    content: '\f0e0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: var(--font-size-xs);
}

.company-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: var(--gray-300);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.stars i.active {
    color: var(--accent-color);
}

.rating-text {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-secondary);
}

.company-details {
    margin-bottom: var(--space-lg);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.detail-item i {
    color: var(--primary-color);
    width: 16px;
}

.company-actions {
    display: flex;
    gap: var(--space-md);
}

.section-footer {
    text-align: center;
}

/* Services Section */
.services {
    padding: var(--space-3xl) 0;
    background-color: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
}

.service-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: left;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--text-white);
    font-size: var(--font-size-2xl);
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* Tracking Section */
.tracking {
    padding: var(--space-3xl) 0;
}

/* For companies */
.for-companies { padding: var(--space-3xl) 0; background: var(--bg-secondary); }
.for-companies-inner { border: 1px solid var(--border-light); border-radius: var(--radius-2xl); padding: var(--space-2xl); background: var(--bg-primary); box-shadow: var(--shadow-sm); }
.for-companies .list { margin: var(--space-md) 0; display: grid; gap: var(--space-sm); }
.for-companies .list li { display: flex; align-items: center; gap: var(--space-sm); }
.for-companies .muted { color: var(--text-muted); margin-bottom: var(--space-md); }
.steps-cta { margin-top: var(--space-xl); display: flex; gap: var(--space-md); flex-wrap: wrap; }

.tracking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.tracking-info {
    max-width: 500px;
}

.tracking-form {
    margin-top: var(--space-2xl);
}

.tracking-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tracking-illustration {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

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

/* Footer */
.footer {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-description {
    color: var(--gray-400);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-relaxed);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--gray-800);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

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

.footer-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: var(--space-xl);
    text-align: center;
    color: var(--text-secondary);
}

.footer-bottom p {
    margin-bottom: var(--space-sm);
}

/* Status Classes */
.status-pending { color: var(--warning-color); }
.status-confirmed { color: var(--primary-color); }
.status-transit { color: var(--accent-color); }
.status-delivered { color: var(--success-color); }
.status-cancelled { color: var(--danger-color); }

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.hidden { display: none; }
.visible { display: block; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

/* New Sections Styles */

/* Trust Section */
.trust {
    padding: 80px 0;
    background: var(--bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.trust-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

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

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.trust-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.trust-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.trust-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 8px 16px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.meta-item i {
    color: var(--primary);
}

/* Steps Section */
.steps {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.step-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.steps-cta {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* For Companies Section */
.for-companies {
    padding: 80px 0;
    background: var(--bg-light);
}

.for-companies-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.for-companies .list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.for-companies .list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text-primary);
}

.for-companies .list i {
    color: var(--success-color);
    font-size: 20px;
}

.muted {
    color: var(--text-muted);
    font-size: 14px;
    margin: 10px 0;
}

/* AI Section */
.ai {
    padding: 80px 0;
    background: white;
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai .list {
    list-style: none;
    margin: 30px 0;
}

.ai .list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-primary);
}

.ai .list i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
}

.ai-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.ai-sample .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.ai-sample .row:last-child {
    border-bottom: none;
}

.ai-sample .row span {
    color: var(--text-secondary);
}

.ai-sample .row b {
    color: var(--text-primary);
    font-weight: 600;
}

.ai-sample .kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.ai-sample .kpi {
    text-align: center;
}

.ai-sample .kpi small {
    display: block;
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 5px;
}

.ai-sample .kpi strong {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

.ai-sample .hint {
    background: var(--primary);
    color: white;
    padding: 10px 15px;
    border-radius: var(--radius);
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}

/* Chips */
.chips {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.chip {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.chip:hover,
.chip.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Company Badges */
.company-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.badge.verified {
    background: var(--success-color);
    color: white;
}

.badge.best-sla {
    background: var(--primary);
    color: white;
}

.badge.low-price {
    background: var(--warning-color);
    color: white;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: var(--bg-light);
}

.tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    justify-content: center;
}

.tab {
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--border-light);
    border-right: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
}

.tab:first-child {
    border-radius: var(--radius) 0 0 var(--radius);
}

.tab:last-child {
    border-radius: 0 var(--radius) var(--radius) 0;
    border-right: 1px solid var(--border-light);
}

.tab.active,
.tab:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.table {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.t-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}

.t-row.head {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-primary);
}

.t-row:last-child {
    border-bottom: none;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: white;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.review-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
}

.review-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-head strong {
    color: var(--text-primary);
    font-size: 18px;
}

.review-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-card .stars {
    display: flex;
    gap: 4px;
}

.review-card .stars i {
    color: var(--warning-color);
}

.review-card .stars i:not(.active) {
    color: var(--border-medium);
}

.kpi-card {
    display: grid;
    gap: 20px;
}

.kpi-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.kpi-item span {
    color: var(--text-secondary);
    font-size: 14px;
}

.kpi-item strong {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
}

/* Docs & Tracking Section */
.docs-tracking {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.doc-card,
.track-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.doc-card h3,
.track-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.doc-card p,
.track-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.progress {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-medium);
    position: relative;
}

.dot.done {
    background: var(--success-color);
}

.line {
    height: 2px;
    background: var(--border-medium);
    flex: 1;
    margin: 0 10px;
}

.line.done {
    background: var(--success-color);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

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

.faq-grid details {
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-grid summary {
    padding: 20px;
    background: var(--bg-light);
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.faq-grid summary:hover {
    background: var(--border-light);
}

.faq-grid details[open] summary {
    background: var(--primary);
    color: white;
}

.faq-grid p {
    padding: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.compliance-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.compliance-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.compliance-links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: var(--primary);
    color: white;
}

.newsletter-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-inner h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-inner p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    min-width: 200px;
}

.newsletter-form .telegram-input {
    min-width: 150px;
}

.newsletter-form button {
    background: white;
    color: var(--primary);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--bg-light);
}


/* AI Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease-out;
}

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

/* Hero Text Animations */
@keyframes titleGlow {
    0% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 0 4px 30px rgba(59, 130, 246, 0.2), 0 4px 20px rgba(0, 0, 0, 0.3);
    }
}

@keyframes underlineGlow {
    0% {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 20px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 30px;
}

.ai-result {
    margin-bottom: 30px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.result-item .label {
    color: var(--text-secondary);
    font-weight: 500;
}

.result-item .value {
    color: var(--text-primary);
    font-weight: 600;
}

.result-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.result-kpis .kpi {
    text-align: center;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.result-kpis .kpi small {
    display: block;
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 5px;
}

.result-kpis .kpi strong {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

.ai-advice {
    background: var(--primary);
    color: white;
    padding: 15px;
    border-radius: var(--radius);
    margin-top: 20px;
}

.ai-advice p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .hero-search-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-search {
        max-width: 100%;
        padding: var(--space-lg);
    }
    
    .ai-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .docs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        width: 100%;
        max-width: 300px;
    }
    
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .result-kpis {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .t-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .t-row.head {
        display: none;
    }
    
    .t-row > div:before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: var(--text-secondary);
    }
}

