/* ================= VARIABLES ================= */
:root {
    /* Color Palette */
    --primary: #f0b429;
    --primary-dark: #d69e04;
    --primary-darker: #b68502;
    --primary-light: #f7c352;
    --secondary: #ffd166;
    --secondary-light: #ffdf94;
    --accent: #ffba08;
    --accent-dark: #e0a607;
    --yellow-dark: #8f6900;
    --yellow-light: #ffc845;
    --amber: #ffaa00;
    --amber-dark: #cc8800;
    --dark: #1a2e35;
    --light: #f8f9fc;
    --white: #ffffff;
    --black: #121212;
    --text: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --border: #e8e8e8;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #f0b429 0%, #f7c352 100%);
    --gradient-primary-hover: linear-gradient(135deg, #d69e04 0%, #f0b429 100%);
    --gradient-secondary: linear-gradient(135deg, #ffba08 0%, #ffdf94 100%);
    --gradient-accent: linear-gradient(135deg, #ffba08 0%, #ffd580 100%);
    --gradient-yellow: linear-gradient(135deg, #8f6900 0%, #ffc845 100%);
    --gradient-yellow-light: linear-gradient(135deg, #ffc845 0%, #ffdf94 100%);
    --gradient-amber: linear-gradient(135deg, #ffaa00 0%, #ffd166 100%);
    --gradient-dark: linear-gradient(135deg, #1a2e35 0%, #34424a 100%);
    --gradient-hero: linear-gradient(135deg, #8f6900 0%, #ffc845 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(255, 186, 8, 0.8) 0%, rgba(255, 186, 8, 0) 70%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.16);
    --shadow-yellow: 0 4px 16px rgba(240, 180, 41, 0.2);
    --shadow-yellow-dark: 0 4px 16px rgba(143, 105, 0, 0.25);
    --shadow-yellow-light: 0 4px 16px rgba(255, 200, 69, 0.2);
    --shadow-neon: 0 0 15px rgba(255, 186, 8, 0.5);
    --shadow-glow: 0 0 30px rgba(255, 186, 8, 0.4);

    
    /* Border Radius */
    --radius-xs: 3px;
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-3xs: 0.25rem;  /* 4px */
    --space-2xs: 0.375rem; /* 6px */
    --space-xs: 0.5rem;    /* 8px */
    --space-sm: 1rem;      /* 16px */
    --space-md: 1.5rem;    /* 24px */
    --space-lg: 2rem;      /* 32px */
    --space-xl: 3rem;      /* 48px */
    --space-2xl: 4rem;     /* 64px */
    --space-3xl: 6rem;     /* 96px */
    
    /* Typography */
    --font-family: 'Outfit', sans-serif;
    --font-size-xs: 0.75rem;   /* 12px */
    --font-size-sm: 0.875rem;  /* 14px */
    --font-size-md: 1rem;      /* 16px */
    --font-size-lg: 1.125rem;  /* 18px */
    --font-size-xl: 1.25rem;   /* 20px */
    --font-size-2xl: 1.5rem;   /* 24px */
    --font-size-3xl: 2rem;     /* 32px */
    --font-size-4xl: 2.5rem;   /* 40px */
    --font-size-5xl: 3rem;     /* 48px */
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-normal: 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-md);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-light);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

/* ================= LAYOUT & CONTAINERS ================= */
.page-wrapper {
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 2;
}

section {
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.section-bg .shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-glow);
    opacity: 0.4;
}

.section-bg .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.section-bg .shape-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -100px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16, 120, 85, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ================= PRELOADER ================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    width: 80px;
    height: 80px;
}

#loader-circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 4;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: dash 2s ease-in-out infinite;
}

@keyframes dash {
    0% { stroke-dashoffset: 200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -200; }
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* ================= HEADER & NAVIGATION ================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-dark);
    z-index: 100;
    padding: var(--space-sm) 0;
    transition: all var(--transition-normal);
}

.header.scrolled {
    padding: var(--space-xs) 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(9, 95, 66, 0.98);
    backdrop-filter: blur(10px);
}

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

.logo-link {
    display: block;
}

.logo-link img {
    height: 40px;
    width: auto;
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: var(--space-xs) 0;
    opacity: 0.8;
    transition: opacity var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-normal);
}

.nav-link:hover, 
.nav-link.active {
    opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Mobile Navigation Styles */
.mobile-only {
    display: none;
}

/* On desktop sizes, hide the mobile-only links */
@media (min-width: 992px) {
    .mobile-only {
        display: none;
    }
}

/* On mobile sizes, show the mobile-only links */
@media (max-width: 991px) {
    .mobile-only {
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .nav-links .mobile-only:first-of-type {
        margin-top: 15px;
    }
    
    .nav-links .mobile-only .nav-link {
        font-weight: 600;
    }
    
    .nav-links .mobile-only:last-child .nav-link {
        color: var(--primary-color, #0066ff);
    }
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn i {
    margin-left: 8px;
    transition: transform var(--transition-normal);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    background: var(--gradient-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(16, 120, 85, 0.25);
}

.btn-green-dark {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: var(--shadow-green-dark);
}

.btn-green-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(6, 78, 59, 0.3);
}

.btn-green-light {
    background: var(--gradient-green-light);
    color: var(--white);
    box-shadow: var(--shadow-green-light);
}

.btn-green-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(16, 185, 129, 0.25);
}

.btn-glow {
    animation: button-glow 3s infinite alternate;
}

@keyframes button-glow {
    0% {
        box-shadow: 0 0 10px rgba(34, 229, 181, 0.5);
    }
    100% {
        box-shadow: 0 0 25px rgba(34, 229, 181, 0.8);
    }
}

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

.btn-outline:hover {
    background: rgba(16, 120, 85, 0.1);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-text {
    background: transparent;
    color: var(--white);
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-md);
    font-weight: 500;
}

.btn-text i {
    font-size: var(--font-size-xl);
    margin-left: 0;
}

.btn-text:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-sm {
    padding: 8px 16px;
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: 12px 32px;
    font-size: var(--font-size-lg);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* ================= HERO SECTION ================= */
.hero {
    padding-top: 7rem;
    padding-bottom: var(--space-xl);
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.hero-bg .shape {
    position: absolute;
    border-radius: 50%;
}

.hero-bg .shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 229, 181, 0.5) 0%, rgba(9, 95, 66, 0) 70%);
    top: -100px;
    right: -100px;
}

.hero-bg .shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 120, 85, 0.3) 0%, rgba(6, 78, 59, 0) 70%);
    bottom: -50px;
    left: -50px;
}

.hero-bg .shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(34, 229, 181, 0.3) 0%, rgba(6, 78, 59, 0) 70%);
    top: 30%;
    left: 10%;
}

.hero-bg .shape-4 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(112, 235, 193, 0.3) 0%, rgba(6, 78, 59, 0) 70%);
    bottom: 20%;
    right: 15%;
}

.crossover-watermark {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15rem;
    font-weight: 800;
    opacity: 0.08;
    color: white;
    line-height: 0.8;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.label-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    margin-bottom: var(--space-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.label-tag i {
    color: var(--accent);
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.gradient-text {
    background-image: linear-gradient(to right, #22e5b5, #70ebc1, #a7f3d0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
}

.hero-description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
}

.stat-item {
    position: relative;
}

.stat-value {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    background-image: linear-gradient(to right, #ffffff, #a7f3d0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image {
    position: relative;
}

.image-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.mockup-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.mockup-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform var(--transition-slow);
}

.mockup-image:hover {
    transform: scale(1.05);
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(34, 229, 181, 0.3) 0%, rgba(6, 78, 59, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.feature-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: var(--font-size-sm);
    z-index: 2;
    transform: translateY(0);
    transition: transform var(--transition-bounce);
    animation: float 4s ease-in-out infinite;
}

.feature-badge:hover {
    transform: translateY(-5px);
}

.badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
}

.badge-1 {
    top: -20px;
    left: 30px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30px;
    right: -15px;
    animation-delay: 1s;
}

.badge-3 {
    top: 40%;
    left: -15px;
    animation-delay: 2s;
}

.feature-badges-mobile {
    display: none;
}

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

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

/* ================= CLIENTS SECTION ================= */
.clients {
    padding: var(--space-lg) 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.clients-title {
    text-align: center;
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

.clients-carousel {
    position: relative;
    overflow: hidden;
    padding: var(--space-sm) 0;
}

.clients-track {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: scroll 30s linear infinite;
}

.client {
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
    filter: grayscale(100%);
}

.client:hover {
    opacity: 1;
    transform: translateY(-5px);
    filter: grayscale(0);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-180px * 6 - var(--space-xl) * 6)); }
}

/* ================= KEY VALUE SECTION ================= */
.key-value {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.tabs-container {
    max-width: 800px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--white);
    border-radius: var(--radius-full);
    color: var(--text);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.tab-btn i {
    font-size: var(--font-size-lg);
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.tab-content {
    position: relative;
    min-height: 450px;
}

.tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.tab-pane.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    perspective: 1000px;
    overflow: hidden;
}

.card-content {
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    z-index: 2;
}

.card-3d-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.benefit-card:hover .card-3d-effect {
    opacity: 1;
}

.benefit-card.green {
    border-top: 5px solid var(--primary);
}

.benefit-card.green-dark {
    border-top: 5px solid var(--green-dark);
}

.benefit-card.green-light {
    border-top: 5px solid var(--green-light);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: var(--font-size-2xl);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    top: 0;
    left: -100%;
    transition: all var(--transition-normal);
}

.benefit-card:hover .card-icon::after {
    left: 100%;
}

.green .card-icon {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-green);
}

.green-dark .card-icon {
    background: var(--gradient-green);
    box-shadow: var(--shadow-green-dark);
}

.green-light .card-icon {
    background: var(--gradient-green-light);
    box-shadow: var(--shadow-green-light);
}

.benefit-card h3 {
    font-size: var(--font-size-2xl);
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.benefit-list {
    text-align: left;
    margin-bottom: var(--space-lg);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.benefit-list li i {
    color: var(--primary);
    margin-right: var(--space-xs);
    margin-top: 5px;
}

.green-dark .benefit-list li i {
    color: var(--green-dark);
}

.green-light .benefit-list li i {
    color: var(--green-light);
}

/* ================= HOW IT WORKS SECTION ================= */
.how-it-works {
    background-color: var(--white);
    position: relative;
}

.process-container {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
}

.process-steps {
    flex: 1;
    
}

.process-step {
    display: flex;
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    cursor: pointer;
    opacity: 0.7;
    transition: all var(--transition-normal);
    background-color: var(--light);
    border-left: 4px solid transparent;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:hover {
    transform: translateX(5px);
}

.process-step.active {
    opacity: 1;
    border-left-color: var(--primary);
    background-color: rgba(16, 120, 85, 0.05);
    box-shadow: var(--shadow-sm);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-lg);
    margin-right: var(--space-md);
    box-shadow: var(--shadow-green);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: var(--font-size-xl);
    color: var(--dark);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.step-description {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    color: var(--text);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.tag i {
    color: var(--primary);
}

.process-display {
    flex: 1;
    max-width: 500px;
}

.device-mockup {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--primary-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform var(--transition-normal);
}

.device-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.device-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: var(--space-md);
    overflow: hidden;
}

.device-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background-color: var(--primary-darker);
    border-radius: 0 0 15px 15px;
    z-index: 3;
}

.device-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 10px solid var(--primary-darker);
    border-radius: var(--radius-lg);
    pointer-events: none;
    z-index: 2;
}

.device-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 3;
}

.screen-content {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
    height: 100%;
    position: relative;
    z-index: 1;
}

.screen-content.active {
    display: block;
    opacity: 1;
}

.screen-ui {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    height: 100%;
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
}

.screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ui-dots {
    display: flex;
    gap: 5px;
}

.ui-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

.ui-dots span:first-child {
    background-color: var(--accent);
}

.ui-title {
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.screen-body {
    flex: 1;
    padding: var(--space-sm) 0;
}

.ui-form, .ui-chart, .ui-stats, .ui-cards {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.ui-field, .ui-button, .ui-stat-item, .ui-card {
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-xs);
}

.ui-chart {
    height: 120px;
    position: relative;
}

.ui-chart::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60%;
    height: 40px;
    background: rgba(16, 120, 85, 0.3);
    border-radius: var(--radius-sm);
}

.ui-chart::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30%;
    height: 60px;
    background: rgba(34, 229, 181, 0.3);
    border-radius: var(--radius-sm);
}

.device-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    transition: all var(--transition-normal);
}

.control-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ================= PLATFORM HIGHLIGHTS ================= */
.platform-highlights {
    background-color: var(--light);
    position: relative;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.highlight-card {
    height: 300px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.highlight-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.card-front {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.card-back {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-green);
}

.card-back h3 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.card-back p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
}

.card-back .btn-text {
    align-self: flex-start;
    color: var(--white);
    padding: 8px 0;
}

.highlight-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 var(--space-md) 0;
    color: var(--white);
    font-size: var(--font-size-xl);
    box-shadow: var(--shadow-green);
}

.card-title {
    font-size: var(--font-size-xl);
    color: var(--dark);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.card-description {
    color: var(--text-light);
}

/* ================= TECHNICAL FOUNDATION ================= */
.technical-foundation {
    background: var(--gradient-dark);
    color: var(--white);
    padding: var(--space-2xl) 0;
}

.technical-foundation .section-title,
.technical-foundation .section-description {
    color: var(--white);
}

.technical-foundation .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.tech-layout {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.tech-image {
    flex: 1;
    max-width: 500px;
}

.architecture-diagram {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.diagram-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--space-lg);
    height: 300px;
}

.diagram-node {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    transition: all var(--transition-normal);
}

.diagram-node:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.node-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xs);
    color: var(--white);
    font-size: var(--font-size-xl);
}

.node-label {
    font-weight: 600;
}

.diagram-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 50% 50%;
    background-position: center;
    z-index: -1;
}

.tech-list {
    flex: 1;
}

.tech-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    border-left: 3px solid transparent;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-left-color: var(--accent);
}

.tech-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-md);
    flex-shrink: 0;
    color: var(--primary-dark);
    font-size: var(--font-size-lg);
}

.tech-content {
    flex: 1;
}

.tech-title {
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 600;
}

.tech-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

/* ================= CALCULATOR SECTION ================= */
.calculator-section {
    background-color: var(--white);
    position: relative;
    padding: var(--space-2xl) 0;
}

.calculator-container {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.calculator-form {
    flex: 1;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--dark);
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.form-group input {
    width: 100%;
    padding: 12px 12px 12px 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-md);
    transition: all var(--transition-normal);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 120, 85, 0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 12px 36px 12px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: var(--font-size-md);
    appearance: none;
    background-color: var(--white);
    transition: all var(--transition-normal);
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 120, 85, 0.1);
}

.select-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.results {
    margin-top: var(--space-lg);
    background: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--border);
}

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

.result-row.highlight {
    background: rgba(16, 120, 85, 0.1);
    font-weight: 600;
}

.result-label {
    color: var(--text);
}

.result-value {
    font-weight: 600;
    color: var(--primary);
}

.calculation-note {
    margin-top: var(--space-md);
    padding: var(--space-sm);
    background: rgba(34, 229, 181, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.calculation-note i {
    color: var(--accent);
    margin-top: 3px;
}

.calculator-visual {
    flex: 1;
}

.flow-diagram {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    color: var(--white);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    box-shadow: var(--shadow-green);
}

.flow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(5px);
}

.flow-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
    font-size: var(--font-size-xl);
    background: rgba(255, 255, 255, 0.2);
}

.player-icon {
    background: var(--gradient-secondary);
}

.platform-icon {
    background: var(--gradient-primary);
}

.owner-icon {
    background: var(--gradient-teal);
}

.flow-info {
    text-align: center;
}

.flow-label {
    font-size: var(--font-size-sm);
    margin-bottom: 5px;
    opacity: 0.8;
}

.flow-value {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.flow-arrow {
    font-size: var(--font-size-2xl);
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

/* ================= CTA SECTION ================= */
.cta-section {
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg .shape {
    position: absolute;
    border-radius: 50%;
}

.cta-bg .shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 120, 85, 0.3) 0%, rgba(26, 46, 53, 0) 70%);
    top: -100px;
    right: -100px;
}

.cta-bg .shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 229, 181, 0.2) 0%, rgba(26, 46, 53, 0) 70%);
    bottom: -50px;
    left: -50px;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    position: relative;
    z-index: 2;
}

.cta-content {
    flex: 1;
    max-width: 600px;
}

.cta-content h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.cta-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-lg);
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.feature-item i {
    color: var(--accent);
}

.cta-image {
    flex: 1;
    max-width: 500px;
}

.dashboard-preview {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.dashboard-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(34, 229, 181, 0.2) 0%, rgba(34, 229, 181, 0) 70%);
    pointer-events: none;
}

/* ================= FOOTER ================= */
.footer {
    background: var(--primary-darker);
    color: var(--white);
    padding-top: var(--space-2xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.footer-brand {
    flex: 1;
    max-width: 350px;
}

.footer-logo {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    background-image: linear-gradient(to right, #ffffff, #f7c352);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-normal);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-links {
    display: flex;
    flex: 2;
    gap: var(--space-xl);
}

.link-group {
    flex: 1;
}

.link-group h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
    color: var(--white);
}

.link-group ul li {
    margin-bottom: var(--space-xs);
}

.link-group ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-normal);
}

.link-group ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
    margin-right: var(--space-xs);
    margin-top: 5px;
    color: var(--accent);
}

.footer-bottom {
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-menu {
    display: flex;
    gap: var(--space-md);
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-sm);
}

.footer-menu a:hover {
    color: var(--white);
}

/* ================= BACK TO TOP ================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 99;
    box-shadow: var(--shadow-green);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

/* ================= ANIMATIONS & UTILITIES ================= */
.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.in-view, .js .animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE STYLES ================= */
@media (max-width: 1400px) {
    .crossover-watermark {
        font-size: 12rem;
    }
}

@media (max-width: 1200px) {
    :root {
        --font-size-5xl: 2.5rem;
        --font-size-4xl: 2.25rem;
        --font-size-3xl: 1.75rem;
    }
    
    .container {
        padding: 0 var(--space-lg);
    }
    
    .hero-wrapper, 
    .tech-layout, 
    .calculator-container, 
    .cta-container {
        gap: var(--space-lg);
    }
    
    .diagram-grid {
        height: 250px;
    }
    
    .crossover-watermark {
        font-size: 10rem;
        right: -2rem;
    }
    
    .hero-visual {
        min-width: 45%;
    }
    
    .process-container {
        gap: var(--space-lg);
    }
    
    .highlight-card {
        height: 320px;
    }
}

@media (max-width: 992px) {
    :root {
        --font-size-5xl: 2.25rem;
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.5rem;
        --space-2xl: 3rem;
        --space-xl: 2.5rem;
    }
    
    section {
        padding: var(--space-xl) 0;
    }
    
    .hero-wrapper, 
    .tech-layout, 
    .calculator-container, 
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content, 
    .cta-content, 
    .tech-image, 
    .tech-list, 
    .calculator-form, 
    .calculator-visual {
        max-width: 100%;
        width: 100%;
    }
    
    .process-container {
        flex-direction: column;
    }
    
    .process-steps, 
    .process-display {
        max-width: 100%;
        width: 100%;
    }
    
    .device-mockup {
        transform: perspective(1000px) rotateY(0) rotateX(0);
        margin-top: var(--space-lg);
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .diagram-grid {
        height: 300px;
    }
    
    .hero-content, 
    .cta-content {
        text-align: center;
    }
    
    .hero-description, 
    .cta-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions, 
    .cta-buttons, 
    .cta-features {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .crossover-watermark {
        right: 0;
        left: 0;
        text-align: center;
        font-size: 8rem;
    }
    
    .hero-visual {
        margin-top: var(--space-lg);
        max-width: 600px;
    }
    
    .feature-badge {
        padding: 8px 14px;
        font-size: var(--font-size-xs);
    }
    
    .badge-icon {
        width: 24px;
        height: 24px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-brand {
        max-width: 100%;
        margin-bottom: var(--space-lg);
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .benefit-list {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .calculator-form, .calculator-visual {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .calculator-visual {
        margin-top: var(--space-lg);
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-5xl: 2rem;
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.5rem;
        --space-xl: 2rem;
        --space-lg: 1.5rem;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .nav-container {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: var(--primary-dark);
        padding: 80px 30px 30px;
        transition: right var(--transition-normal);
        z-index: 101;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .nav-container.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-item {
        width: 100%;
        margin: 8px 0;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 102;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .nav-container .nav-actions {
        display: flex;
        margin-top: var(--space-lg);
    }
    
    .nav-container .nav-actions .btn {
        display: block;
        width: 100%;
    }
    
    .tabs {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .highlight-card {
        height: auto;
        min-height: 280px;
    }
    
    .flow-diagram {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        padding: var(--space-xs) 0;
    }
    
    .flow-step {
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .footer-menu {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .stat-item {
        min-width: 100px;
        text-align: center;
    }
    
    .hero {
        padding-top: 5rem;
    }
    
    .feature-badge.badge-3 {
        display: none;
    }
    
    .process-step {
        padding: var(--space-sm);
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: var(--font-size-md);
    }
    
    .step-tags {
        flex-wrap: wrap;
    }
    
    .diagram-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        height: auto;
        gap: var(--space-sm);
    }
    
    .section-tag {
        font-size: 10px;
    }
    
    .device-mockup {
        aspect-ratio: 16/10;
    }
    
    .benefit-card {
        padding: var(--space-md);
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-xl);
    }
    
    .calculation-note {
        font-size: 12px;
    }
    
    .feature-badges-mobile {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: var(--space-sm);
    }
    
    .feature-badges-mobile .feature-badge {
        position: static;
        margin-right: var(--space-xs);
        margin-bottom: var(--space-xs);
        transform: none !important;
        animation: none;
    }
    
    .feature-badge.badge-1,
    .feature-badge.badge-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    :root {
        --font-size-5xl: 1.75rem;
        --font-size-4xl: 1.5rem;
        --font-size-3xl: 1.25rem;
        --space-lg: 1.25rem;
        --space-md: 1rem;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-actions, 
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: var(--space-sm);
    }
    
    .hero-actions .btn, 
    .cta-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
        margin-top: var(--space-md);
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        width: 100%;
        text-align: left;
    }
    
    .stat-value {
        font-size: var(--font-size-2xl);
        min-width: 80px;
    }
    
    .step-tags {
        flex-wrap: wrap;
    }
    
    .form-card {
        padding: var(--space-md);
    }
    
    .crossover-watermark {
        font-size: 5rem;
        opacity: 0.05;
    }
    
    .benefit-card .card-content {
        padding: var(--space-md);
    }
    
    .feature-badge {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .badge-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-title br {
        display: none;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    .device-notch {
        width: 100px;
        height: 20px;
    }
    
    .tech-item {
        flex-direction: column;
    }
    
    .tech-icon {
        margin-bottom: var(--space-xs);
        margin-right: 0;
    }
    
    .clients-track {
        gap: var(--space-md);
    }
    
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-150px * 6 - var(--space-md) * 6)); }
    }
    
    .client img {
        max-width: 150px;
    }
}

/* Optimize for very small screens */
@media (max-width: 375px) {
    :root {
        --font-size-5xl: 1.5rem;
        --font-size-4xl: 1.25rem;
        --font-size-3xl: 1.125rem;
        --font-size-2xl: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: var(--font-size-md);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-description {
        font-size: var(--font-size-md);
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
    }
    
    .step-title {
        font-size: var(--font-size-lg);
    }
    
    .step-description {
        font-size: var(--font-size-sm);
    }
    
    .result-row {
        padding: 8px 12px;
    }
    
    .hero {
        padding-top: 4.5rem;
    }
}

/* Tablet-specific optimizations */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-visual {
        max-width: 80%;
        margin-top: var(--space-lg);
    }
    
    .feature-badge {
        transform: scale(0.9);
        transform-origin: center;
    }
    
    .badge-1 {
        top: -10px;
        left: 20px;
    }
    
    .badge-2 {
        bottom: 20px;
        right: -10px;
    }
    
    .badge-3 {
        top: 35%;
        left: -10px;
    }
    
    .hero-stats {
        gap: var(--space-lg);
        justify-content: center;
    }
}

/* Landscape mode optimizations */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding-top: 4.5rem;
        padding-bottom: var(--space-md);
    }
    
    .hero-wrapper {
        gap: var(--space-md);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--space-xs);
    }
    
    .hero-description {
        margin-bottom: var(--space-sm);
    }
    
    .hero-actions {
        margin-bottom: var(--space-sm);
    }
    
    .hero-wave {
        display: none;
    }
    
    .section {
        padding: var(--space-lg) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-md);
    }
    
    .nav-container.active {
        padding-top: 70px;
    }
    
    .feature-badge {
        display: none;
    }
}

/* High-resolution screens */
@media (min-width: 1800px) {
    .container {
        max-width: 1500px;
    }
    
    :root {
        --font-size-5xl: 3.5rem;
        --font-size-4xl: 3rem;
        --font-size-3xl: 2.5rem;
    }
    
    .crossover-watermark {
        font-size: 18rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .key-value {
        background-color: var(--dark);
    }
    
    .platform-highlights {
        background-color: var(--dark);
    }
    
    .section-title {
        color: var(--white);
    }
    
    .section-description {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .section-tag {
        background: rgba(16, 120, 85, 0.2);
    }
    
    .process-step {
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .tag {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001s !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .preloader,
    .back-to-top {
        display: none !important;
    }
    
    body {
        background-color: white !important;
        color: black !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    section {
        padding: 20px 0 !important;
        page-break-inside: avoid;
    }
    
    .hero {
        background: none !important;
        color: black !important;
    }
    
    .hero-title, .gradient-text, .section-title {
        color: black !important;
        background: none !important;
    }
    
    .highlight-card, .benefit-card, .tech-item {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .card-inner {
        transform: none !important;
    }
    
    .card-back {
        display: none !important;
    }
}
