/* ============================================
   SOLHITECH SARL - Premium Futuristic One Page
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors */
    --color-primary: #0A0F2C;
    --color-secondary: #121832;
    --color-dark: #050810;
    --color-gray-dark: #1a1f3c;
    --color-gray: #2d3561;
    --color-gray-light: #8892b0;

    /* Accent Colors */
    --color-accent: #7B2CBF;
    --color-accent-light: #9D4EDD;
    --color-accent-dark: #5A189A;
    --color-cyan: #00D9FF;
    --color-gold: #FFD700;
    --color-purple: #E040FB;

    /* Text Colors */
    --color-text: #E6E6E6;
    --color-text-muted: #8892b0;
    --color-text-light: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7B2CBF 0%, #00D9FF 100%);
    --gradient-secondary: linear-gradient(135deg, #5A189A 0%, #7B2CBF 100%);
    --gradient-dark: linear-gradient(180deg, #0A0F2C 0%, #050810 100%);
    --gradient-glow: radial-gradient(circle, rgba(123, 44, 191, 0.3) 0%, transparent 70%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Orbitron', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Borders */
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --border-glow: 1px solid rgba(123, 44, 191, 0.3);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background: var(--color-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Utility Classes ===== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent {
    color: var(--color-accent);
}

/* ===== Animated Background ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--gradient-dark);
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(123, 44, 191, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 44, 191, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.5; }
    50% { transform: translateY(-100px) translateX(50px); opacity: 1; }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 15, 44, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: var(--border-glow);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--color-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all var(--transition-normal);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 30px;
}

.nav-link:hover {
    color: var(--color-text-light);
}

.nav-link.cta-nav {
    background: var(--gradient-primary);
    color: var(--color-text-light);
    font-weight: 600;
    border-radius: 25px;
}

.nav-link.cta-nav::after {
    display: none;
}

.nav-link.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text-light);
    transition: all var(--transition-normal);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 24px 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 60px;
    position: relative;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(123, 44, 191, 0.15);
    border: 1px solid rgba(123, 44, 191, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-accent-light);
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-text-light);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--color-cyan);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-text-light);
    box-shadow: 0 4px 20px rgba(123, 44, 191, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(123, 44, 191, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
}

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

.btn-outline:hover {
    background: var(--color-accent);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.2rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-light);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-accent);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    position: relative;
    width: 400px;
    height: 400px;
}

.cyber-globe {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    border-color: rgba(123, 44, 191, 0.3);
    animation-direction: normal;
}

.ring-2 {
    width: 280px;
    height: 280px;
    border-color: rgba(0, 217, 255, 0.2);
    animation-duration: 25s;
    animation-direction: reverse;
}

.ring-3 {
    width: 360px;
    height: 360px;
    border-color: rgba(123, 44, 191, 0.1);
    animation-duration: 30s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.globe-core {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 0 60px rgba(123, 44, 191, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    animation: corePulse 3s infinite ease-in-out;
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(123, 44, 191, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 80px rgba(123, 44, 191, 0.7); }
}

.core-icon {
    font-size: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* SVG Icon Styles */
.badge-icon,
.btn-icon,
.card-icon,
.feature-icon,
.link-arrow,
.contact-icon {
    flex-shrink: 0;
}

.badge-icon {
    color: var(--color-accent-light);
}

.card-icon {
    color: var(--color-cyan);
}

.feature-icon {
    color: var(--color-cyan);
    margin-top: 2px;
}

.contact-icon {
    color: var(--color-accent-light);
}

.mv-icon {
    color: var(--color-accent-light);
    margin-bottom: 20px;
}

.mv-icon svg {
    stroke: currentColor;
}

.type-icon svg,
.sector-icon svg {
    stroke: currentColor;
}

.advantage-icon svg {
    stroke: white;
}

.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--color-cyan);
}

.dot-1 {
    animation: orbit1 20s linear infinite;
}

.dot-2 {
    animation: orbit2 25s linear infinite reverse;
}

.dot-3 {
    animation: orbit3 30s linear infinite;
}

@keyframes orbit1 {
    from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

@keyframes orbit2 {
    from { transform: rotate(0deg) translateX(140px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}

@keyframes orbit3 {
    from { transform: rotate(0deg) translateX(180px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    background: rgba(26, 31, 60, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 44, 191, 0.3);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-1 {
    top: 10%;
    left: -20%;
    animation: floatCard 6s infinite ease-in-out;
}

.card-2 {
    top: 60%;
    right: -15%;
    animation: floatCard 5s infinite ease-in-out 1s;
}

.card-3 {
    bottom: 5%;
    left: -10%;
    animation: floatCard 7s infinite ease-in-out 0.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-icon {
    font-size: 1.2rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-accent);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.5; }
}

/* ===== Animation Classes ===== */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(123, 44, 191, 0.15);
    border: 1px solid rgba(123, 44, 191, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-accent-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services {
    padding: var(--section-padding);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: rgba(26, 31, 60, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 44, 191, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 60px rgba(123, 44, 191, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.1) 0%, rgba(26, 31, 60, 0.5) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.service-icon-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.3) 0%, transparent 70%);
    filter: blur(10px);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--color-text);
}

.feature-icon {
    color: var(--color-cyan);
    font-size: 0.6rem;
    margin-top: 6px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.service-link:hover {
    color: var(--color-cyan);
    gap: 12px;
}

.link-arrow {
    transition: transform var(--transition-normal);
}

.service-link:hover .link-arrow {
    transform: translateX(5px);
}

/* ===== Why Us Section ===== */
.why-us {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(123, 44, 191, 0.05) 50%, transparent 100%);
}

.why-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.why-us-content .section-tag,
.why-us-content .section-title,
.why-us-content .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.advantages-list {
    margin-top: 40px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(26, 31, 60, 0.3);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    border: 1px solid transparent;
    transition: all var(--transition-normal);
}

.advantage-item:hover {
    border-color: rgba(123, 44, 191, 0.3);
    background: rgba(26, 31, 60, 0.5);
    transform: translateX(10px);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.advantage-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.advantage-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Hexagon Grid */
.why-us-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 350px;
    height: 350px;
}

.hexagon-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.hex {
    position: absolute;
    width: 80px;
    height: 90px;
    background: rgba(123, 44, 191, 0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-light);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.hex:hover {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.hex-1 { top: 0; left: 50%; transform: translateX(-50%); }
.hex-2 { top: 20%; right: 10%; }
.hex-3 { bottom: 20%; right: 10%; }
.hex-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.hex-5 { bottom: 20%; left: 10%; }
.hex-6 { top: 20%; left: 10%; }

.hex-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 140px;
    background: var(--gradient-primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 0 0 40px rgba(123, 44, 191, 0.5);
}

.center-icon {
    font-size: 1.5rem;
    color: var(--color-text-light);
}

.center-text {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-light);
}

/* Mission & Vision Cards */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: rgba(26, 31, 60, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 44, 191, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
}

.mv-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.mv-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.values-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.value-tag {
    background: rgba(123, 44, 191, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--color-accent-light);
}

/* ===== Clients Section ===== */
.clients {
    padding: var(--section-padding);
}

.client-types {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.client-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 40px;
    background: rgba(26, 31, 60, 0.5);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(123, 44, 191, 0.2);
    transition: all var(--transition-normal);
}

.client-type:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.type-icon {
    font-size: 2.5rem;
}

.client-type span {
    font-weight: 500;
    color: var(--color-text-light);
}

.sectors-wrapper {
    text-align: center;
}

.sectors-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.sector-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(26, 31, 60, 0.3);
    border-radius: var(--border-radius);
    border: 1px solid rgba(123, 44, 191, 0.1);
    transition: all var(--transition-normal);
}

.sector-card:hover {
    background: rgba(123, 44, 191, 0.1);
    border-color: rgba(123, 44, 191, 0.3);
}

.sector-icon {
    font-size: 1.5rem;
}

.sector-card span {
    font-size: 0.95rem;
    color: var(--color-text);
}

/* ===== Founder Section ===== */
.founder {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(123, 44, 191, 0.08) 50%, transparent 100%);
}

.founder-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-content {
    text-align: left;
}

.founder-role {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 24px;
    font-weight: 500;
}

.founder-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 16px;
}

.founder-bio em {
    color: var(--color-text-light);
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0 32px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(123, 44, 191, 0.1);
    border: 1px solid rgba(123, 44, 191, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.credential svg {
    stroke: var(--color-accent);
}

.founder-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.founder-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-showcase {
    position: relative;
}

.book-cover {
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition-normal);
    filter: drop-shadow(0 20px 40px rgba(123, 44, 191, 0.3));
}

.book-showcase:hover .book-cover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.book-badge {
    position: absolute;
    top: -15px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}

@media (max-width: 900px) {
    .founder-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .founder-content {
        text-align: center;
    }

    .founder-credentials {
        justify-content: center;
    }

    .founder-cta {
        justify-content: center;
    }

    .founder-visual {
        order: -1;
    }
}

/* ===== FAQ Section ===== */
.faq {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(123, 44, 191, 0.05) 50%, transparent 100%);
}

/* Quick Answer - GEO Optimization */
.quick-answer {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.15) 0%, rgba(0, 217, 255, 0.1) 100%);
    border: 1px solid rgba(123, 44, 191, 0.3);
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.quick-answer-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-answer-icon svg {
    stroke: white;
}

.quick-answer p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.quick-answer a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.quick-answer a:hover {
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .quick-answer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(26, 31, 60, 0.5);
    border: 1px solid rgba(123, 44, 191, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(123, 44, 191, 0.4);
}

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: 0 10px 40px rgba(123, 44, 191, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--color-text-light);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    color: var(--color-accent-light);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--color-accent);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: var(--color-accent-light);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.faq-answer a:hover {
    color: var(--color-cyan);
}

.faq-answer strong {
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 20px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(123, 44, 191, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(26, 31, 60, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 44, 191, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    background: rgba(123, 44, 191, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--color-accent-light);
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* CTA Visual */
.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-graphic {
    position: relative;
    width: 250px;
    height: 250px;
}

.connection-svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 2s ease forwards infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 0.2s; }
.line-3 { animation-delay: 0.4s; }
.line-4 { animation-delay: 0.6s; }
.line-5 { animation-delay: 0.8s; }
.line-6 { animation-delay: 1s; }

@keyframes drawLine {
    0%, 100% { stroke-dashoffset: 100; }
    50% { stroke-dashoffset: 0; }
}

.node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(26, 31, 60, 0.9);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.node-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 0 30px rgba(123, 44, 191, 0.5);
}

.node-1 { top: 0; left: 30%; }
.node-2 { top: 0; right: 30%; }
.node-3 { top: 40%; right: 0; }
.node-4 { bottom: 0; right: 30%; }
.node-5 { bottom: 0; left: 30%; }
.node-6 { top: 40%; left: 0; }

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    background: var(--color-dark);
    border-top: 1px solid rgba(123, 44, 191, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer-contact {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.contact-item a:hover {
    color: var(--color-accent-light);
}

.contact-icon {
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text);
    transition: all var(--transition-normal);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-made {
    color: var(--color-text-muted);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 40px;
    }

    .hero-graphic {
        width: 300px;
        height: 300px;
    }

    .float-card {
        display: none;
    }

    .why-us-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-us-content .section-tag,
    .why-us-content .section-title,
    .why-us-content .section-subtitle {
        text-align: center;
    }

    .advantage-item:hover {
        transform: translateY(-5px);
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 15, 44, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        transition: right var(--transition-normal);
        border-left: 1px solid rgba(123, 44, 191, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .client-types {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .advantage-item {
        flex-direction: column;
        text-align: center;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .cta-wrapper {
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* Selection */
::selection {
    background: rgba(123, 44, 191, 0.5);
    color: var(--color-text-light);
}
