/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #00d4ff;
    --secondary: #6366f1;
    --accent: #22d3ee;
    --bg-dark: #0a0e27;
    --bg-darker: #060818;
    --bg-gradient: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;
    
    /* Effects */
    --glow: 0 0 20px rgba(0, 212, 255, 0.3);
    --glow-strong: 0 0 40px rgba(0, 212, 255, 0.5);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

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

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-bottom: 1px solid var(--glass-border);
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

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

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu a:hover {
    background: var(--glass-bg);
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-border);
    border-color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--glass-bg);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.15;
    filter: blur(2px) grayscale(30%);
    clip-path: inset(0 0 5% 0);
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(15, 23, 42, 0.75) 100%
    );
    z-index: 1;
}

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

/* Mobile optimization - disable video on small screens */
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }
     .container {
        padding: 0 20px;
    }

}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-left: 16px;
    color: #0077b5; /* LinkedIn blue */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.linkedin-link:hover {
    background: #0077b5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.linkedin-link svg {
    width: 20px;
    height: 20px;
}


.mobile-linkedin {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: #0077b5;
    background: rgba(0, 119, 181, 0.1);
    border-radius: 8px;
    margin-top: 8px;
    font-weight: 600;
}

.mobile-linkedin:hover {
    background: #0077b5;
    color: white;
}

.mobile-linkedin svg {
    width: 20px;
    height: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

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



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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(0, 212, 255, 0);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

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

/* ===================================
   TRUST SIGNALS
   =================================== */
.trust-signals {
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* ===================================
   GLASS CARDS
   =================================== */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.15);
}

/* ===================================
   SECTIONS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

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

/* ===================================
   PROBLEM/SOLUTION SECTION
   =================================== */
.problem-solution {
    padding: var(--section-padding);
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon.danger {
    background: rgba(255, 68, 68, 0.1);
    color: #ff4444;
}

.card-icon.success {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
}

.problem-card h3,
.solution-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.problem-list,
.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-list li,
.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    position: relative;
    text-align: center;
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-color: rgba(0, 212, 255, 0.3);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 15px;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 14px;
    border-bottom: 1px solid var(--glass-border);
}

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

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    padding-top: 20px;
    border-top: 2px solid var(--glass-border);
}

.pricing-btn {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.pricing-btn:active {
    transform: translateY(0);
}

/* ===================================
   CVAT SECTION
   =================================== */
.cvat-section {
    padding: var(--section-padding);
    background: rgba(0, 0, 0, 0.2);
}

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

.cvat-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cvat-description {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.cvat-description strong {
    color: var(--primary);
}

.cvat-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cvat-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.cvat-card {
    text-align: center;
    padding: 60px 40px;
}

.cvat-logo {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    letter-spacing: 4px;
}

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

.cvat-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.cvat-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process {
    padding: var(--section-padding);
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 80px;
}

.process-step {
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(0, 212, 255, 0.1);
    z-index: -1;
}

.step-card {
    position: relative;
    padding-left: 120px;
}

.step-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

.step-icon {
    position: absolute;
    left: 40px;
    top: 40px;
    width: 64px;
    height: 64px;
    background: var(--glass-bg);
    border-radius: 16px;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-connector {
    position: absolute;
    left: 71px;
    top: 120px;
    width: 2px;
    height: calc(100% + 60px);
    background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
}

.process-step:last-child .step-connector {
    display: none;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    
    .process-step {
        margin-bottom: 0;
    }
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing {
    padding: var(--section-padding);
}

.pricing-table {
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

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

.pricing-table th {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

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

.pricing-table .highlight-column {
    background: rgba(0, 212, 255, 0.05);
    color: var(--text-primary);
}

.pricing-table tbody tr:hover {
    background: var(--glass-bg);
}

.savings-calculator {
    margin: 60px 0;
}

.calculator-card {
    max-width: 700px;
    margin: 0 auto;
}

.calculator-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.input-group input,
.input-group select {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.calculator-results {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 24px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.result-row.savings {
    padding-top: 20px;
    margin-top: 12px;
    border-top: 2px solid var(--primary);
}

.result-value {
    font-size: 24px;
    font-weight: 700;
}

.result-value.highlight {
    color: var(--primary);
}

.pricing-features {
    text-align: center;
    margin-top: 60px;
}

.pricing-features h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.pricing-content {
    text-align: justify;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.pricing-contact-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}


.pricing-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.pricing-contact-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .pricing-content {
        padding: 40px 20px; /* Reduce padding */
        max-width: 100%;
    }
    
    .pricing-text {
        font-size: 16px; /* Smaller text */
        margin-bottom: 24px;
    }
    
    .pricing-contact-btn {
        width: 100%; /* Full width button */
        padding: 14px 32px;
        font-size: 16px;
    }
}





/* ===================================
   INDUSTRIES SECTION
   =================================== */
.about-us {
    padding: var(--section-padding);
    background: rgba(0, 0, 0, 0.2);
}

.member-role {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    margin: 1rem 0 0.5rem 0;
}

.member-bio {
    font-size: 0.9rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1rem 0;
    padding: 0 0.5rem;
    text-align: left;
}

.member-email {
    margin-top: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 1rem 0;
    overflow: hidden;
    border-radius: 50; /* circular photo */
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    
}

.team-member:hover .photo-placeholder {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    transform: scale(1.05);
}

.member-email {
    color: var(--primary);
    font-size: 16px;
    word-break: break-word;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: var(--section-padding);
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    cursor: pointer;
    padding: 28px;
    transition: all 0.3s ease;
}

.faq-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

.faq-card.active .faq-answer {
    max-height: 300px;
    margin-top: 16px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--section-padding);
    background: rgba(0, 0, 0, 0.2);
}

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

.contact-info h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.method {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-weight: 600;
}

.contact-form-card {
    padding: 48px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    width: 100%;
    justify-content: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 32px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    border: 1px solid var(--primary);
}

.form-success.active {
    display: block;
}

.form-success svg {
    margin: 0 auto 16px;
}

.form-success p {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr; /* Single column */
        gap: 32px;
    }
    
    .contact-info {
        order: 1; /* Info first */
    }
    
    .contact-form-card {
        order: 2; /* Form second */
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr; /* Stack form fields */
        gap: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    max-width: 300px;
}

.footer-links {
    display: contents;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 24px;
    align-items: center;
}


/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .section-grid,
    .cvat-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        padding-left: 0;
        padding-top: 80px;
    }
    
    .step-icon {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
    }
    
    .step-number {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-connector {
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
    }
    
    .calculator-inputs,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .trust-badges {
        gap: 30px;
    }
    
    .pricing-table {
        font-size: 14px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .glass-card {
        padding: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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