/*
Theme Name: أثر 97 - Athar97
Theme URI: https://athar97.sa
Author: Your Name
Author URI: https://yourwebsite.com
Description: قالب مخصص لشركة أثر 97 للتسويق الإلكتروني
Version: 1.0
License: GPL v2 or later
Text Domain: athar97
Domain Path: /languages
*/

/* ================================
   TABLE OF CONTENTS
   ================================
   1. CSS Variables
   2. Global Reset & Base Styles
   3. Loading Screen
   4. Custom Cursor
   5. Hero Section
   6. About Section
   7. Why Choose Section
   8. Services Section
   9. Partners Section
   10. Testimonials Section
   11. Performance Section
   12. Guarantees Section
   13. Contact Section
   14. Animations
   15. Responsive Design
   ================================ */

/* ================================
   1. CSS VARIABLES
   ================================ */
:root {
    /* Colors */
    --primary: #ff6b2b;
    --secondary: #ff8c42;
    --accent: #ffa366;
    --dark: #0a0a0a;
    --dark-elevated: #0f0f0f;
    --dark-card: #1a1a1a;
    --dark-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.65);
    --border: rgba(255, 255, 255, 0.15);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-xxl: 100px;
    
    /* Typography */
    --font-primary: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-english: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(255, 107, 43, 0.3);
}

/* ================================
   2. GLOBAL RESET & BASE STYLES
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: rtl;
}

.container-ultra {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   3. LOADING SCREEN
   ================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.loader-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.loader-logo {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.loader-container {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.loader-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.loader-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ================================
   4. CUSTOM CURSOR
   ================================ */
.cursor,
.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s ease;
    display: none;
}

.cursor {
    width: 10px;
    height: 10px;
    background: var(--primary);
    box-shadow: 0 0 20px var(--primary);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 107, 43, 0.5);
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

@media (min-width: 1024px) {
    .cursor,
    .cursor-follower {
        display: block;
    }
}

/* ================================
   5. HERO SECTION
   ================================ */
.hero-dark {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a1628 0%, #162137 50%, #1a2332 100%);
    padding-top: 200px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 43, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 43, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 43, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 43, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 43, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-up 15s linear infinite;
}

@keyframes float-up {
    from {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    to {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.hero-container-dark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-dark h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    position: relative;
    animation: slideInUp 1s ease-out 0.5s both;
}

.hero-content-dark h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
    border-radius: 2px;
    animation: slideInLeft 1s ease-out 1.2s both;
}

.hero-content-dark h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(255, 107, 43, 0.3);
    animation: slideInUp 1s ease-out 0.7s both;
}

.hero-content-dark p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons-dark {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    margin-bottom: 50px;
    width: fit-content;
    align-items: stretch;
}

.btn-ultra {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary-ultra {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 43, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-ultra:hover::before {
    left: 100%;
}

.btn-primary-ultra:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 43, 0.5);
}

.btn-secondary-ultra {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-secondary-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 107, 43, 0.1);
    transition: width 0.3s ease;
}

.btn-secondary-ultra:hover::before {
    width: 100%;
}

.btn-secondary-ultra:hover {
    background: rgba(255, 107, 43, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 43, 0.2);
}

.trust-indicators-dark {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trust-item-dark {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all var(--transition-smooth);
}

.trust-item-dark:hover {
    background: rgba(255, 107, 43, 0.05);
    border-color: rgba(255, 107, 43, 0.3);
    transform: translateY(-5px);
}

.trust-item-dark i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.trust-number-dark {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.trust-label-dark {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Hero Visual with Floating Icons */
.isometric-container {
    width: 100%;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iso-element {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 107, 43, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary);
    animation: floatIcon 6s ease-in-out infinite;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 40px rgba(255, 107, 43, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.iso-element::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 107, 43, 0.3), rgba(255, 107, 43, 0.1), rgba(255, 107, 43, 0.3));
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.iso-element:hover {
    transform: scale(1.1) translateY(-10px);
    border-color: rgba(255, 107, 43, 0.6);
    box-shadow: 
        0 25px 70px rgba(255, 107, 43, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.iso-element:hover::before {
    opacity: 1;
}

.iso-element i {
    filter: drop-shadow(0 0 20px rgba(255, 107, 43, 0.5));
}

.iso-main {
    width: 160px;
    height: 160px;
    font-size: 5rem;
    background: rgba(255, 107, 43, 0.1);
    border-color: rgba(255, 107, 43, 0.4);
    animation-delay: 0s;
    box-shadow: 
        0 15px 50px rgba(255, 107, 43, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        0 0 40px rgba(255, 107, 43, 0.2);
    position: relative;
}

.iso-main::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.iso-float-1 {
    top: 8%;
    right: 15%;
    animation-delay: -1.5s;
}

.iso-float-2 {
    bottom: 12%;
    left: 10%;
    animation-delay: -3s;
}

.iso-float-3 {
    top: 45%;
    left: 8%;
    animation-delay: -4.5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-30px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

/* ================================
   6. ABOUT SECTION
   ================================ */
.about-dark {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
}

.section-title-dark {
    text-align: center;
    margin-bottom: 80px;
}

.section-title-dark h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-title-dark p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.about-container-dark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content-dark p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-content-dark h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.about-features-dark {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box-dark {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), background var(--transition-smooth);
    cursor: pointer;
}

@media (hover: hover) {
    .feature-box-dark:hover {
        background: rgba(255, 107, 43, 0.05);
        border-color: rgba(255, 107, 43, 0.3);
        transform: translateY(-5px);
    }
}

.feature-box-dark i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.feature-box-dark h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-box-dark p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.feature-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* About Visual Cube */
.about-iso-container {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.about-iso-cube {
    width: 300px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 20s linear infinite;
}

@keyframes rotateCube {
    from { transform: rotateX(0deg) rotateY(0deg); }
    to { transform: rotateX(360deg) rotateY(360deg); }
}

.cube-face {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 107, 43, 0.1);
    border: 2px solid rgba(255, 107, 43, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
    backdrop-filter: blur(10px);
}

.cube-face:nth-child(1) { transform: rotateY(0deg) translateZ(150px); }
.cube-face:nth-child(2) { transform: rotateY(90deg) translateZ(150px); }
.cube-face:nth-child(3) { transform: rotateY(180deg) translateZ(150px); }
.cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(150px); }
.cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(150px); }
.cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(150px); }

/* ================================
   7. WHY CHOOSE SECTION
   ================================ */
.why-dark {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.why-rows-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 50px;
    align-items: center;
    padding: 40px 50px;
    border-radius: 24px;
    position: relative;
    transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
    border-right: 3px solid transparent;
}

@media (hover: hover) {
    .why-row:hover {
        background: rgba(255, 255, 255, 0.02);
        border-right-color: var(--primary);
        box-shadow: inset 0 0 60px rgba(255, 107, 43, 0.03);
    }
}

/* Alternating rows shift icon to right side */
.why-row-alt {
    grid-template-columns: 1fr 180px;
    border-right: none;
    border-left: 3px solid transparent;
}

@media (hover: hover) {
    .why-row-alt:hover {
        border-left-color: var(--primary);
        border-right-color: transparent;
    }
}

.why-row-alt .why-row-icon {
    order: 2;
}

.why-row-alt .why-row-content {
    order: 1;
}

/* Separator line between rows */
.why-row + .why-row {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.why-row-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.why-row-number {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary);
    opacity: 0.7;
    font-family: var(--font-english);
}

.why-row-icon-box {
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 43, 0.08);
    border: 1px solid rgba(255, 107, 43, 0.2);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--primary);
    transition: background var(--transition-smooth), border-color var(--transition-smooth), transform var(--transition-smooth);
    position: relative;
}

.why-row-icon-box::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 29px;
    background: linear-gradient(135deg, rgba(255, 107, 43, 0.3), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

@media (hover: hover) {
    .why-row:hover .why-row-icon-box {
        background: rgba(255, 107, 43, 0.15);
        border-color: rgba(255, 107, 43, 0.5);
        transform: scale(1.05) rotate(-3deg);
    }

    .why-row:hover .why-row-icon-box::after {
        opacity: 1;
    }
}

.why-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(255, 107, 43, 0.1);
    border: 1px solid rgba(255, 107, 43, 0.2);
    border-radius: 50px;
    padding: 4px 14px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.why-row-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.3;
}

.why-row-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 640px;
}

/* ================================
   8. SERVICES SECTION
   ================================ */
.services-dark {
    padding: 100px 0;
    background: var(--dark);
}

/* --- Tab Bar --- */
.srv-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.srv-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-smooth), border-color var(--transition-smooth), color var(--transition-smooth), transform var(--transition-smooth);
    white-space: nowrap;
}

.srv-tab i {
    font-size: 1rem;
    transition: transform var(--transition-smooth);
}

@media (hover: hover) {
    .srv-tab:hover {
        background: rgba(255, 107, 43, 0.08);
        border-color: rgba(255, 107, 43, 0.3);
        color: var(--text-primary);
        transform: translateY(-2px);
    }
}

.srv-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 43, 0.35);
}

.srv-tab.active i {
    transform: scale(1.15);
}

/* --- Panels Container --- */
.srv-panels {
    position: relative;
    min-height: 420px;
}

.srv-panel {
    display: none;
}

.srv-panel.active {
    display: block;
    animation: srvPanelIn 0.35s ease both;
}

@keyframes srvPanelIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.srv-panel-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
    align-items: start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 55px 60px;
}

/* --- Panel Content (left) --- */
.srv-panel-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(255, 107, 43, 0.3);
}

.srv-panel-content h3 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.25;
}

.srv-panel-content > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 560px;
}

.srv-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.srv-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.srv-features li i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.srv-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(255, 107, 43, 0.3);
}

@media (hover: hover) {
    .srv-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 107, 43, 0.5);
    }
}

/* --- Panel Visual (right) --- */
.srv-panel-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.srv-stat-card {
    padding: 28px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: border-color var(--transition-smooth), transform var(--transition-smooth);
}

@media (hover: hover) {
    .srv-stat-card:hover {
        border-color: rgba(255, 107, 43, 0.25);
        transform: translateY(-4px);
    }
}

.srv-stat-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.srv-stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 6px;
    font-family: var(--font-english);
}

.srv-stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.srv-platforms {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    flex-wrap: wrap;
}

.srv-platforms span {
    width: 42px;
    height: 42px;
    background: rgba(255, 107, 43, 0.08);
    border: 1px solid rgba(255, 107, 43, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    transition: background var(--transition-smooth), transform var(--transition-smooth);
}

@media (hover: hover) {
    .srv-platforms span:hover {
        background: rgba(255, 107, 43, 0.18);
        transform: scale(1.1);
    }
}

/* ================================
   9. PARTNERS SECTION
   ================================ */
.partners-dark {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.clients-grid-dark {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.client-card-dark {
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all var(--transition-smooth);
    text-align: center;
}

.client-card-dark:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: 0 15px 40px rgba(255, 107, 43, 0.1);
}

.client-number-dark {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
}

.client-logo-wrapper-dark {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-wrapper-dark img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-smooth);
}

.client-card-dark:hover .client-logo-wrapper-dark img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.client-placeholder i {
    font-size: 3rem;
}

/* ================================
   10. TESTIMONIALS SECTION
   ================================ */
.testimonials-dark {
    padding: 100px 0;
    background: var(--dark);
}

.testimonials-wrapper-dark {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-container-dark {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 60px;
}

.testimonial-item-dark {
    opacity: 0;
    transform: scale(0.9);
    transition: all var(--transition-smooth);
    display: none;
}

.testimonial-item-dark.active {
    opacity: 1;
    transform: scale(1);
    display: block;
}

.testimonial-card-dark {
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    position: relative;
    transition: all var(--transition-smooth);
    height: 100%;
}

.testimonial-card-dark:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: 0 15px 40px rgba(255, 107, 43, 0.1);
}

.testimonial-rating-dark {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating-dark i {
    color: #ffd700;
    font-size: 1.1rem;
}

.testimonial-header-dark {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar-dark {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.testimonial-avatar-dark.male {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.testimonial-avatar-dark.female {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.testimonial-info-dark h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.testimonial-info-dark p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.testimonial-content-dark {
    position: relative;
    margin-bottom: 20px;
}

.quote-icon-dark {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 3rem;
    color: rgba(255, 107, 43, 0.1);
}

.testimonial-content-dark p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-right: 30px;
}

.testimonial-expand {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 43, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all var(--transition-smooth);
}

.testimonial-card-dark:hover .testimonial-expand {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Navigation Buttons */
.testimonial-nav-dark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    z-index: 10;
}

.testimonial-nav-dark:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav-dark.prev {
    right: 0;
}

.testimonial-nav-dark.next {
    left: 0;
}

/* Dots */
.testimonial-dots-dark {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot-dark {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.dot-dark.active,
.dot-dark:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* ================================
   11. PERFORMANCE SECTION
   ================================ */
.performance-dark {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.counters-grid-dark {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.counter-item-dark {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all var(--transition-smooth);
}

.counter-item-dark:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 43, 0.3);
    box-shadow: 0 20px 40px rgba(255, 107, 43, 0.1);
}

.counter-icon-dark {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all var(--transition-smooth);
}

.counter-item-dark:hover .counter-icon-dark {
    transform: scale(1.2) rotate(360deg);
}

.counter-value-dark {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-label-dark {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ================================
   12. GUARANTEES SECTION
   ================================ */
.guarantees-dark {
    padding: 100px 0;
    background: var(--dark);
}

.guarantees-container-dark {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    align-items: start;
}

.guarantee-box-dark {
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: visible;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

@media (hover: hover) {
    .guarantee-box-dark:hover {
        border-color: rgba(255, 107, 43, 0.5);
        box-shadow: 0 15px 35px rgba(255, 107, 43, 0.2);
    }
}

.guarantee-badge-dark {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    transition: all var(--transition-smooth);
}

@media (hover: hover) {
    .guarantee-box-dark:hover .guarantee-badge-dark {
        transform: scale(1.1) rotate(360deg);
    }
}

.guarantee-box-dark h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.guarantee-box-dark p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.guarantee-hover-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
    padding: 0 5px;
}

@media (hover: hover) {
    .guarantee-box-dark:hover .guarantee-hover-content {
        max-height: 250px;
        opacity: 1;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 107, 43, 0.2);
    }
}

@media (hover: none) {
    .guarantee-hover-content {
        max-height: 250px;
        opacity: 1;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.guarantee-hover-content i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.guarantee-hover-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.guarantee-hover-content p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ================================
   13. CONTACT SECTION
   ================================ */
.contact-dark {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.contact-wrapper-dark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-dark h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.contact-info-dark > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-benefits-dark {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item-dark {
    display: flex;
    align-items: start;
    gap: 20px;
}

.benefit-icon-dark {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.benefit-item-dark h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.benefit-item-dark p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Contact Form */
.form-container-dark {
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
}

.modern-form-dark {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-field-dark {
    position: relative;
}

.form-input-dark,
.form-select-dark,
.form-textarea-dark {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-smooth);
}

.form-input-dark:focus,
.form-select-dark:focus,
.form-textarea-dark:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 107, 43, 0.2);
}

.form-input-dark::placeholder,
.form-textarea-dark::placeholder {
    color: var(--text-muted);
}

.form-label-dark {
    position: absolute;
    top: 18px;
    right: 20px;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: all var(--transition-smooth);
}

.form-input-dark:focus + .form-label-dark,
.form-input-dark:not(:placeholder-shown) + .form-label-dark {
    top: -10px;
    right: 15px;
    font-size: 0.85rem;
    color: var(--primary);
    background: var(--dark);
    padding: 0 8px;
}

.form-select-dark {
    cursor: pointer;
}

.form-select-dark option {
    background: var(--dark-card);
    color: var(--text-primary);
}

.submit-btn-dark {
    width: 100%;
    padding: 20px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(255, 107, 43, 0.3);
}

.submit-btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 43, 0.4);
}

.submit-btn-dark i {
    font-size: 1.3rem;
}

/* ================================
   14. ANIMATIONS
   ================================ */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.reveal-dark {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-dark.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left-dark {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left-dark.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right-dark {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right-dark.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ================================
   15. RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1200px) {
    .hero-container-dark,
    .about-container-dark {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual-dark {
        order: -1;
        max-height: 420px;
    }

    .isometric-container {
        height: 400px;
    }
    
    .counters-grid-dark {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Why rows: compress padding */
    .why-row {
        padding: 32px 30px;
        gap: 36px;
    }

    /* Services panel: compress columns */
    .srv-panel-inner {
        grid-template-columns: 1fr 300px;
        gap: 36px;
        padding: 44px 44px;
    }
}

@media (max-width: 992px) {
    .hero-dark {
        padding: 160px 0 60px;
        min-height: auto;
    }
    
    .hero-content-dark {
        text-align: center;
    }
    
    .hero-content-dark h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .hero-content-dark h2 {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
    
    .hero-content-dark p {
        max-width: 100%;
        font-size: 1rem;
    }
    
    .hero-buttons-dark {
        justify-content: center;
        width: auto;
    }
    
    .isometric-container {
        height: 350px;
    }
    
    .iso-main {
        width: 140px;
        height: 140px;
        font-size: 4rem;
    }
    
    .iso-float-1,
    .iso-float-2,
    .iso-float-3 {
        width: 100px;
        height: 100px;
        font-size: 2.8rem;
    }
    
    .trust-indicators-dark {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .about-features-dark {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container-dark {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .testimonial-nav-dark {
        display: none;
    }
    
    .clients-grid-dark {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper-dark {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .guarantees-container-dark {
        grid-template-columns: 1fr;
    }

    /* Why: stack icon above content, center everything */
    .why-row,
    .why-row-alt {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 24px;
        text-align: center;
        border-right: none;
        border-left: none;
        border-top: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .why-row-alt .why-row-icon,
    .why-row-alt .why-row-content {
        order: unset;
    }

    .why-row-content p {
        max-width: 100%;
    }

    /* Services: stack panel to single column */
    .srv-panel-inner {
        grid-template-columns: 1fr;
        padding: 36px 30px;
        gap: 36px;
    }

    .srv-features {
        grid-template-columns: 1fr;
    }

    /* Tab bar: scrollable on tablet */
    .srv-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .srv-tabs::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }

    .hero-dark {
        padding: 140px 0 50px;
    }

    .hero-content-dark {
        text-align: center;
    }

    .hero-content-dark h1 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .hero-content-dark h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-content-dark h2 {
        font-size: 1.15rem;
        margin-bottom: 14px;
    }

    .hero-content-dark p {
        font-size: 0.92rem;
        margin-bottom: 28px;
        line-height: 1.7;
    }

    /* Side-by-side buttons on mobile */
    .hero-buttons-dark {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        width: 100%;
        justify-content: center;
        margin-bottom: 30px;
    }

    .btn-ultra {
        flex: 1 1 0;
        min-width: 0;
        padding: 15px 12px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .isometric-container {
        height: 280px;
    }
    
    .iso-main {
        width: 120px;
        height: 120px;
        font-size: 3.5rem;
    }
    
    .iso-float-1,
    .iso-float-2,
    .iso-float-3 {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .trust-indicators-dark {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .trust-item-dark {
        padding: 12px 8px;
    }
    
    .trust-item-dark i {
        font-size: 1.5rem;
    }
    
    .trust-number-dark {
        font-size: 1.5rem;
    }
    
    .trust-label-dark {
        font-size: 0.85rem;
    }
    
    .section-title-dark {
        margin-bottom: 50px;
    }
    
    .counters-grid-dark,
    .clients-grid-dark {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .form-container-dark {
        padding: 30px 20px;
    }
    
    .about-iso-container {
        height: 300px;
    }
    
    .about-dark,
    .why-dark,
    .services-dark,
    .partners-dark,
    .testimonials-dark,
    .performance-dark,
    .guarantees-dark,
    .contact-dark {
        padding: 60px 0;
    }

    /* Why mobile: compact */
    .why-row,
    .why-row-alt {
        padding: 28px 20px;
        gap: 20px;
    }

    .why-row-icon-box {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .why-row-content h3 {
        font-size: 1.25rem;
    }

    /* Services mobile */
    .srv-panel-inner {
        padding: 28px 24px;
        gap: 28px;
    }

    .srv-panel-content h3 {
        font-size: 1.5rem;
    }

    .srv-tab span {
        display: none;
    }

    .srv-tab {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .container-ultra {
        padding: 0 15px;
    }

    .hero-dark {
        padding: 130px 0 40px;
    }

    .hero-content-dark h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-content-dark h2 {
        font-size: 1rem;
    }

    .hero-content-dark p {
        font-size: 0.88rem;
        line-height: 1.6;
    }

    /* Keep side-by-side at 480px but tighter */
    .hero-buttons-dark {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        width: 100%;
    }

    .btn-ultra {
        flex: 1 1 0;
        min-width: 0;
        padding: 13px 10px;
        font-size: 0.84rem;
        gap: 6px;
    }
    
    .isometric-container {
        height: 220px;
        margin-bottom: 20px;
    }
    
    .iso-main {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .iso-float-1,
    .iso-float-2,
    .iso-float-3 {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .iso-float-1 {
        top: 5%;
        right: 5%;
    }
    
    .iso-float-2 {
        bottom: 8%;
        left: 5%;
    }
    
    .iso-float-3 {
        top: 50%;
        left: 2%;
    }
    
    .trust-indicators-dark {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .trust-item-dark {
        padding: 10px 6px;
    }

    .trust-number-dark {
        font-size: 1.1rem;
    }

    .trust-label-dark {
        font-size: 0.72rem;
    }

    .trust-item-dark i {
        font-size: 1.1rem;
    }

    .loader-logo {
        font-size: 3rem;
    }

    .loader-container {
        width: 200px;
    }

    /* Why 480px */
    .why-row,
    .why-row-alt {
        padding: 22px 16px;
    }

    .why-row-content h3 {
        font-size: 1.1rem;
    }

    .why-row-content p {
        font-size: 0.9rem;
    }

    /* Services 480px */
    .srv-panel-inner {
        padding: 22px 18px;
    }

    .srv-panel-content h3 {
        font-size: 1.3rem;
    }

    .srv-stat-number {
        font-size: 2rem;
    }
}

/* Additional Animation Keyframes */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================
   HERO FLOATING VISUAL SYSTEM
   ================================ */
.hero-visual-dark {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-system {
    position: relative;
    width: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main central card */
.float-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.float-main .float-card {
    width: 130px;
    height: 130px;
    background: rgba(255, 107, 43, 0.12);
    border: 2px solid rgba(255, 107, 43, 0.5);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary);
    position: relative;
    box-shadow:
        0 15px 50px rgba(255, 107, 43, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    animation: floatMain 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.float-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes floatMain {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-15px) scale(1.03); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.3); }
}

/* Orbiting floating elements */
.float-element {
    position: absolute;
    z-index: 4;
}

.float-element .float-card {
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 43, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(255, 107, 43, 0.15);
}

.float-element:hover .float-card {
    background: rgba(255, 107, 43, 0.15);
    border-color: rgba(255, 107, 43, 0.6);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 43, 0.3);
}

/* Positions for the 5 orbiting icons */
.float-1 {
    top: 5%;
    right: 10%;
    animation: floatIcon1 5s ease-in-out infinite;
}
.float-2 {
    top: 10%;
    left: 8%;
    animation: floatIcon2 6s ease-in-out infinite;
}
.float-3 {
    bottom: 10%;
    left: 10%;
    animation: floatIcon3 5.5s ease-in-out infinite;
}
.float-4 {
    bottom: 8%;
    right: 8%;
    animation: floatIcon4 4.5s ease-in-out infinite;
}
.float-5 {
    top: 45%;
    right: 0%;
    animation: floatIcon5 7s ease-in-out infinite;
}

@keyframes floatIcon1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-18px) rotate(8deg); }
}
@keyframes floatIcon2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-22px) rotate(-8deg); }
}
@keyframes floatIcon3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(16px) rotate(5deg); }
}
@keyframes floatIcon4 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(20px) rotate(-6deg); }
}
@keyframes floatIcon5 {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50%       { transform: translateX(12px) rotate(4deg); }
}

/* SVG Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 2s ease forwards;
}

.line-1 { animation-delay: 0.5s; }
.line-2 { animation-delay: 0.7s; }
.line-3 { animation-delay: 0.9s; }
.line-4 { animation-delay: 1.1s; }
.line-5 { animation-delay: 1.3s; }

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

/* Floating particles inside hero visual */
.floating-system .particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    animation: particleFly 6s ease-in-out infinite;
}

.floating-system .particle-1  { width: 6px;  height: 6px;  top: 20%; left: 30%; animation-delay: 0s;   }
.floating-system .particle-2  { width: 4px;  height: 4px;  top: 70%; left: 20%; animation-delay: 1s;   }
.floating-system .particle-3  { width: 5px;  height: 5px;  top: 30%; left: 70%; animation-delay: 2s;   }
.floating-system .particle-4  { width: 3px;  height: 3px;  top: 80%; left: 60%; animation-delay: 0.5s; }
.floating-system .particle-5  { width: 6px;  height: 6px;  top: 60%; left: 80%; animation-delay: 1.5s; }
.floating-system .particle-6  { width: 4px;  height: 4px;  top: 15%; left: 50%; animation-delay: 2.5s; }

@keyframes particleFly {
    0%   { opacity: 0; transform: translateY(0) scale(0); }
    20%  { opacity: 0.7; transform: translateY(-20px) scale(1); }
    80%  { opacity: 0.7; transform: translateY(-50px) scale(1); }
    100% { opacity: 0; transform: translateY(-70px) scale(0); }
}

/* ================================
   HERO FLOATING SYSTEM RESPONSIVE
   ================================ */
@media (max-width: 1200px) {
    .floating-system {
        width: 380px;
        height: 380px;
    }
    .float-main .float-card {
        width: 110px;
        height: 110px;
        font-size: 3rem;
    }
    .float-element .float-card {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-visual-dark {
        order: -1;
    }
    .floating-system {
        width: 320px;
        height: 320px;
    }
    .float-main .float-card {
        width: 95px;
        height: 95px;
        font-size: 2.5rem;
    }
    .float-element .float-card {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    .float-5 {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-visual-dark {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-visual-dark {
        display: none;
    }
}