/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Colors - Nebula Theme */
    --bg-dark: #05070F;
    --bg-panel: #0B1224;
    --bg-card: rgba(18, 25, 43, 0.7);
    --bg-card-hover: rgba(25, 35, 60, 0.8);

    --primary-gradient: linear-gradient(135deg, #00D4FF 0%, #6D28D9 100%);
    --secondary-gradient: linear-gradient(135deg, #22C55E 0%, #00E5FF 100%);
    --text-gradient: linear-gradient(90deg, #fff 0%, #a5b4fc 100%);

    --accent-cyan: #00D4FF;
    --accent-violet: #6D28D9;
    --accent-green: #22C55E;

    --text-main: #FFFFFF;
    --text-muted: #94A3B8;
    --text-dark: #0F172A;

    --border-light: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 212, 255, 0.3);

    /* Fonts */
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   2. UTILITIES & TYPOGRAPHY
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.small-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.gradient-text-2 {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--accent-cyan);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    opacity: 0.5;
}

/* =========================================
   3. BACKGROUND NEBULA EFFECTS
   ========================================= */
.nebula-bg-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.nebula-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatBlob 20s infinite alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-violet);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: var(--accent-cyan);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-green);
    top: 40%;
    left: 40%;
    opacity: 0.2;
    animation-duration: 30s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--border-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* =========================================
   4. BUTTONS & COMPONENTS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    gap: 10px;
    z-index: 1;
}

.btn-primary {
    background: transparent;
    color: white;
    border: 1px solid transparent;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: var(--primary-gradient);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    display: flex;
}

/* Carbon Card Style */
.carbon-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.carbon-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--primary-gradient);
    filter: blur(60px);
    opacity: 0;
    top: -50px;
    left: -50px;
    transition: var(--transition-smooth);
    border-radius: 50%;
}

.carbon-card:hover .card-glow {
    opacity: 0.2;
}

/* =========================================
   5. HEADER & NAV
   ========================================= */
.main-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header.scrolled {
    background: rgba(5, 7, 15, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.logo-img {
    height: 65px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    transition: all 0.2s;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    transition: all 0.2s;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 0;
    background: var(--bg-dark);
    z-index: 999;
    overflow: hidden;
    transition: height 0.4s ease;
}

.mobile-menu-overlay.open {
    height: calc(100vh - var(--header-height));
}

.mobile-links {
    padding: 40px;
    text-align: center;
}

.mobile-links li {
    margin-bottom: 25px;
}

.mobile-links a {
    font-size: 1.5rem;
    font-weight: 700;
}

/* =========================================
   6. HERO SECTION
   ========================================= */
.hero-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.trust-indicators {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.trust-indicators span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.logos-row {
    display: flex;
    gap: 30px;
    font-size: 1.8rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* CSS 3D Cube Animation */
.tech-cube-container {
    width: 300px;
    height: 300px;
    position: relative;
    margin: 0 auto;
    perspective: 1000px;
}

.cube {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    animation: rotateCube 15s infinite linear;
}

.face {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.face.front {
    transform: translateZ(150px);
}

.face.back {
    transform: rotateY(180deg) translateZ(150px);
}

.face.right {
    transform: rotateY(90deg) translateZ(150px);
}

.face.left {
    transform: rotateY(-90deg) translateZ(150px);
}

.face.top {
    transform: rotateX(90deg) translateZ(150px);
}

.face.bottom {
    transform: rotateX(-90deg) translateZ(150px);
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.ring-1 {
    width: 400px;
    height: 400px;
    animation: wobble 8s infinite ease-in-out;
}

.ring-2 {
    width: 500px;
    height: 500px;
    animation: wobble 12s infinite ease-in-out reverse;
}

@keyframes rotateCube {
    0% {
        transform: rotateX(0) rotateY(0);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@keyframes wobble {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05) rotate(5deg);
    }
}

/* Floating Stats Cards */
.floating-card {
    position: absolute;
    background: rgba(11, 18, 36, 0.9);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 5;
}

.stat-card-1 {
    top: 20px;
    left: -50px;
    animation: float1 6s infinite ease-in-out;
}

.stat-card-2 {
    bottom: 50px;
    right: -20px;
    animation: float1 7s infinite ease-in-out reverse;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.icon-box.green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
}

.floating-card h5 {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.floating-card strong,
.floating-card span {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.scroll-down-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 6px;
    background: white;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* =========================================
   7. STATS BAR
   ========================================= */
.stats-bar {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   8. SERVICES
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-icon.color-2 {
    background: rgba(109, 40, 217, 0.1);
    color: var(--accent-violet);
}

.service-icon.color-3 {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
}

.service-icon.color-4 {
    background: rgba(244, 63, 94, 0.1);
    color: #F43F5E;
}

.service-icon.color-5 {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.service-icon.color-6 {
    background: rgba(236, 72, 153, 0.1);
    color: #EC4899;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.feature-list i {
    color: var(--accent-cyan);
    font-size: 0.8rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-weight: 600;
    color: var(--accent-cyan);
    font-size: 0.9rem;
}

.learn-more:hover {
    gap: 12px;
}

/* =========================================
   9. ROI CALCULATOR
   ========================================= */
.roi-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.roi-content .section-title {
    font-size: 2.5rem;
}

.roi-benefits {
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.benefit-item i {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.roi-calculator-card {
    padding: 40px;
}

.calc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #FF4444;
    border-radius: 50%;
    box-shadow: 0 0 10px #FF4444;
    animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.input-group input[type="number"] {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-family: var(--font-body);
    margin-bottom: 10px;
}

.input-group input[type="range"] {
    width: 100%;
    cursor: pointer;
    accent-color: var(--accent-cyan);
}

.calc-results {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.total-row {
    border-top: 1px solid var(--border-light);
    padding-top: 10px;
    margin-top: 10px;
    font-size: 1.1rem;
}

/* =========================================
   10. PROCESS SECTION
   ========================================= */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 50px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.timeline-item.right {
    justify-content: flex-end;
}

.timeline-content {
    width: 45%;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--bg-dark);
    border: 3px solid var(--accent-cyan);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 15px var(--accent-cyan);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

/* =========================================
   11. TESTIMONIALS
   ========================================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-violet);
    margin-bottom: 20px;
    opacity: 0.5;
}

.t-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.t-avatar.color-2 {
    background: var(--secondary-gradient);
}

.t-avatar.color-3 {
    background: linear-gradient(135deg, #F59E0B, #F43F5E);
}

.t-author h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.t-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =========================================
   12. FAQ
   ========================================= */
.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    padding: 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* =========================================
   13. CTA
   ========================================= */
.cta-section {
    padding-bottom: 100px;
}

.cta-card {
    position: relative;
    padding: 80px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle at center, #1e293b 0%, #0B1224 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* =========================================
   14. FOOTER
   ========================================= */
.main-footer {
    background: #02040a;
    padding-top: 80px;
    position: relative;
    border-top: 1px solid var(--border-light);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    box-shadow: 0 0 30px var(--accent-cyan);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.about-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent-cyan);
    transform: translateY(-3px);
}

.contact-list li {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-list i {
    color: var(--accent-cyan);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a:hover {
    color: white;
    text-decoration: underline;
}

/* =========================================
   15. RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero-buttons,
    .logos-row {
        justify-content: center;
    }

    .tech-cube-container {
        transform: scale(0.8);
    }

    .roi-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .desktop-nav,
    .header-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .process-timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item.right {
        justify-content: flex-start;
    }

    .timeline-content {
        width: 85%;
        margin-left: 50px;
    }

    .timeline-dot {
        left: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: 0.8s;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: 0.8s;
}

.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Legal Page Specifics */
.legal-page-wrap {
    padding-top: 150px;
    padding-bottom: 100px;
}

.legal-title {
    font-size: 3rem;
    margin-bottom: 40px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--accent-cyan);
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Contact Page Specifics */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-form-wrap {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: white;
}

@media (max-width: 768px) {
    .contact-split {
        grid-template-columns: 1fr;
    }
}