/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Color Palette - Cyber/Tech Theme */
    --primary-color: #3b82f6;
    /* Electric Blue */
    --primary-dark: #1d4ed8;
    --secondary-color: #8b5cf6;
    /* Violet */
    --accent-color: #06b6d4;
    /* Cyan */
    --bg-dark: #0f172a;
    /* Slate 900 */
    --bg-darker: #020617;
    /* Slate 950 */
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-glow: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(15, 23, 42, 0) 70%);

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.5);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-main);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    width: 30px;
    height: 30px;
}

/* =========================================
   2. HEADER & NAV
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-fast);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.desktop-nav .nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    width: 200px;
    padding: 10px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.dropdown-trigger:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 8px 12px;
    color: var(--text-muted);
    border-radius: 4px;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.dropdown-menu li a::after {
    display: none;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-main);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button i {
    transition: transform 0.3s;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.glow-effect {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1002;
}

.bar {
    width: 100%;
    height: 2px;
    background: var(--text-main);
    position: absolute;
    transition: 0.3s;
}

.bar.top {
    top: 0;
}

.bar.mid {
    top: 50%;
    transform: translateY(-50%);
}

.bar.bot {
    bottom: 0;
}

.mobile-menu-btn.active .bar.top {
    top: 50%;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .bar.mid {
    opacity: 0;
}

.mobile-menu-btn.active .bar.bot {
    bottom: 50%;
    transform: rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-darker);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-links {
    text-align: center;
}

.mobile-links li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.mobile-nav-overlay.active .mobile-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-links a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
}

.mobile-links a:hover {
    color: var(--primary-color);
}

.mobile-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.mobile-socials a {
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
    animation: floatOrb 10s infinite alternate;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: 10%;
    right: -50px;
    animation: floatOrb 8s infinite alternate-reverse;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-main);
}

.trust-metrics {
    display: flex;
    gap: 20px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.metric-item h3 {
    font-size: 1.5rem;
    color: var(--text-main);
}

.metric-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.metric-divider {
    width: 1px;
    background: var(--border-color);
}

/* 3D Card Animation */
.card-3d-wrap {
    perspective: 1000px;
    width: 100%;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-3d-content {
    width: 350px;
    height: 350px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.5s;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: hoverCard 6s ease-in-out infinite;
}

@keyframes hoverCard {

    0%,
    100% {
        transform: rotateY(-15deg) rotateX(10deg) translateY(0);
    }

    50% {
        transform: rotateY(-15deg) rotateX(10deg) translateY(-20px);
    }
}

.dashboard-preview {
    padding: 20px;
}

.dash-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.graph-area {
    height: 150px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.graph-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2));
}

.graph-line::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    transform: rotate(-5deg);
}

.stats-row {
    display: flex;
    justify-content: space-between;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 6px;
    width: 48%;
}

.stat-box span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-box strong {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bg-darker);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    font-size: 1.2rem;
    transform: translateZ(30px);
}

.icon-1 {
    top: -20px;
    left: -20px;
    color: #DB4437;
    animation: floatIcon 4s infinite 0s;
}

.icon-2 {
    bottom: 40px;
    right: -30px;
    color: #4267B2;
    animation: floatIcon 4s infinite 1s;
}

.icon-3 {
    top: 40%;
    right: -40px;
    color: #0F9D58;
    animation: floatIcon 4s infinite 2s;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateZ(30px) translateY(0);
    }

    50% {
        transform: translateZ(30px) translateY(-10px);
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-down span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-main);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* =========================================
   4. SERVICES SECTION
   ========================================= */
.services-section {
    background: var(--bg-darker);
}

.section-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 16px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-list {
    margin-bottom: 25px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.service-list li i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more:hover {
    gap: 10px;
}

/* =========================================
   5. CALCULATOR SECTION
   ========================================= */
.calculator-section {
    position: relative;
    overflow: hidden;
}

.section-bg-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    z-index: -1;
}

.calc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calc-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.calc-benefits {
    margin: 30px 0;
}

.calc-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.calc-benefits i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.calc-tool.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input[type="number"] {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
}

.form-group input[type="range"] {
    width: 100%;
    margin-top: 10px;
    accent-color: var(--primary-color);
}

.calc-results {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.result-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.result-item span {
    color: var(--text-muted);
}

.result-item strong {
    font-size: 1.2rem;
}

.result-item.highlight strong {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* =========================================
   6. INDUSTRIES TABS
   ========================================= */
.industries-section {
    background: var(--bg-dark);
}

.industry-tabs {
    margin-top: 50px;
    display: flex;
    gap: 40px;
}

.tab-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 30%;
}

.tab-btn {
    background: transparent;
    border: none;
    text-align: left;
    padding: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tab-btn i {
    width: 20px;
}

.tab-btn.active,
.tab-btn:hover {
    background: rgba(59, 130, 246, 0.05);
    border-left-color: var(--primary-color);
    color: var(--text-main);
}

.tab-content-wrapper {
    width: 70%;
    position: relative;
}

.tab-pane {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    animation: fadeIn 0.5s ease;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.tab-pane.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pane-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.pane-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.large-icon {
    font-size: 6rem;
    color: rgba(59, 130, 246, 0.2);
}

/* =========================================
   7. TESTIMONIALS
   ========================================= */
.testimonials-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f172a 100%);
    position: relative;
}

.testimonial-slider {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.review-text {
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
}

.details {
    text-align: left;
}

.details h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.details span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-controls button {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-controls button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* =========================================
   8. CTA & FOOTER
   ========================================= */
.cta-box {
    background: var(--gradient-main);
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.large-btn {
    background: #fff;
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 1.1rem;
}

.large-btn:hover {
    background: var(--text-main);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-top {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 35px;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.brand-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
    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;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #fff;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    background: #020617;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a:hover {
    color: var(--primary-color);
}

/* =========================================
   9. LEGAL & CONTACT PAGE STYLES
   ========================================= */
.legal-page main,
.contact-page main {
    padding-top: 120px;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 80px;
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
}

/* Contact Form Specifics */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info-panel h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 12px;
    border-radius: 8px;
    font-family: var(--font-body);
    resize: vertical;
}

/* =========================================
   10. MEDIA QUERIES
   ========================================= */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .card-3d-wrap {
        display: none;
        /* Simplify for tablet */
    }

    .calc-wrapper {
        grid-template-columns: 1fr;
    }

    .industry-tabs {
        flex-direction: column;
    }

    .tab-buttons {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
    }

    .tab-content-wrapper {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .desktop-nav,
    .header-actions .cta-button {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-metrics {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .metric-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .bottom-content {
        flex-direction: column;
        gap: 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 20px;
    }
}