/* ==========================================================================
   DOMAINNAME - DIGITAL MARKETING CSS ARCHITECTURE
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & THEMING
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette - Dark Tech Theme */
    --color-bg: #070B14;
    --color-bg-alt: #0D1424;
    --color-surface: #131C31;
    --color-surface-hover: #1A2642;
    --color-primary: #3A86FF;
    --color-primary-glow: rgba(58, 134, 255, 0.4);
    --color-secondary: #8338EC;
    --color-accent: #FF006E;

    /* Text Colors */
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --text-dark: #0F172A;

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Layout */
    --container-width: 1280px;
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-Index */
    --z-back: -1;
    --z-normal: 1;
    --z-above: 10;
    --z-header: 100;
    --z-modal: 1000;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--color-primary);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-surface);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & UTILITIES
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-padding {
    padding: var(--space-xl) 0;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: var(--space-sm);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto var(--space-lg);
}

/* --------------------------------------------------------------------------
   4. BUTTONS & FORMS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(131, 56, 236, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    background: rgba(7, 11, 20, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.header.scrolled {
    padding: 0;
    background: rgba(7, 11, 20, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1rem var(--space-md);
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo, .footer-logo {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
    filter: brightness(1) invert(1);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown-trigger {
    cursor: pointer;
}

.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-surface);
    min-width: 220px;
    border-radius: var(--radius-md);
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background: white;
    left: 0;
    transition: var(--transition-normal);
}

.bar-1 {
    top: 0;
}

.bar-2 {
    top: 50%;
    transform: translateY(-50%);
}

.bar-3 {
    bottom: 0;
}

.mobile-toggle.active .bar-1 {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-toggle.active .bar-2 {
    opacity: 0;
}

.mobile-toggle.active .bar-3 {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    visibility: hidden;
}

.mobile-nav.active {
    visibility: visible;
}

.mobile-nav-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.mobile-nav.active .mobile-nav-backdrop {
    opacity: 1;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: var(--color-surface);
    padding: 80px 2rem 2rem;
    transition: right var(--transition-normal);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav.active .mobile-nav-content {
    right: 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-link {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    display: block;
    color: white;
}

.mobile-cta-wrapper {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-btn {
    width: 100%;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at top right, rgba(58, 134, 255, 0.1), transparent 50%),
        radial-gradient(circle at bottom left, rgba(131, 56, 236, 0.1), transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 0, 110, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 110, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 110, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 110, 0);
    }
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btn-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-bg);
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.stars {
    color: #FFD166;
    letter-spacing: 2px;
}

/* Hero 3D Isometric Visuals */
.hero-visual {
    position: relative;
    perspective: 1000px;
    height: 500px;
}

.iso-mockup {
    position: relative;
    width: 100%;
    height: 100%;
    transform: rotateX(15deg) rotateY(-25deg);
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: rotateX(15deg) rotateY(-25deg) translateY(0);
    }

    50% {
        transform: rotateX(15deg) rotateY(-25deg) translateY(-20px);
    }
}

.iso-card {
    position: absolute;
    background: rgba(19, 28, 49, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: -20px 20px 30px rgba(0, 0, 0, 0.5);
}

.card-1 {
    width: 250px;
    top: 20%;
    left: 10%;
    transform: translateZ(50px);
}

.card-2 {
    width: 280px;
    top: 50%;
    right: 0;
    transform: translateZ(100px);
}

.card-header {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.card-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
}

.card-chart .bar {
    flex: 1;
    background: linear-gradient(to top, var(--color-primary), rgba(58, 134, 255, 0.2));
    border-radius: 3px 3px 0 0;
    animation: growBar 2s ease-out forwards;
    transform-origin: bottom;
}

@keyframes growBar {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.card-metric {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #06D6A0;
    margin-bottom: 0.5rem;
}

.iso-element {
    position: absolute;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    filter: blur(40px);
    z-index: -1;
    opacity: 0.5;
}

.circle-element {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: 10%;
    right: 10%;
    transform: translateZ(-50px);
}

.triangle-element {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 20%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    transform: translateZ(0);
}

/* --------------------------------------------------------------------------
   7. PARTNERS MARQUEE
   -------------------------------------------------------------------------- */
.partners-section {
    background: var(--color-surface);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    padding: 0 3rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --------------------------------------------------------------------------
   8. ABOUT & STATS
   -------------------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    background: var(--color-bg-alt);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--color-primary-glow);
    top: -50px;
    left: -50px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(131, 56, 236, 0.3);
    bottom: -50px;
    right: -50px;
}

.glass-panel {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.glass-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.glass-panel p {
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-box {
    padding: 1.5rem;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
    transition: var(--transition-normal);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--color-secondary);
}

.stat-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   9. CORE SERVICES (3D FLIP)
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.flip-card {
    background-color: transparent;
    height: 350px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-card-front {
    background-color: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(58, 134, 255, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 30px;
    height: 30px;
}

.flip-card-front h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.flip-card-front p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.flip-card-back {
    background: linear-gradient(135deg, var(--color-surface), var(--color-bg-alt));
    border: 1px solid var(--color-primary);
    transform: rotateY(180deg);
}

.flip-card-back h3 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.flip-card-back ul {
    text-align: left;
    margin-bottom: 2rem;
}

.flip-card-back li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --------------------------------------------------------------------------
   10. CALCULATOR
   -------------------------------------------------------------------------- */
.calculator-section {
    position: relative;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.calc-sidebar {
    padding: 3rem;
    background: linear-gradient(to bottom right, rgba(58, 134, 255, 0.1), transparent);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.calc-sidebar h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.calc-sidebar p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.calc-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calc-feat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.calc-feat svg {
    color: #06D6A0;
    width: 20px;
    height: 20px;
}

.calc-body {
    padding: 3rem;
}

.calc-input-group {
    margin-bottom: 2rem;
}

.calc-input-group label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 500;
    font-family: var(--font-heading);
}

.calc-input-group label span {
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* Custom Range Slider */
.custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(58, 134, 255, 0.5);
    transition: transform 0.1s;
}

.custom-slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
}

.custom-select {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    appearance: none;
}

.custom-select option {
    background: var(--color-bg);
    color: white;
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result-box {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-box.highlight {
    background: rgba(58, 134, 255, 0.1);
    border-color: rgba(58, 134, 255, 0.3);
    transform: scale(1.05);
}

.result-box h4 {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.result-val {
    font-size: 1.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   11. DASHBOARD MOCKUP
   -------------------------------------------------------------------------- */
.dash-mockup {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.dash-header {
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: 1rem;
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FF5F56;
}

.dash-dots span:nth-child(2) {
    background: #FFBD2E;
}

.dash-dots span:nth-child(3) {
    background: #27C93F;
}

.dash-url {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
    flex: 1;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.dash-body {
    display: flex;
    height: 400px;
}

.dash-sidebar {
    width: 80px;
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    gap: 1.5rem;
}

.dash-menu-item {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.dash-menu-item.active {
    background: var(--color-primary);
}

.dash-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dash-top-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dash-metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: var(--radius-sm);
}

.metric-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.pos-trend {
    font-size: 0.75rem;
    color: #06D6A0;
}

.dash-chart-area {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.dash-chart-area h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.css-chart {
    flex: 1;
    display: flex;
    gap: 1rem;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: right;
    width: 40px;
    padding-bottom: 20px;
}

.chart-bars {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 1rem;
    position: relative;
}

.chart-bar {
    width: 10%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.bar-fill {
    width: 100%;
    background: linear-gradient(to top, rgba(58, 134, 255, 0.5), var(--color-primary));
    border-radius: 2px 2px 0 0;
    height: 0;
    /* Animated via JS or IntersectionObserver */
    transition: height 1.5s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.chart-bar span {
    position: absolute;
    bottom: -25px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. INDUSTRY TABS
   -------------------------------------------------------------------------- */
.tabs-header {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-normal);
}

.tab-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.tab-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(58, 134, 255, 0.4);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--color-surface);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tab-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

/* FIX FOR MASSIVE CHECKMARK ICONS */
.check-list li svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.tab-image {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-md);
    background: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.mock-img {
    position: absolute;
    inset: 10%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ecom-img {
    background: linear-gradient(45deg, #131C31, #3A86FF);
}

.b2b-img {
    background: linear-gradient(45deg, #131C31, #8338EC);
}

.local-img {
    background: linear-gradient(45deg, #131C31, #FF006E);
}

.health-img {
    background: linear-gradient(45deg, #131C31, #06D6A0);
}

/* --------------------------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testi-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testi-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.testi-card {
    min-width: calc(33.333% - 1.33rem);
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
}

.testi-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.slide-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slide-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   14. CTA SECTION
   -------------------------------------------------------------------------- */
.cta-box {
    position: relative;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--color-surface), #1a1625);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(131, 56, 236, 0.3);
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(58, 134, 255, 0.15), transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(131, 56, 236, 0.15), transparent 40%);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--color-primary);
}

.cta-subtext {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background: #04070c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-links a svg {
    width: 18px;
    height: 18px;
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-list svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   16. LIVE CHAT WIDGET
   -------------------------------------------------------------------------- */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: var(--z-modal);
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(58, 134, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-toggle svg {
    width: 28px;
    height: 28px;
    position: absolute;
    transition: var(--transition-fast);
}

.icon-close {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

.chat-widget.active .icon-open {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

.chat-widget.active .icon-close {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.chat-widget.active .chat-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: linear-gradient(135deg, var(--color-surface-hover), var(--color-bg-alt));
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #06D6A0;
    border-radius: 50%;
}

.chat-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-body {
    height: 300px;
    padding: 1.5rem;
    overflow-y: auto;
    background: var(--color-bg);
}

.chat-message {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border-top-left-radius: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.chat-input-area {
    padding: 1rem;
    background: var(--color-surface);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 0.5rem;
}

.chat-input-area input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    color: white;
    outline: none;
}

.chat-input-area button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chat-input-area button svg {
    width: 18px;
    height: 18px;
}

/* --------------------------------------------------------------------------
   17. LEGAL & SUBPAGES (Privacy, Terms, Disclaimer, Contact)
   -------------------------------------------------------------------------- */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(180deg, rgba(58, 134, 255, 0.05), transparent);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.breadcrumbs {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--color-primary);
}

.breadcrumbs svg {
    width: 12px;
    height: 12px;
    margin: 0 5px;
}

/* Legal Content Area */
.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: 4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.content-wrapper h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--color-primary);
}

.content-wrapper p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.content-wrapper ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

/* Contact Page Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-panel h2,
.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info-panel p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(58, 134, 255, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon svg {
    width: 24px;
    height: 24px;
}

.method-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.method-details p {
    margin: 0;
    color: var(--text-muted);
}

.contact-form {
    background: var(--color-surface);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-family: inherit;
    outline: none;
    transition: var(--transition-fast);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--color-surface);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

/* --------------------------------------------------------------------------
   18. ANIMATIONS & SCROLL REVEALS
   -------------------------------------------------------------------------- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease-out;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.active.reveal-up,
.active.reveal-left,
.active.reveal-right,
.active.reveal-scale {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* --------------------------------------------------------------------------
   19. MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-badge {
        margin: 0 auto 1.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-btn-group {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .about-grid,
    .tab-grid,
    .calculator-wrapper,
    .footer-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .calc-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .testi-card {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {

    .nav-main,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dash-body {
        flex-direction: column;
        height: auto;
    }

    .dash-sidebar {
        width: 100%;
        height: 60px;
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 0;
        justify-content: center;
    }

    .dash-top-metrics {
        grid-template-columns: 1fr;
    }

    .calc-results {
        grid-template-columns: 1fr;
    }

    .testi-card {
        min-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .iso-mockup {
        transform: scale(0.7) rotateX(15deg) rotateY(-25deg);
    }

    .contact-form {
        padding: 1.5rem;
    }

    .chat-box {
        width: calc(100vw - 40px);
        right: -20px;
    }
}