/* ====================================================
   Bilmart B2B - Professional Stylesheet
   Brand Colors inspired by bilmart.app
   ==================================================== */

:root {
    /* Brand Colors */
    --primary: #FF5A1F;
    --primary-dark: #E84A0F;
    --primary-light: #FF8B5C;
    --primary-soft: #FFF0E8;
    --secondary: #1A1F36;
    --secondary-light: #2A3050;
    --accent: #FFB800;
    --accent-2: #6C5CE7;

    /* Neutrals */
    --white: #ffffff;
    --black: #0A0E1A;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    /* Status */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #FF5A1F 0%, #FF8B5C 100%);
    --grad-primary-strong: linear-gradient(135deg, #FF4500 0%, #FF7A2F 100%);
    --grad-dark: linear-gradient(135deg, #1A1F36 0%, #2A3050 100%);
    --grad-warm: linear-gradient(135deg, #FF5A1F 0%, #FFB800 100%);
    --grad-purple: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.16);
    --shadow-orange: 0 14px 38px rgba(255, 90, 31, 0.35);
    --shadow-orange-lg: 0 24px 60px rgba(255, 90, 31, 0.45);

    /* Typography */
    --font-main: 'Tajawal', 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Cairo', 'Tajawal', sans-serif;

    /* Border Radius */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-2xl: 36px;
    --r-full: 999px;

    /* Spacing */
    --container: 1280px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-main);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* =================== BACKGROUND SHAPES =================== */
.bg-shapes {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.shape-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; right: -150px; }
.shape-2 { width: 400px; height: 400px; background: var(--accent-2); top: 40%; left: -100px; animation-delay: -5s; }
.shape-3 { width: 350px; height: 350px; background: var(--accent); bottom: 20%; right: 20%; animation-delay: -10s; }
.shape-4 { width: 300px; height: 300px; background: var(--primary-light); top: 70%; right: -50px; animation-delay: -15s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%      { transform: translate(40px, -40px) scale(1.05); }
    50%      { transform: translate(-30px, 50px) scale(0.95); }
    75%      { transform: translate(-50px, -30px) scale(1.03); }
}

/* =================== BUTTONS =================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange-lg);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}
.btn-primary:hover::before {
    width: 400px; height: 400px;
}

.btn-outline {
    background: transparent;
    color: var(--gray-800);
    border: 2px solid var(--gray-200);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
}
.btn-ghost:hover {
    color: var(--primary);
}

.btn-ghost-light {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.22);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.btn-large {
    padding: 16px 34px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* =================== NAVBAR =================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--gray-100);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 46px;
    height: 46px;
    background: var(--grad-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
}

.logo:hover .logo-mark {
    transform: rotate(-8deg) scale(1.05);
}

.logo-icon { font-size: 1.3rem; }

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

.logo-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--secondary);
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    padding: 10px 16px;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--r-md);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-soft);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    transition: var(--transition);
}

/* =================== HERO =================== */
.hero {
    padding: 160px 0 120px;
    position: relative;
    background: linear-gradient(180deg, #FFF8F3 0%, #FFFDFB 60%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--primary-soft);
    color: var(--primary);
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 22px;
    box-shadow: var(--shadow-sm);
}

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

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.7); }
    50%      { box-shadow: 0 0 0 8px rgba(255, 90, 31, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--secondary);
    margin-bottom: 22px;
}

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

.gradient-text-light {
    background: linear-gradient(135deg, #FFB800 0%, #FF8B5C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.brand-text {
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.brand-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 0;
    width: 100%;
    height: 6px;
    background: var(--accent);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.85;
    max-width: 560px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 18px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 46px;
    height: 46px;
    background: var(--grad-primary);
    border-radius: 50%;
    border: 3px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 0.85rem;
    margin-left: -10px;
    box-shadow: var(--shadow-sm);
}
.avatar:nth-child(2) { background: var(--grad-purple); }
.avatar:nth-child(3) { background: linear-gradient(135deg, #10B981 0%, #34D399 100%); }
.avatar-more { background: var(--secondary) !important; }

.trust-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.4;
}
.trust-text strong {
    display: block;
    color: var(--secondary);
    font-size: 1.05rem;
    font-weight: 800;
}

/* === Hero Phone Mockup === */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 580px;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: var(--secondary);
    border-radius: 48px;
    padding: 14px;
    box-shadow: 0 40px 80px rgba(26, 31, 54, 0.35), 0 20px 40px rgba(255, 90, 31, 0.2);
    position: relative;
    z-index: 5;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-15px) rotate(2deg); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #FFF8F3 0%, #FFFFFF 100%);
    border-radius: 36px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 24px;
    background: var(--secondary);
    border-radius: 14px;
    z-index: 3;
}

.screen-content {
    padding: 50px 18px 18px;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.screen-logo {
    width: 44px; height: 44px;
    background: var(--grad-primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: var(--shadow-orange);
}

.screen-title {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.screen-title span { font-size: 0.7rem; color: var(--gray-500); }
.screen-title strong { font-size: 0.95rem; color: var(--secondary); font-weight: 800; }
.screen-header > i { color: var(--gray-500); }

.screen-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.stat-card {
    background: var(--grad-primary);
    color: var(--white);
    padding: 14px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow-orange);
}
.stat-card-alt {
    background: var(--grad-dark);
    box-shadow: 0 10px 24px rgba(26,31,54,0.35);
}
.stat-card i { font-size: 0.95rem; opacity: 0.85; }
.stat-num { font-size: 1.4rem; font-weight: 900; }
.stat-label { font-size: 0.7rem; opacity: 0.85; }

.screen-list-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
}

.screen-order {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.order-icon {
    width: 36px; height: 36px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.order-icon-green { background: rgba(16,185,129,0.12); color: var(--success); }

.order-info { flex: 1; display: flex; flex-direction: column; line-height: 1.2; }
.order-info strong { font-size: 0.8rem; color: var(--secondary); font-weight: 800; }
.order-info span { font-size: 0.7rem; color: var(--gray-500); }
.order-time { font-size: 0.7rem; color: var(--primary); font-weight: 700; }

.screen-fab {
    position: absolute;
    bottom: 22px;
    left: 22px;
    width: 52px;
    height: 52px;
    background: var(--grad-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange-lg);
    font-size: 1.1rem;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 6;
    animation: floatCard 5s ease-in-out infinite;
}

.fc-icon {
    width: 44px;
    height: 44px;
    background: var(--grad-primary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.fc-icon-purple { background: var(--grad-purple); }
.fc-icon-green { background: linear-gradient(135deg, #10B981 0%, #34D399 100%); }

.fc-text { display: flex; flex-direction: column; line-height: 1.2; }
.fc-text strong { font-size: 0.95rem; color: var(--secondary); font-weight: 800; }
.fc-text span { font-size: 0.78rem; color: var(--gray-500); }

.float-card-1 { top: 8%; right: -10px; animation-delay: 0s; }
.float-card-2 { top: 42%; left: -20px; animation-delay: -1.5s; }
.float-card-3 { bottom: 12%; right: -20px; animation-delay: -3s; }

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

.hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; }

/* =================== TRUSTED BY =================== */
.trusted {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}
.trusted-title {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 28px;
}
.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.trusted-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition);
    filter: grayscale(1);
    opacity: 0.7;
}
.trusted-logo i { font-size: 1.4rem; }
.trusted-logo:hover {
    color: var(--primary);
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-3px);
}

/* =================== SECTION HEADER =================== */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--r-full);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 18px;
}
.section-badge.badge-light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 900;
    color: var(--secondary);
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-title-light { color: var(--white); }
.section-title-right { text-align: right; }

.section-sub {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.85;
}

/* =================== FEATURES =================== */
.features-section {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
}

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

.feature-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: var(--grad-primary);
    border-radius: 50%;
    transform: translate(40px, -40px);
    opacity: 0.06;
    transition: var(--transition);
}
.feature-card:hover::before {
    transform: translate(0, 0) scale(8);
    opacity: 0.04;
}

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

.feature-card.feature-highlight {
    background: var(--grad-dark);
    color: var(--white);
    border: none;
}
.feature-card.feature-highlight::before { background: var(--accent); opacity: 0.15; }
.feature-card.feature-highlight h3 { color: var(--white); }
.feature-card.feature-highlight p { color: rgba(255,255,255,0.75); }
.feature-card.feature-highlight .feature-tag {
    background: rgba(255,184,0,0.18);
    color: var(--accent);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--grad-primary);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
    box-shadow: var(--shadow-orange);
    position: relative;
    z-index: 2;
}
.icon-orange  { background: linear-gradient(135deg, #FF8B00 0%, #FFB800 100%); box-shadow: 0 10px 24px rgba(255,139,0,0.35); }
.icon-purple  { background: var(--grad-purple); box-shadow: 0 10px 24px rgba(108,92,231,0.35); }
.icon-blue    { background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%); box-shadow: 0 10px 24px rgba(59,130,246,0.35); }
.icon-green   { background: linear-gradient(135deg, #10B981 0%, #34D399 100%); box-shadow: 0 10px 24px rgba(16,185,129,0.35); }
.icon-pink    { background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%); box-shadow: 0 10px 24px rgba(236,72,153,0.35); }
.icon-yellow  { background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%); box-shadow: 0 10px 24px rgba(245,158,11,0.35); }
.icon-teal    { background: linear-gradient(135deg, #14B8A6 0%, #5EEAD4 100%); box-shadow: 0 10px 24px rgba(20,184,166,0.35); }
.icon-red     { background: linear-gradient(135deg, #EF4444 0%, #F87171 100%); box-shadow: 0 10px 24px rgba(239,68,68,0.35); }
.icon-indigo  { background: linear-gradient(135deg, #6366F1 0%, #818CF8 100%); box-shadow: 0 10px 24px rgba(99,102,241,0.35); }
.icon-emerald { background: linear-gradient(135deg, #059669 0%, #10B981 100%); box-shadow: 0 10px 24px rgba(5,150,105,0.35); }
.icon-orange-2 { background: linear-gradient(135deg, #FB923C 0%, #FDBA74 100%); box-shadow: 0 10px 24px rgba(251,146,60,0.35); }

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

.feature-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--r-full);
    font-size: 0.78rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* =================== HOW IT WORKS =================== */
.how-section {
    padding: 100px 0;
    background: var(--grad-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.how-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
}

.how-section .section-title { color: var(--white); }
.how-section .section-sub { color: rgba(255,255,255,0.7); }

.steps {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-lg);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    position: relative;
}
.step:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-8px);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    width: 40px;
    height: 40px;
    background: var(--grad-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: var(--shadow-orange);
    border: 3px solid var(--secondary);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,90,31,0.15);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 18px auto 22px;
    transition: var(--transition);
}
.step:hover .step-icon {
    background: var(--grad-primary);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}
.step p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.step-connector {
    flex: 0 0 50px;
    align-self: center;
    border-top: 2px dashed rgba(255,255,255,0.2);
    margin: 0 -10px;
    position: relative;
    z-index: 1;
}

/* =================== STATS =================== */
.stats-section {
    padding: 80px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-block {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--r-lg);
    background: var(--gray-50);
    transition: var(--transition);
    border: 2px solid transparent;
}
.stat-block:hover {
    background: var(--white);
    border-color: var(--primary-soft);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--grad-primary);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-orange);
}

.stat-block .stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--secondary);
    display: inline-block;
    line-height: 1;
}
.stat-block .stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}
.stat-block .stat-text {
    margin-top: 10px;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 1rem;
}

/* =================== SHOWCASE =================== */
.showcase-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showcase-content .section-badge { margin-bottom: 16px; }

.showcase-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.85;
    margin: 20px 0;
}

.showcase-list {
    margin: 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.showcase-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-weight: 600;
}
.showcase-list i { color: var(--success); font-size: 1.1rem; }

.showcase-cta { margin-top: 30px; }

/* Dashboard Mock */
.showcase-visual { display: flex; justify-content: center; }

.dashboard-mock {
    width: 100%;
    max-width: 520px;
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: rotate(-1deg);
    transition: var(--transition);
}
.dashboard-mock:hover { transform: rotate(0); }

.dash-header {
    background: var(--gray-100);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.dash-dots { display: flex; gap: 6px; }
.dash-dots span {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}
.dash-dots span:nth-child(1) { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: #FFBD2E; }
.dash-dots span:nth-child(3) { background: #28C940; }

.dash-title {
    flex: 1;
    text-align: center;
    color: var(--gray-600);
    font-size: 0.85rem;
    font-weight: 600;
}

.dash-body { padding: 24px; }

.dash-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.dash-card {
    padding: 18px;
    border-radius: var(--r-md);
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dash-card-orange { background: var(--grad-primary); }
.dash-card-blue { background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%); }
.dash-card i { font-size: 1.1rem; opacity: 0.85; }
.dash-card span { font-size: 0.78rem; opacity: 0.85; }
.dash-card strong { font-size: 1.1rem; font-weight: 800; }

.dash-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 130px;
    padding: 18px;
    background: var(--gray-50);
    border-radius: var(--r-md);
    margin-bottom: 18px;
    gap: 8px;
}
.chart-bar {
    flex: 1;
    background: var(--gray-200);
    border-radius: 6px 6px 0 0;
    transition: var(--transition);
    min-height: 10px;
}
.chart-bar-active { background: var(--grad-primary); box-shadow: var(--shadow-orange); }

.dash-mini {
    padding: 14px;
    background: var(--gray-50);
    border-radius: var(--r-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.dash-mini span { font-size: 0.78rem; color: var(--gray-500); }
.dash-mini strong { color: var(--secondary); font-weight: 800; }
.dash-mini i { color: var(--accent); }

/* =================== PRICING =================== */
.pricing-section {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: var(--r-xl);
    border: 2px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-soft);
    box-shadow: var(--shadow-lg);
}

.pricing-featured {
    background: var(--grad-dark);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.04);
    box-shadow: var(--shadow-xl);
}
.pricing-featured:hover { transform: scale(1.04) translateY(-8px); }

.pricing-ribbon {
    position: absolute;
    top: -14px;
    right: 30px;
    background: var(--grad-warm);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--r-full);
    font-weight: 800;
    font-size: 0.78rem;
    box-shadow: var(--shadow-orange);
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--secondary);
}
.pricing-featured .pricing-header h3 { color: var(--white); }
.pricing-header p {
    color: var(--gray-500);
    margin-bottom: 22px;
    font-size: 0.95rem;
}
.pricing-featured .pricing-header p { color: rgba(255,255,255,0.7); }

.pricing-price {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.pricing-featured .pricing-price { border-bottom-color: rgba(255,255,255,0.1); }

.price-currency {
    font-size: 1.1rem;
    color: var(--gray-500);
    font-weight: 700;
}
.pricing-featured .price-currency { color: rgba(255,255,255,0.7); }

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}
.pricing-featured .price-amount { color: var(--white); }

.price-period {
    color: var(--gray-500);
    font-size: 0.95rem;
}
.pricing-featured .price-period { color: rgba(255,255,255,0.7); }

.pricing-features {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-size: 0.95rem;
}
.pricing-featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-features i { color: var(--success); font-size: 1rem; }
.pricing-features li.muted { color: var(--gray-400); }
.pricing-features li.muted i { color: var(--gray-300); }
.pricing-featured .pricing-features li.muted { color: rgba(255,255,255,0.4); }

/* =================== TESTIMONIALS =================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.quote-icon {
    position: absolute;
    top: 24px;
    left: 24px;
    color: var(--primary-soft);
    font-size: 3rem;
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}

.testimonial-card p {
    color: var(--gray-700);
    line-height: 1.85;
    margin-bottom: 22px;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-100);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--grad-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.author-info { display: flex; flex-direction: column; }
.author-info strong { color: var(--secondary); font-weight: 800; }
.author-info span { color: var(--gray-500); font-size: 0.85rem; }

/* =================== REGISTRATION =================== */
.register-section {
    padding: 100px 0;
    background: var(--grad-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.register-section::before {
    content: '';
    position: absolute;
    top: -150px; left: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.register-info .section-title { color: var(--white); margin-bottom: 18px; }

.register-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.85;
    margin-bottom: 32px;
}

.register-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.perk {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-md);
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.95rem;
}
.perk i { color: var(--accent); font-size: 1.1rem; }

/* Form */
.register-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    color: var(--gray-800);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--gray-100);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group { margin-bottom: 18px; }
.form-row .form-group { margin-bottom: 0; }

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.92rem;
}
.form-group label span { color: var(--primary); }

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.input-wrap > i {
    position: absolute;
    right: 16px;
    color: var(--gray-400);
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 2;
}
.textarea-wrap > i { top: 16px; }

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
    width: 100%;
    padding: 14px 44px 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--r-md);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: var(--transition);
    font-family: inherit;
}
.input-wrap textarea { resize: vertical; min-height: 90px; }

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 90, 31, 0.12);
}

.input-wrap input:focus + i,
.input-wrap select:focus + i,
.input-wrap textarea:focus + i {
    color: var(--primary);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gray-700);
    font-size: 0.92rem;
    margin: 18px 0 24px;
    cursor: pointer;
}
.form-check input { margin-top: 4px; accent-color: var(--primary); }
.form-check a { color: var(--primary); font-weight: 700; }
.form-check a:hover { text-decoration: underline; }

.form-success {
    display: none;
    margin-top: 18px;
    padding: 14px 18px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    color: var(--success);
    border-radius: var(--r-md);
    font-weight: 700;
    text-align: center;
}
.form-success.show { display: block; animation: fadeIn 0.5s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =================== FAQ =================== */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--gray-50);
    border-radius: var(--r-md);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--primary-soft);
}
.faq-item[open] {
    background: var(--primary-soft);
    border-color: var(--primary);
}

.faq-item summary {
    padding: 20px 26px;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: 300;
    transition: var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
    padding: 0 26px 22px;
    color: var(--gray-600);
    line-height: 1.85;
}

/* =================== CTA BANNER =================== */
.cta-banner {
    padding: 60px 0 100px;
    background: var(--white);
}

.cta-card {
    background: var(--grad-primary-strong);
    padding: 60px 50px;
    border-radius: var(--r-2xl);
    color: var(--white);
    box-shadow: var(--shadow-orange-lg);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.cta-card::after {
    content: '';
    position: absolute;
    bottom: -150px; right: -50px;
    width: 350px; height: 350px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}
.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 14px;
}
.brand-text-cta {
    background: var(--white);
    color: var(--primary);
    padding: 2px 14px;
    border-radius: var(--r-md);
    display: inline-block;
}
.cta-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

/* =================== FOOTER =================== */
.footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-family: var(--font-display);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}
.footer-col ul a:hover {
    color: var(--primary-light);
    padding-right: 6px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}
.contact-list i {
    color: var(--primary);
    font-size: 1rem;
    width: 18px;
}

.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand p {
    margin: 0 0 22px;
    line-height: 1.85;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 10px;
}
.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 0.95rem;
}
.social-links a:hover {
    background: var(--grad-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
}

.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { transition: var(--transition); }
.footer-links a:hover { color: var(--primary-light); }

/* =================== FLOATING ELEMENTS =================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: var(--transition);
    animation: wpPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }

@keyframes wpPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45); }
    50%      { box-shadow: 0 10px 40px rgba(37, 211, 102, 0.7); }
}

.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 50px;
    height: 50px;
    background: var(--grad-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-orange);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transition);
}
.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.scroll-top:hover { transform: translateY(-4px); }

/* =================== ANIMATIONS ON SCROLL =================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1100px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--gray-100);
    }
    .nav-links.active a { width: 100%; padding: 14px 18px; border-radius: var(--r-md); }

    .hero-container { grid-template-columns: 1fr; gap: 80px; }
    .hero-visual { min-height: 600px; }
    .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
    .register-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .pricing-featured { transform: scale(1); }
    .pricing-featured:hover { transform: translateY(-8px); }
    .step-connector { display: none; }
}

@media (max-width: 768px) {
    .hero { padding: 130px 0 80px; }
    .hero-title { font-size: 2.2rem; }
    .nav-actions .btn-ghost { display: none; }
    .features-section, .how-section, .stats-section,
    .showcase-section, .pricing-section, .testimonials-section,
    .register-section, .faq-section { padding: 70px 0; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 26px;
    }
    .showcase-list { grid-template-columns: 1fr; }
    .register-perks { grid-template-columns: 1fr; }
    .trusted-logos { gap: 28px; }
    .register-form { padding: 28px 22px; }
    .floating-card { padding: 10px 14px; }
    .float-card-1 { right: 0; }
    .float-card-2 { left: 0; }
    .float-card-3 { right: 0; }
    .phone-mockup { width: 280px; height: 560px; }
    .hero-visual { min-height: 540px; }
    .nav-container { gap: 12px; }
    .logo-text { display: none; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .step { min-width: 100%; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-block .stat-number { font-size: 2.2rem; }
    .price-amount { font-size: 2.4rem; }
    .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 20px; left: 20px; }
    .scroll-top { width: 44px; height: 44px; bottom: 20px; right: 20px; }
}
