/* =============================================
   T&Y MedCold Care Platform - Main CSS
   Version 1.0
   Direction: RTL - Arabic
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
    --primary-dark: #0A2647;
    --primary-mid: #144272;
    --primary-light: #2C74B3;
    --primary-pale: #205295;
    --gold: #F0A500;
    --gold-dark: #d4900a;
    --gold-light: #FFD166;
    --white: #FFFFFF;
    --off-white: #F8FAFF;
    --text-dark: #1a1a2e;
    --text-medium: #4a5568;
    --text-light: #718096;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --orange: #F97316;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 8px 32px rgba(240, 165, 0, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-main: 'Cairo', 'Tajawal', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    direction: rtl;
    text-align: right;
    background-color: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

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

ul { list-style: none; }

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

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: var(--radius-full);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 16px 0;
    background: transparent;
    transition: all var(--transition-slow);
}

.navbar.scrolled {
    background: rgba(10, 38, 71, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 28px;
    animation: spin 8s linear infinite;
    display: inline-block;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-demo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.btn-demo:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(240, 165, 0, 0.5);
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #040e1a 0%, var(--primary-dark) 30%, var(--primary-mid) 70%, #1a5298 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 60px;
}

/* Particles Container */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

/* Grid Overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(44, 116, 179, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(44, 116, 179, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 165, 0, 0.15);
    border: 1px solid rgba(240, 165, 0, 0.4);
    color: var(--gold-light);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

.hero-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    animation: fadeInDown 0.9s ease both;
}

.snowflake-big {
    font-size: 48px;
    animation: floatSnow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(44, 116, 179, 0.8));
}

@keyframes floatSnow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(20deg); }
}

.hero-brand {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease both;
    letter-spacing: -1px;
}

.title-highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: var(--radius-full);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-description {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 48px;
    line-height: 1.8;
    animation: fadeInUp 1.1s ease both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 24px 40px;
    animation: fadeInUp 1.2s ease both;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}

.stat-number {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-text {
    font-size: clamp(24px, 3.5vw, 42px);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: fadeInUp 1.3s ease both;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    font-size: 17px;
    font-weight: 800;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(240, 165, 0, 0.5);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    font-size: 17px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* =============================================
   SECTIONS COMMON
   ============================================= */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.warning-badge {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--warning);
}

.solution-badge {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.how-badge {
    background: rgba(44, 116, 179, 0.12);
    border: 1px solid rgba(44, 116, 179, 0.3);
    color: var(--primary-light);
}

.stats-badge {
    background: rgba(240, 165, 0, 0.15);
    border: 1px solid rgba(240, 165, 0, 0.3);
    color: var(--gold-light);
}

.packages-badge {
    background: rgba(44, 116, 179, 0.12);
    border: 1px solid rgba(44, 116, 179, 0.3);
    color: var(--primary-light);
}

.sectors-badge {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.compliance-badge {
    background: rgba(240, 165, 0, 0.15);
    border: 1px solid rgba(240, 165, 0, 0.3);
    color: var(--gold-light);
}

.founder-badge {
    background: rgba(44, 116, 179, 0.12);
    border: 1px solid rgba(44, 116, 179, 0.3);
    color: var(--primary-light);
}

.section-title {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-title.light {
    color: var(--white);
}

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

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.7);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   PROBLEM SECTION
   ============================================= */
.problem-section {
    background: #f4f7ff;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.problem-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    border: 1px solid #e8eef8;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--warning);
}

.problem-card:nth-child(2)::before { background: var(--danger); }
.problem-card:nth-child(3)::before { background: var(--orange); }
.problem-card:nth-child(4)::before { background: var(--primary-light); }

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.problem-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.problem-icon-wrap.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.problem-icon-wrap.danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.problem-icon-wrap.orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
}

.problem-icon-wrap.blue {
    background: rgba(44, 116, 179, 0.1);
    color: var(--primary-light);
}

.problem-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem-badge.danger-badge {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.problem-badge.orange-badge {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
}

.problem-badge.blue-badge {
    background: rgba(44, 116, 179, 0.1);
    color: var(--primary-light);
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

.problem-range {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.range-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--warning);
    background: rgba(245, 158, 11, 0.08);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.range-item.danger {
    color: #2C74B3;
    background: rgba(44, 116, 179, 0.08);
}

.problem-impact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-medium);
    background: var(--off-white);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    margin-top: 8px;
}

/* =============================================
   SOLUTION SECTION
   ============================================= */
.solution-section {
    background: var(--off-white);
}

.solution-intro {
    margin-bottom: 48px;
}

.solution-intro-text {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    color: var(--white);
}

.intro-icon {
    flex-shrink: 0;
}

.snowflake-medium {
    font-size: 48px;
    animation: floatSnow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(44, 116, 179, 0.8));
}

.snowflake-small {
    font-size: 32px;
    animation: floatSnow 4s ease-in-out infinite;
}

.solution-intro-text h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white);
}

.solution-intro-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid #e8eef8;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Glass variant */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.iot-icon { background: rgba(44, 116, 179, 0.12); color: var(--primary-light); }
.ai-icon { background: rgba(16, 185, 129, 0.12); color: var(--success); }
.app-icon { background: rgba(249, 115, 22, 0.12); color: var(--orange); }
.sfda-icon { background: rgba(240, 165, 0, 0.12); color: var(--gold); }
.cmms-icon { background: rgba(10, 38, 71, 0.08); color: var(--primary-dark); }
.alert-icon { background: rgba(239, 68, 68, 0.12); color: var(--danger); }

.feature-content {
    flex: 1;
}

.feature-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary-dark);
    color: var(--gold);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.feature-content h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.feature-content p {
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 14px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-medium);
}

.feature-list li i {
    color: var(--success);
    font-size: 12px;
    flex-shrink: 0;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-section {
    background: linear-gradient(180deg, #f4f7ff 0%, var(--white) 100%);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.steps-line {
    position: absolute;
    top: 40px;
    bottom: 40px;
    right: 39px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-light), var(--primary-dark));
    z-index: 0;
}

.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
}

.step:last-child {
    padding-bottom: 0;
}

.step-number {
    position: absolute;
    right: 16px;
    top: 4px;
    font-size: 11px;
    font-weight: 900;
    color: var(--primary-light);
    width: 48px;
    text-align: center;
}

.step-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(10, 38, 71, 0.3);
    border: 4px solid var(--off-white);
    transition: all var(--transition);
}

.step:hover .step-icon-wrap {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-mid));
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(44, 116, 179, 0.4);
}

.step-content {
    flex: 1;
    padding-top: 12px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 0;
    border: 1px solid #e8eef8;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step:hover .step-content {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.step-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.step-tags span {
    padding: 4px 12px;
    background: rgba(44, 116, 179, 0.08);
    color: var(--primary-mid);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
    background: linear-gradient(135deg, #040e1a 0%, var(--primary-dark) 40%, var(--primary-mid) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(44, 116, 179, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 165, 0, 0.1) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(240, 165, 0, 0.3);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(240, 165, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    margin: 0 auto 16px;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.stat-value .counter,
.stat-value span:first-child {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-unit {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.stat-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin-bottom: 8px;
}

.stat-growth {
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
}

.stat-display-val {
    color: var(--gold-light);
}

/* Revenue Projection */
.revenue-projection {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    z-index: 1;
}

.revenue-projection h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 32px;
    text-align: center;
}

.revenue-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.revenue-bar-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bar-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    min-width: 100px;
    text-align: right;
}

.bar-container {
    flex: 1;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-light), var(--gold));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-fill.animated {
    transform: scaleX(1);
}

/* =============================================
   PACKAGES SECTION
   ============================================= */
.packages-section {
    background: #f4f7ff;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    align-items: start;
    margin-bottom: 32px;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid #e8eef8;
    overflow: hidden;
    transition: all var(--transition-slow);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.featured-package {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(240, 165, 0, 0.2);
    transform: scale(1.02);
    z-index: 2;
}

.featured-package:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--primary-dark);
    padding: 8px 24px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

.package-header {
    padding: 40px 32px 28px;
    text-align: center;
}

.basic-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.advanced-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
    color: var(--white);
}

.smart-header {
    background: linear-gradient(135deg, #1a1a2e, var(--primary-dark));
}

.package-medal {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.package-header h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 4px;
}

.basic-header h3 { color: var(--primary-dark); }
.advanced-header h3 { color: var(--white); }
.smart-header h3 { color: var(--white); }

.package-name-en {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.7;
}

.basic-header .package-name-en { color: var(--text-medium); }
.advanced-header .package-name-en { color: rgba(255,255,255,0.7); }
.smart-header .package-name-en { color: var(--gold-light); }

.package-body {
    padding: 28px 32px 32px;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-medium);
}

.package-features li i.fa-check {
    color: var(--success);
    font-size: 14px;
    flex-shrink: 0;
}

.package-features li i.fa-times {
    color: #ccc;
    font-size: 14px;
    flex-shrink: 0;
}

.package-features li.disabled {
    color: #bbb;
}

.package-features li.premium {
    color: var(--primary-mid);
    font-weight: 600;
}

.package-features li.premium i {
    color: var(--gold) !important;
}

.btn-package {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.basic-btn {
    background: #f0f4f8;
    color: var(--primary-dark);
    border: 2px solid #e0e8f0;
}

.basic-btn:hover {
    background: var(--primary-pale);
    color: var(--white);
    border-color: var(--primary-pale);
}

.advanced-btn {
    background: var(--gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.advanced-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(240, 165, 0, 0.4);
}

.smart-btn {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
    color: var(--white);
}

.smart-btn:hover {
    background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
    transform: translateY(-2px);
}

.packages-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(44, 116, 179, 0.08);
    border: 1px solid rgba(44, 116, 179, 0.2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-size: 14px;
    color: var(--primary-mid);
}

.packages-note i {
    font-size: 18px;
    flex-shrink: 0;
}

.packages-note a {
    color: var(--primary-light);
    font-weight: 700;
    text-decoration: underline;
}

/* =============================================
   SECTORS SECTION
   ============================================= */
.sectors-section {
    background: var(--off-white);
}

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

.sector-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid #e8eef8;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.sector-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(44, 116, 179, 0.3);
}

.sector-card:hover::after {
    transform: scaleX(1);
}

.sector-icon {
    font-size: 52px;
    margin-bottom: 16px;
    display: block;
    transition: var(--transition);
}

.sector-card:hover .sector-icon {
    transform: scale(1.15) rotate(5deg);
}

.sector-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.sector-card p {
    font-size: 13px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* =============================================
   COMPLIANCE SECTION
   ============================================= */
.compliance-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 60%, #1a5298 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.compliance-section::before {
    content: '❄';
    position: absolute;
    font-size: 300px;
    opacity: 0.03;
    top: -50px;
    left: -50px;
    animation: floatSnow 6s ease-in-out infinite;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.comp-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    transition: all var(--transition);
}

.comp-badge:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
    border-color: rgba(240, 165, 0, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.vision-badge:hover {
    border-color: rgba(240, 165, 0, 0.6);
    background: rgba(240, 165, 0, 0.15);
}

.comp-icon {
    font-size: 24px;
    color: var(--success);
}

.comp-info {
    display: flex;
    flex-direction: column;
}

.comp-info strong {
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
}

.comp-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

.compliance-desc {
    position: relative;
    z-index: 1;
}

.compliance-desc-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    max-width: 700px;
    margin: 0 auto;
}

.compliance-desc-inner i {
    font-size: 36px;
    color: var(--gold);
    flex-shrink: 0;
}

.compliance-desc-inner p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* =============================================
   FOUNDER SECTION
   ============================================= */
.founder-section {
    background: var(--off-white);
}

.founder-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    gap: 48px;
    align-items: center;
    border: 1px solid #e8eef8;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.founder-avatar {
    position: relative;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 32px rgba(10, 38, 71, 0.3);
}

.founder-badge-exp {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    text-align: center;
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
}

.founder-badge-exp span {
    font-size: 16px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.founder-badge-exp small {
    font-size: 10px;
    font-weight: 600;
}

.founder-info {
    flex: 1;
}

.founder-info h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.founder-title {
    font-size: 16px;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 16px;
}

.founder-bio p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.founder-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-medium);
}

.highlight-item i {
    color: var(--primary-light);
    width: 16px;
    flex-shrink: 0;
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--off-white);
    color: var(--primary-mid);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e0e8f0;
    transition: var(--transition);
}

.contact-link:hover {
    background: var(--primary-mid);
    color: var(--white);
    border-color: var(--primary-mid);
    transform: translateY(-2px);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 10% 50%, rgba(240, 165, 0, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 50%, rgba(44, 116, 179, 0.2) 0%, transparent 60%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
}

.contact-info h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: var(--white);
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-4px);
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-method i {
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-method i { background: rgba(37, 211, 102, 0.2); color: #25D366; }
.phone-method i { background: rgba(44, 116, 179, 0.2); color: var(--primary-light); }
.email-method i { background: rgba(240, 165, 0, 0.2); color: var(--gold); }

.contact-method div {
    display: flex;
    flex-direction: column;
}

.contact-method strong {
    font-size: 14px;
    font-weight: 700;
}

.contact-method span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.coverage-info {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
}

.coverage-info h4 {
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coverage-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
}

.city.active i { color: var(--success); }
.city.soon { color: rgba(255, 255, 255, 0.5); }
.city.soon i { color: var(--gold); }

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.contact-form h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--primary-light);
    width: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--off-white);
    border: 2px solid #e0e8f0;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--text-dark);
    direction: rtl;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(44, 116, 179, 0.1);
}

.form-group input::placeholder {
    color: #aab;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(10, 38, 71, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    color: var(--success);
    font-size: 14px;
    font-weight: 600;
}

.form-success.show {
    display: flex;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #040e1a;
    color: var(--white);
}

.footer-top {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-main {
    font-size: 18px;
    font-weight: 800;
    display: block;
    color: var(--white);
}

.footer-logo-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.whatsapp:hover { background: #25D366; border-color: #25D366; color: var(--white); }
.social-link.email:hover { background: var(--gold); border-color: var(--gold); color: var(--primary-dark); }
.social-link.phone:hover { background: var(--primary-light); border-color: var(--primary-light); color: var(--white); }

.footer-links h4,
.footer-services h4,
.footer-contact-info h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(240, 165, 0, 0.3);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul a,
.footer-services ul a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.footer-links ul a:hover,
.footer-services ul a:hover {
    color: var(--gold-light);
    transform: translateX(-4px);
}

.footer-links ul a i,
.footer-services ul a i {
    font-size: 12px;
    color: var(--primary-light);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
}

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

.footer-bottom-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-comp-badge {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   FLOATING ELEMENTS
   ============================================= */

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all var(--transition);
    animation: floatWA 3s ease-in-out infinite;
}

@keyframes floatWA {
    0%, 100% { transform: translateY(0); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
    50% { transform: translateY(-8px); box-shadow: 0 16px 32px rgba(37, 211, 102, 0.4); }
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1) !important;
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.85);
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-light);
    transform: translateY(-4px);
}

/* =============================================
   PARTICLES (CSS-based)
   ============================================= */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        background: rgba(10, 38, 71, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition-slow);
        z-index: 999;
        border-bottom: 2px solid rgba(240, 165, 0, 0.3);
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-link {
        padding: 12px 16px;
        display: block;
        border-radius: var(--radius-md);
        font-size: 16px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .btn-demo {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .stat-item {
        padding: 0;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary, .btn-outline {
        justify-content: center;
    }
    
    .founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 32px 24px;
        gap: 32px;
    }
    
    .founder-highlights {
        align-items: center;
    }
    
    .founder-contact {
        justify-content: center;
    }
    
    .steps-line {
        display: none;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        display: none;
    }
    
    .step-content {
        width: 100%;
    }
    
    .step-tags {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .compliance-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .comp-badge {
        width: 100%;
        max-width: 320px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-package {
        transform: none;
    }
    
    .featured-package:hover {
        transform: translateY(-8px);
    }
    
    .solution-intro-text {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .revenue-bar-item {
        flex-direction: column;
        align-items: flex-end;
    }
    
    .bar-label {
        min-width: unset;
    }
    
    .bar-container {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 70px 0;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 360px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
