:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --secondary: #3b82f6;
    --accent: #f59e0b;
    --danger: #ef4444;
    --bg-main: #ffffff;
    --bg-section: #f9fafb;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-1: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-2: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --hero-bg: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    --hero-highlight: rgba(16, 185, 129, 0.1);
    --hero-underline: rgba(16, 185, 129, 0.2);
    --stats-banner-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --demo-section-bg: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --cta-bg: var(--gradient-primary);
    --nav-bg: rgba(255, 255, 255, 0.95);
    --nav-border: #e5e7eb;
    --nav-shadow: var(--shadow-sm);
    --cookie-bg: #ffffff;
    --cookie-border: #e5e7eb;
    --primary-soft: rgba(16, 185, 129, 0.1);
    --primary-shadow-soft: rgba(16, 185, 129, 0.25);
    --primary-shadow-strong: rgba(16, 185, 129, 0.35);
    --primary-shadow-glow: rgba(16, 185, 129, 0.3);
}

body.landing-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

body.landing-page--main {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.landing-page--dark {
    --primary: #667eea;
    --primary-dark: #5568d3;
    --secondary: #764ba2;
    --accent: #f093fb;
    --danger: #f5576c;
    --bg-main: #0f0f1e;
    --bg-section: #171c3a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #222238;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    --border: #2d3748;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(102, 126, 234, 0.15);
    --shadow-lg: 0 10px 40px rgba(102, 126, 234, 0.25);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --hero-bg: transparent;
    --hero-highlight: rgba(102, 126, 234, 0.25);
    --hero-underline: rgba(102, 126, 234, 0.3);
    --stats-banner-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --demo-section-bg: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --cta-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --nav-bg: rgba(15, 15, 30, 0.85);
    --nav-border: rgba(255, 255, 255, 0.05);
    --nav-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    --cookie-bg: rgba(23, 28, 58, 0.98);
    --cookie-border: rgba(102, 126, 234, 0.3);
    --primary-soft: rgba(102, 126, 234, 0.15);
    --primary-shadow-soft: rgba(102, 126, 234, 0.25);
    --primary-shadow-strong: rgba(102, 126, 234, 0.35);
    --primary-shadow-glow: rgba(102, 126, 234, 0.3);
}

body.landing-page *,
body.landing-page *::before,
body.landing-page *::after {
    box-sizing: border-box;
}

/* Don't override Font Awesome icons */
body.landing-page .plan-features li i::before,
body.landing-page .plan-features li i::after {
    box-sizing: content-box;
}

/* Ensure Font Awesome icons are visible */
body.landing-page .plan-features li i.fas::before,
body.landing-page .plan-features li i.far::before,
body.landing-page .plan-features li i.fab::before {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
}

body.landing-page a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

body.landing-page a:hover {
    color: var(--primary-dark);
}

body.landing-page img {
    max-width: 100%;
    display: block;
}

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

body.landing-page nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--nav-border);
    box-shadow: var(--nav-shadow);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

body.landing-page nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

body.landing-page .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

body.landing-page .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

body.landing-page .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

body.landing-page .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

body.landing-page .nav-links .dropdown {
    position: relative;
}

body.landing-page .nav-links .dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body.landing-page .nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    padding: 16px 12px 12px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 260px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
}

body.landing-page .nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

body.landing-page .nav-links .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

body.landing-page .nav-links .dropdown-menu a i {
    font-size: 16px;
    color: var(--primary);
}

body.landing-page .nav-links .dropdown-menu a:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

body.landing-page .nav-links .dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 0;
}

body.landing-page .nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

body.landing-page .nav-links a:hover {
    color: var(--primary);
}

body.landing-page .btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

body.landing-page .btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px var(--primary-shadow-soft);
}

body.landing-page .btn-primary span,
body.landing-page .btn-primary i,
body.landing-page .btn-primary {
    color: #ffffff;
}

body.landing-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-shadow-strong);
}

body.landing-page .btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--border);
}

body.landing-page .btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

body.landing-page .hero {
    padding: 140px 0 80px;
    background: var(--hero-bg);
    position: relative;
    overflow: hidden;
}

body.landing-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--hero-highlight) 0%, transparent 70%);
    border-radius: 50%;
}

body.landing-page .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

body.landing-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 32px;
}

body.landing-page .hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

body.landing-page .hero h1 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

body.landing-page .hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--hero-underline);
    z-index: -1;
}

body.landing-page .hero p {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

body.landing-page .hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

body.landing-page .hero-video-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(240, 147, 251, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
}

body.landing-page .stats-banner {
    background: var(--stats-banner-bg);
    color: white;
    padding: 60px 0;
}

body.landing-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    align-items: stretch;
}

body.landing-page .stats-grid.stats-compact {
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    justify-items: stretch;
}

body.landing-page .stat-item {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--text-primary);
}

body.landing-page .stat-item-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

body.landing-page .stat-item-icon.purple { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
body.landing-page .stat-item-icon.blue { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
body.landing-page .stat-item-icon.pink { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
body.landing-page .stat-item-icon.green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }

body.landing-page .stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    margin: 0;
}

body.landing-page .stat-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

body.landing-page .stat-item .stat-percentage {
    font-size: 14px;
    color: #4facfe;
    font-weight: 600;
    margin-top: 4px;
}

body.landing-page .stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

body.landing-page .section {
    padding: 100px 0;
}

body.landing-page .section-alt {
    background: var(--bg-section);
}

body.landing-page .section-header {
    text-align: center;
    margin-bottom: 64px;
}

body.landing-page .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body.landing-page .section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

body.landing-page .section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

body.landing-page .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

body.landing-page .feature-grid.compact {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
}

body.landing-page .feature-card {
    padding: 40px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-sm);
}

body.landing-page .feature-card.compact {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
}

body.landing-page .feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

body.landing-page .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
}

body.landing-page .feature-card.compact .feature-icon {
    margin-bottom: 0;
    width: 68px;
    height: 68px;
    min-width: 68px;
    min-height: 68px;
    border-radius: 16px;
    font-size: 28px;
}

body.landing-page .feature-card.compact .feature-card-content {
    display: grid;
    gap: 6px;
}

body.landing-page .feature-card.compact .feature-card-content h3 {
    margin: 0;
}

body.landing-page .feature-card.compact .feature-card-content p {
    margin: 0;
    line-height: 1.6;
}

body.landing-page .feature-card.secondary .feature-icon { background: var(--gradient-secondary); }
body.landing-page .feature-card.accent .feature-icon { background: var(--gradient-accent); }

body.landing-page .feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

body.landing-page .feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

body.landing-page .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.landing-page .feature-list li {
    color: var(--text-secondary);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

body.landing-page .feature-list li i {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

body.landing-page .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

body.landing-page .process-step {
    text-align: center;
}

body.landing-page .process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px var(--primary-shadow-glow);
}

body.landing-page .process-step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

body.landing-page .process-step p {
    color: var(--text-secondary);
    font-size: 16px;
}

body.landing-page .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

body.landing-page .testimonial-card {
    padding: 32px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

body.landing-page .testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

body.landing-page .testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

body.landing-page .testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

body.landing-page .testimonial-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

body.landing-page .testimonial-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

body.landing-page .testimonial-rating {
    color: var(--accent);
    margin-bottom: 16px;
}

body.landing-page .testimonial-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
}

body.landing-page .demo-section {
    padding: 100px 0;
    background: var(--demo-section-bg);
    color: white;
    position: relative;
    overflow: hidden;
}

body.landing-page .case-section {
    background: var(--bg-section);
    padding: 100px 0;
}

body.landing-page .case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    body.landing-page .case-grid {
        grid-template-columns: 1fr;
    }
}

body.landing-page .case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
}

body.landing-page .case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

body.landing-page .case-header {
    display: grid;
    gap: 14px;
}

body.landing-page .case-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(240, 147, 251, 0.12);
    color: var(--accent);
}

body.landing-page .case-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

body.landing-page .case-problem,
body.landing-page .case-result {
    border-left: 3px solid var(--primary);
    padding: 16px;
    border-radius: 10px;
    background: rgba(102, 126, 234, 0.08);
}

body.landing-page .case-problem {
    border-color: #f5576c;
    background: rgba(245, 87, 108, 0.1);
}

body.landing-page .case-result {
    border-color: var(--primary);
    background: rgba(102, 126, 234, 0.1);
}

body.landing-page .case-problem h4,
body.landing-page .case-result h4,
body.landing-page .case-solution h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

body.landing-page .case-result p {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
}

body.landing-page .case-solution ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

body.landing-page .case-solution li {
    position: relative;
    padding-left: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

body.landing-page .case-solution li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

body.landing-page .case-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

body.landing-page .demo-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

body.landing-page .demo-section p {
    font-size: 1.2rem;
    color: var(--text-primary) !important ;
}
body.landing-page .demo-section .col-lg-6 p {
    color: white !important;
}

body.landing-page .code-block {
    background: #2d3748;
    border-radius: 15px;
    padding: 2rem;
    color: #e2e8f0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    overflow-x: auto;
}

body.landing-page .cta-section {
    background: var(--cta-bg);
    color: white;
    padding: 80px 40px;
    border-radius: 24px;
    text-align: center;
}

body.landing-page .cta-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
}

body.landing-page .cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

body.landing-page footer {
    background: var(--bg-section);
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
}

body.landing-page .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

body.landing-page .footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

body.landing-page .footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
}

body.landing-page .footer-links h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

body.landing-page .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.landing-page .footer-links a {
    color: var(--text-secondary);
    display: block;
    padding: 6px 0;
    transition: color 0.3s ease;
}

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

body.landing-page .footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

body.landing-page .cookie-notice {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 420px;
    background: var(--cookie-bg);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid var(--cookie-border);
}

body.landing-page .cookie-notice.cookie-notice-visible {
    opacity: 1;
    transform: translateY(0);
}

body.landing-page .cookie-notice-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

body.landing-page .cookie-notice-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

body.landing-page .cookie-notice-text i {
    color: var(--primary);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

body.landing-page .cookie-notice-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

body.landing-page .cookie-notice-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body.landing-page .cookie-notice-accept {
    background: var(--gradient-primary);
    color: white;
    flex: 1;
}

body.landing-page .cookie-notice-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--primary-shadow-soft);
}

body.landing-page .cookie-notice-close {
    background: transparent;
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid var(--border);
}

body.landing-page .cookie-notice-close:hover {
    background: var(--bg-section);
    color: var(--text-primary);
}

body.landing-page .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

body.landing-page .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    body.landing-page .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    body.landing-page .stats-grid.stats-compact {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Mobile Menu Toggle Button */
body.landing-page .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    margin-left: auto;
}

body.landing-page .mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

body.landing-page--dark .mobile-menu-toggle span {
    background: #ffffff;
}

body.landing-page .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

body.landing-page .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

body.landing-page .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 1024px) {
    body.landing-page .mobile-menu-toggle {
        display: flex;
    }
    
    body.landing-page .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--nav-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--nav-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        flex-direction: column;
        padding: 20px;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        display: flex;
    }
    
    body.landing-page--dark .nav-links {
        background: rgba(15, 15, 30, 0.98);
    }
    
    body.landing-page .nav-links.mobile-open {
        transform: translateX(0);
    }
    
    body.landing-page .nav-links li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    body.landing-page .nav-links li a {
        display: block;
        padding: 12px 16px;
        width: 100%;
        border-radius: 8px;
        margin: 4px 0;
    }
    
    body.landing-page .nav-links li a.btn {
        text-align: center;
        margin-top: 12px;
    }
    
    body.landing-page .nav-links .dropdown {
        position: static;
    }
    
    body.landing-page .nav-links .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    body.landing-page .nav-links .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin: 8px 0 0 16px;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    body.landing-page .nav-links .dropdown.active .dropdown-menu {
        display: block;
    }
    
    body.landing-page .nav-links .dropdown-menu li {
        margin: 4px 0;
    }
    
    body.landing-page .nav-links .dropdown-menu a {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    body.landing-page .nav-links .dropdown-divider {
        margin: 8px 0;
        height: 1px;
        background: var(--nav-border);
    }
    
    body.landing-page .hero {
        padding: 110px 0 60px;
    }
    body.landing-page .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    body.landing-page {
        padding-top: 72px;
    }
    body.landing-page .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    body.landing-page .stats-grid.stats-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    body.landing-page .stat-item {
        padding: 24px 16px;
    }
    body.landing-page .feature-grid,
    body.landing-page .process-grid,
    body.landing-page .testimonial-grid {
        grid-template-columns: 1fr;
    }
    body.landing-page .feature-grid.compact {
        grid-template-columns: 1fr;
    }
    body.landing-page .feature-card.compact {
        align-items: center;
    }
    body.landing-page .footer-content {
        grid-template-columns: 1fr;
    }
    body.landing-page .cookie-notice {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
    }
}

/* Landing Web specific */
body.landing-page--web .animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

body.landing-page--web .animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

body.landing-page--web .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

body.landing-page--web .orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

body.landing-page--web .orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -5%;
    left: -5%;
    animation-delay: -10s;
}

.statistics {
    padding: 80px 0;
}

.statistics-placeholder {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    padding: 32px 0;
}

.stat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 180px;
    flex: 1 1 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-card .stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: rgba(102, 126, 234, 0.15);
    color: var(--primary);
}

.stat-card.success .stat-icon {
    background: rgba(113, 190, 105, 0.15);
    color: #71be69;
}

.stat-card.error .stat-icon {
    background: rgba(245, 87, 108, 0.15);
    color: #f5576c;
}

.stat-content {
    display: grid;
    gap: 6px;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-change {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

body.landing-page--web .test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

body.landing-page--web .test-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

body.landing-page--web #webTestForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

body.landing-page--web #webTestForm .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.landing-page--web #webTestForm .form-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
}

body.landing-page--web #webTestForm input[type="url"] {
    width: 100%;
    background: rgba(15, 20, 40, 0.9);
    border: 1px solid rgba(102, 126, 234, 0.25);
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--text-primary);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

body.landing-page--web #webTestForm input[type="url"]::placeholder {
    color: rgba(226, 232, 240, 0.35);
}

body.landing-page--web #webTestForm input[type="url"]:focus {
    outline: none;
    border-color: rgba(129, 140, 248, 0.7);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

body.landing-page--web #webTestForm .form-check {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

body.landing-page--web #webTestForm .form-check-input {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(10, 12, 24, 0.9);
}

body.landing-page--web #webTestForm .btn {
    align-self: flex-start;
    padding: 14px 22px;
    gap: 10px;
    font-size: 15px;
}

body.landing-page--web #webTestStatus {
    margin-top: 18px;
    border-radius: 14px;
    padding: 14px 18px;
    display: none;
    font-size: 14px;
    font-weight: 500;
}

body.landing-page--web .test-log {
    background: rgba(10, 10, 20, 0.85);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 16px;
    padding: 18px;
    min-height: 260px;
    max-height: 360px;
    overflow-y: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #9ae6b4;
}

body.landing-page--web .test-preview {
    background: rgba(10, 10, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(226, 232, 240, 0.65);
    flex-direction: column;
    gap: 18px;
}

body.landing-page--web .test-preview i {
    font-size: 32px;
    color: rgba(226, 232, 240, 0.75);
}

body.landing-page--web .test-preview p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

body.landing-page--web #websitePlaceholderContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

body.landing-page--web #websiteScreenshot {
    display: none;
    width: 100%;
    max-width: 560px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

body.landing-page--web #websiteScreenshot[src] {
    object-fit: cover;
}

body.landing-page--web .progress-wrapper {
    display: none;
    width: 80%;
    max-width: 360px;
    margin: 20px auto 0;
}

body.landing-page--web .progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.8);
}

body.landing-page--web .progress-bar-enhanced {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
}

body.landing-page--web .progress-fill-enhanced {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

body.landing-page--web .advantages-section {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

body.landing-page--web .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

body.landing-page--web .advantage-card {
    background: rgba(17, 24, 39, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    padding: 28px 26px;
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

body.landing-page--web .advantage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 18px 36px -18px rgba(96, 165, 250, 0.65);
}

body.landing-page--web .competitors-section {
    padding: 90px 0;
    background: #0f172a;
}

body.landing-page--web .competitors-grid {
    display: grid;
    gap: 24px;
}

body.landing-page--web .competitors-grid--three {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

body.landing-page--web .competitor-card {
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

body.landing-page--web .competitor-card:hover {
    transform: translateY(-6px);
    border-color: rgba(129, 140, 248, 0.55);
}

/* Landing AI specific */
body.landing-page--ai {
    --primary: #667eea;
    --primary-dark: #5568d3;
    --secondary: #764ba2;
    --accent: #f093fb;
    --danger: #f5576c;
    --bg-main: #0f0f1e;
    --bg-section: #171c3a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #222238;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    --border: #2d3748;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(102, 126, 234, 0.15);
    --shadow-lg: 0 10px 40px rgba(102, 126, 234, 0.25);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --hero-bg: transparent;
    --hero-highlight: rgba(102, 126, 234, 0.25);
    --hero-underline: rgba(102, 126, 234, 0.3);
    --stats-banner-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --demo-section-bg: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --cta-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --nav-bg: rgba(15, 15, 30, 0.85);
    --nav-border: rgba(255, 255, 255, 0.05);
    --nav-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    --cookie-bg: rgba(23, 28, 58, 0.98);
    --cookie-border: rgba(102, 126, 234, 0.3);
    --primary-soft: rgba(102, 126, 234, 0.15);
    --primary-shadow-soft: rgba(102, 126, 234, 0.25);
    --primary-shadow-strong: rgba(102, 126, 234, 0.35);
    --primary-shadow-glow: rgba(102, 126, 234, 0.3);
}

body.landing-page--ai .stats {
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

body.landing-page--ai .stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.landing-page--ai .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

body.landing-page--ai .stat-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

body.landing-page--ai .case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

body.landing-page--ai .case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.landing-page--ai .case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

body.landing-page--ai .case-header {
    margin-bottom: 24px;
}

body.landing-page--ai .case-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

body.landing-page--ai .case-label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

body.landing-page--ai .case-problem,
body.landing-page--ai .case-result {
    border-left: 3px solid var(--primary);
    padding: 16px;
    border-radius: 8px;
    background: rgba(102, 126, 234, 0.08);
    margin-bottom: 20px;
}

body.landing-page--ai .case-problem {
    border-color: #f5576c;
    background: rgba(245, 87, 108, 0.08);
}

body.landing-page--ai .case-result {
    border-color: var(--primary);
    background: rgba(102, 126, 234, 0.1);
}

body.landing-page--ai .case-problem h4,
body.landing-page--ai .case-result h4 {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

body.landing-page--ai .case-result p {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

body.landing-page--ai .case-solution {
    margin-bottom: 20px;
}

body.landing-page--ai .case-solution h4 {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

body.landing-page--ai .case-solution ul {
    list-style: none;
    padding: 0;
}

body.landing-page--ai .case-solution li {
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

body.landing-page--ai .case-solution li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

body.landing-page--ai .code-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    margin-top: 40px;
}

body.landing-page--ai .code-block pre {
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #e2e8f0;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

.nav-container .nav-links .btn.btn-primary{
    color:white;
}

.cta-section a{
    color:white !important;
}

/* Language Switcher Button */
body.landing-page .language-switcher-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid var(--nav-border);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 10px;
    flex-shrink: 0;
}

body.landing-page .language-switcher-btn:hover {
    background: var(--bg-card);
    border-color: var(--primary);
    color: var(--primary);
}

body.landing-page .language-switcher-btn i {
    font-size: 16px;
}
/* Contact Page */
.contact-page nav {
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(16px);
}

.contact-hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: radial-gradient(circle at top left, rgba(102, 126, 234, 0.18), transparent 45%),
              radial-gradient(circle at top right, rgba(118, 75, 162, 0.16), transparent 40%),
              var(--landing-background, #0f172a);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: stretch;
}

.contact-intro h1 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin: 16px 0;
  color: #f8fafc;
  line-height: 1.15;
}

.contact-intro p {
  max-width: 560px;
  color: rgba(226, 232, 240, 0.85);
}

.contact-highlights {
  margin: 32px 0;
  display: grid;
  gap: 18px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 16px;
  backdrop-filter: blur(14px);
}

.highlight-item i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.4));
  color: #fff;
  font-size: 18px;
}

.highlight-item strong {
  display: block;
  color: #f9fbff;
  margin-bottom: 4px;
}

.highlight-item p {
  margin: 0;
  color: rgba(226, 232, 240, 0.92);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 28px;
  color: rgba(226, 232, 240, 0.8);
}

.contact-details div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.contact-details a {
  color: #c3dafe;
}

.contact-card {
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(14px);
}

.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card .form-header h2 {
  margin: 0;
  font-size: 1.8rem;
  color: #f8fafc;
}

.contact-card .form-header p {
  margin: 8px 0 0;
  color: rgba(226, 232, 240, 0.75);
}

.contact-card label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.9);
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.65);
  color: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  border-color: rgba(99, 102, 241, 0.7);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
  outline: none;
}

.contact-card textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-alert {
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 500;
  display: none;
}

.contact-alert.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.contact-alert.error {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #fca5a5;
}

#contactSubmitBtn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 210px;
  position: relative;
}

#contactSubmitBtn .btn-loader {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#contactSubmitBtn .btn-label {
  transition: opacity 0.15s ease;
}

.contact-extra {
  background: #0b1220;
  padding: 80px 0;
}

.contact-extra-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-extra-card {
  border-radius: 20px;
  padding: 28px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-extra-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.35);
}

.contact-extra-card i {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
  color: #d6bcfa;
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-extra-card h3 {
  color: #f8fafc;
  margin-bottom: 12px;
}

.contact-extra-card p {
  color: rgba(226, 232, 240, 0.75);
  margin-bottom: 18px;
}

.contact-extra-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a5b4fc;
  font-weight: 600;
}

.contact-extra-link::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: transform 0.2s ease;
}

.contact-extra-link:hover::after {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-details {
    flex-direction: column;
  }
}

.contact-highlights .highlight-item p{
    color:#eee !important;
    margin: 0 !important;
}
.contact-intro h1{
    font-size: clamp(42px, 6vw, 58px) !important;
}
.contact-details .fas.fa-envelope{
    color:gray;
}

.contact-details .fas.fa-paper-plane{
    color:gray;
}
#contactForm p{
    color:#eee !important;
    margin: 0 !important;
}