/* ==========================================================================
   LOGIC LUMINARY - MODERN WHITE & ROYAL PURPLE ENTERPRISE DESIGN SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COLOR PALETTE & DESIGN TOKENS (WHITE & PURPLE LIGHT THEME)
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors (White Base, Deep Royal Purple & Amber Gold) */
    --bg-dark: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FAFC;
    --bg-header: rgba(255, 255, 255, 0.92);
    
    --purple-primary: #5B21B6;   /* Matte Royal Purple */
    --purple-deep: #3B0764;      /* Deep Matte Purple */
    --purple-light: #6D28D9;     /* Soft Matte Purple */
    --purple-glow: rgba(107, 33, 168, 0.15);
    
    --amber-gold: #D97706;       /* Warm Matte Amber */
    --amber-light: #F59E0B;
    --amber-glow: rgba(217, 119, 6, 0.1);

    --accent-cyan: #0284C7;
    --accent-emerald: #059669;

    /* Text Colors for Clean Matte Enterprise Theme */
    --text-primary: #3B0764;   /* Deep Matte Royal Purple */
    --text-secondary: #475569; /* Crisp Matte Slate Gray */
    --text-muted: #64748B;     /* Muted Matte Captions */
    
    /* UI Borders & Surfaces */
    --border-subtle: #E2E8F0;
    --border-glow: rgba(91, 33, 182, 0.2);
    --border-gold: rgba(217, 119, 6, 0.25);
    --glass-blur: blur(20px) saturate(180%);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-glow: 0 15px 30px rgba(107, 33, 168, 0.1);
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

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

a:hover {
    color: var(--amber-gold);
}

/* Text Highlights & Gradients */
.text-gradient {
    background: linear-gradient(135deg, #7C3AED 0%, #6B21A8 50%, #D97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --------------------------------------------------------------------------
   3. AMBIENT BACKGROUND GLOW & ANIMATIONS (LIGHT THEME)
   -------------------------------------------------------------------------- */
.ambient-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    animation: floatOrb 22s infinite alternate ease-in-out;
}

.glow-purple-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--purple-light) 0%, rgba(255,255,255,0) 70%);
    top: -15%;
    left: -10%;
}

.glow-amber-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--amber-light) 0%, rgba(255,255,255,0) 70%);
    bottom: 10%;
    right: -10%;
    animation-delay: -7s;
}

.glow-violet-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #A855F7 0%, rgba(255,255,255,0) 70%);
    top: 45%;
    left: 40%;
    animation-delay: -14s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 80%);
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 60px) scale(1.1); }
    100% { transform: translate(-30px, -40px) scale(0.9); }
}

/* --------------------------------------------------------------------------
   4. HEADER NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 4px 10px rgba(107, 33, 168, 0.2));
    transition: var(--transition-smooth);
}

.brand-logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
}

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

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #6B21A8;
    letter-spacing: 0.05em;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--purple-primary);
    letter-spacing: 0.15em;
}

.logo-tagline {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--amber-gold);
    letter-spacing: 0.08em;
    margin-top: 2px;
    text-transform: uppercase;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-primary), var(--amber-gold));
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--purple-primary);
}

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

/* Header CTAs */
.header-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: #F1F5F9;
    border: 1px solid var(--border-subtle);
}

.btn-phone:hover {
    background: rgba(107, 33, 168, 0.08);
    border-color: var(--border-glow);
    color: var(--purple-primary);
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-btn .bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* --------------------------------------------------------------------------
   5. BUTTON SYSTEM
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-decoration: none;
}

.btn-primary {
    background: #5B21B6;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(91, 33, 182, 0.22);
}

.btn-primary:hover {
    background: #4C1D95;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 33, 182, 0.32);
    color: #FFFFFF;
}

.btn-secondary {
    background: #F5F3FF;
    color: #5B21B6;
    border: 1px solid #DDD6FE;
}

.btn-secondary:hover {
    background: #EDE9FE;
    border-color: #C4B5FD;
    transform: translateY(-2px);
    color: #4C1D95;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: 14px;
}

.btn-full {
    width: 100%;
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    transform: rotate(30deg);
    transition: 0.6s ease;
    opacity: 0;
}

.glow-btn:hover::before {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   6. LAYOUT & CONTAINER UTILITIES
   -------------------------------------------------------------------------- */
.section-padding {
    padding: 6rem 1.5rem;
    position: relative;
    z-index: 1;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    background: rgba(107, 33, 168, 0.08);
    color: var(--purple-primary);
    border: 1px solid var(--border-glow);
    margin-bottom: 1rem;
}

.section-tag.gold-tag {
    background: rgba(217, 119, 6, 0.08);
    color: var(--amber-gold);
    border-color: var(--border-gold);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #6B21A8;
}

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

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.align-center {
    align-items: center;
}

/* --------------------------------------------------------------------------
   7. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    padding-top: 10rem;
    padding-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--amber-gold);
    background: rgba(217, 119, 6, 0.08);
    border: 1px solid var(--border-gold);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.tagline-headline-banner {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: #F5F3FF;
    border: 1px solid #DDD6FE;
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(91, 33, 182, 0.05);
}

.tagline-text-glow {
    color: #5B21B6;
    font-weight: 800;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--amber-gold);
    box-shadow: 0 0 8px var(--amber-gold);
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
    100% { transform: scale(0.9); opacity: 1; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    color: #3B0764;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.25rem;
    max-width: 620px;
}

.hero-action-btns {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

/* Stats Bar */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.05);
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--purple-primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Hero Visual & Graphics */
.hero-visual {
    position: relative;
    padding: 1.5rem 0;
}

.visual-card-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid var(--border-glow);
    box-shadow: 0 25px 65px -10px rgba(107, 33, 168, 0.18), 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.visual-card-wrapper:hover {
    border-color: var(--purple-primary);
    box-shadow: 0 35px 85px -10px rgba(107, 33, 168, 0.25);
    transform: translateY(-4px);
}

.window-header-bar {
    position: relative;
    z-index: 2;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.win-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.win-dot.red { background: #FF5F56; }
.win-dot.yellow { background: #FFBD2E; }
.win-dot.green { background: #27C93F; }

.window-title-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: monospace;
    font-size: 0.8rem;
    font-weight: 700;
    color: #334155;
}

.pulse-green-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 8px #10B981;
    animation: pulseDot 2s infinite;
}

.window-status-tag {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.window-bottom-bar {
    position: relative;
    z-index: 2;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0.75rem;
}

.metric-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: #6B21A8;
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.pill-icon {
    font-size: 0.9rem;
}

/* Floating Tech Cards */
.floating-tech-card {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(124, 58, 237, 0.25);
    padding: 1rem 1.35rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12), 0 8px 16px -4px rgba(107, 33, 168, 0.1);
    animation: floatCard 6s ease-in-out infinite alternate;
    transition: var(--transition-fast);
}

.floating-tech-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--purple-primary);
    box-shadow: 0 25px 50px -10px rgba(107, 33, 168, 0.25);
}

.floating-tech-card.card-ai {
    top: -18px;
    left: -18px;
}

.floating-tech-card.card-fintech {
    bottom: -18px;
    right: -18px;
    left: auto;
    animation-delay: -3s;
}

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

.icon-box {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box.purple {
    background: rgba(107, 33, 168, 0.1);
    color: var(--purple-primary);
    border: 1px solid rgba(107, 33, 168, 0.2);
}

.icon-box.cyan {
    background: rgba(8, 145, 178, 0.1);
    color: #0891B2;
    border: 1px solid rgba(8, 145, 178, 0.2);
}

.icon-box.gold {
    background: rgba(217, 119, 6, 0.1);
    color: var(--amber-gold);
    border: 1px solid rgba(217, 119, 6, 0.2);
}

.icon-box.emerald {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.card-text-block {
    display: flex;
    flex-direction: column;
}

.card-title-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.floating-tech-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #6B21A8;
}

.floating-tech-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

/* Status Pills on Floating Cards */
.status-pill {
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.status-active {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-cyan {
    background: rgba(8, 145, 178, 0.1);
    color: #0891B2;
    border: 1px solid rgba(8, 145, 178, 0.3);
}

.status-gold {
    background: rgba(217, 119, 6, 0.1);
    color: #D97706;
    border: 1px solid rgba(217, 119, 6, 0.3);
}

.status-emerald {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Telemetry Overlay Banner */
.hero-telemetry-banner {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.35);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25);
    white-space: nowrap;
}

.telemetry-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: #F8FAFC;
}

.telemetry-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
}

.telemetry-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.green-pulse {
    background: #10B981;
    box-shadow: 0 0 8px #10B981;
}

.purple-pulse {
    background: #C084FC;
    box-shadow: 0 0 8px #C084FC;
}

.gold-pulse {
    background: #FBBF24;
    box-shadow: 0 0 8px #FBBF24;
}

/* Floating Stack Chips */
.floating-stack-chip {
    position: absolute;
    z-index: 11;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    color: #6B21A8;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    animation: floatChip 5s ease-in-out infinite alternate;
}

.chip-python {
    top: 25%;
    left: -35px;
    animation-delay: -1.5s;
}

.chip-5g {
    top: 62%;
    left: -35px;
    animation-delay: -3.5s;
}

.chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-primary);
}

@keyframes floatChip {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* --------------------------------------------------------------------------
   8. SERVICES SUITE SECTION
   -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 2.25rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0,0,0,0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--purple-primary), var(--amber-gold));
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card:hover {
    background: #FAFAFA;
    border-color: rgba(107, 33, 168, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(107, 33, 168, 0.12);
}

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

.service-icon-bg {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.purple-glow {
    background: rgba(107, 33, 168, 0.08);
    color: var(--purple-primary);
    border: 1px solid var(--border-glow);
}

.amber-glow {
    background: rgba(217, 119, 6, 0.08);
    color: var(--amber-gold);
    border: 1px solid var(--border-gold);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #6B21A8;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
}

.service-features li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features .check {
    color: var(--accent-emerald);
    font-weight: 800;
}

.service-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--amber-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card:hover .service-link {
    color: var(--purple-primary);
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   9. FINTECH & AI FEATURE SPOTLIGHT
   -------------------------------------------------------------------------- */
.fintech-ai-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.feature-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.bullet-icon {
    font-size: 1.5rem;
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.bullet-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #6B21A8;
}

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

.cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Code Terminal Card (Royal Purple Light Theme) */
.code-terminal-card {
    background: #FAF5FF;
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(107, 33, 168, 0.12);
}

.terminal-header {
    background: #F3E8FF;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-glow);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #27C93F; }

.terminal-title {
    font-family: monospace;
    font-size: 0.8rem;
    color: #6B21A8;
    font-weight: 700;
    margin-left: 0.5rem;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Fira Code', Consolas, Monaco, monospace;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #6B21A8;
    overflow-x: auto;
}

.code-keyword { color: #6B21A8; font-weight: bold; }
.code-class { color: #D97706; font-weight: bold; }
.code-func { color: #2563EB; }
.code-type { color: #059669; }
.code-string { color: #D97706; }
.code-number { color: #DC2626; }
.code-comment { color: #7E22CE; font-style: italic; }
.code-annotation { color: #8B5CF6; }

.terminal-footer {
    background: #F3E8FF;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    border-top: 1px solid var(--border-glow);
}

.status-ok { color: var(--accent-emerald); font-weight: 600; }
.status-shield { color: var(--amber-light); }

/* --------------------------------------------------------------------------
   10. TECHNOLOGY MATRIX SECTION
   -------------------------------------------------------------------------- */
.tech-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tech-tab {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    color: #475569;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tech-tab:hover {
    background: #E2E8F0;
    color: #6B21A8;
}

.tech-tab.active {
    background: var(--purple-primary);
    color: #FFFFFF;
    border-color: var(--purple-deep);
    box-shadow: 0 4px 15px rgba(107, 33, 168, 0.25);
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 0.75rem 1.25rem;
    border-radius: 14px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.tech-badge:hover {
    border-color: var(--border-gold);
    transform: translateY(-3px);
    background: #F8FAFC;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

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

.badge-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #6B21A8;
}



/* --------------------------------------------------------------------------
   12. LEAD GENERATION & CONTACT US SECTION
   -------------------------------------------------------------------------- */
.contact-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #6B21A8;
}

.form-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.grid-2col-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group label .required {
    color: var(--amber-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #F8FAFC;
    border: 1px solid #CBD5E1;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #6B21A8;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--purple-primary);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(107, 33, 168, 0.15);
}

.form-group select option {
    background-color: #FFFFFF;
    color: #6B21A8;
}

.error-msg {
    font-size: 0.78rem;
    color: #DC2626;
    display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #DC2626;
}

.form-group.has-error .error-msg {
    display: block;
}

.privacy-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

/* Contact Cards Right */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(107, 33, 168, 0.08);
    color: var(--purple-primary);
    border: 1px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.info-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #6B21A8;
    margin: 0.2rem 0 0.5rem;
}

.info-address {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-top: 0.25rem;
}

.action-buttons-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.copy-btn, .whatsapp-btn, .telegram-btn {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.copy-btn {
    background: #F1F5F9;
    color: #6B21A8;
}

.copy-btn:hover {
    background: #E2E8F0;
}

.telegram-btn {
    background: #229ED9;
    color: #FFFFFF;
    text-decoration: none;
    transition: var(--transition-fast);
}

.telegram-btn:hover {
    background: #1B85BA;
    color: #FFFFFF;
}

.whatsapp-btn {
    background: #25D366;
    color: #FFFFFF;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #1EBE57;
    color: #FFFFFF;
}

/* Legal Box from Image */
.legal-credentials-box {
    background: rgba(217, 119, 6, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.legal-title {
    font-size: 0.95rem;
    color: var(--amber-gold);
    font-weight: 700;
}

.legal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
}

.legal-row span {
    color: var(--text-muted);
}

.legal-row strong {
    font-family: monospace;
    color: #6B21A8;
}

.copy-small {
    font-size: 0.75rem;
    background: #F1F5F9;
    color: #6B21A8;
    border: none;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    cursor: pointer;
}

.legal-badge {
    font-size: 0.78rem;
    color: var(--text-secondary);
    text-align: center;
    border-top: 1px dashed rgba(217, 119, 6, 0.3);
    padding-top: 0.75rem;
}

/* --------------------------------------------------------------------------
   13. TOAST NOTIFICATIONS & MODALS
   -------------------------------------------------------------------------- */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: #FFFFFF;
    border: 1px solid var(--border-gold);
    color: #6B21A8;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: toastIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    padding: 3rem;
    max-width: 560px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    text-align: center;
    animation: modalPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-card.modal-large {
    max-width: 780px;
    max-height: 85vh;
    overflow-y: auto;
    text-align: left;
    padding: 2.75rem;
}

.modal-header-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-gold);
    background: rgba(217, 119, 6, 0.08);
    border: 1px solid var(--border-gold);
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.modal-subtext {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.legal-section-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--purple-primary);
    margin: 1.5rem 0 0.4rem;
}

.legal-body-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

@keyframes modalPop {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #6B21A8;
}

.modal-desc {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-summary-box {
    background: #F8FAFC;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: left;
    margin-bottom: 2rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.modal-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* --------------------------------------------------------------------------
   14. FOOTER STYLES (ROYAL PURPLE LIGHT THEME - 0% BLACK)
   -------------------------------------------------------------------------- */
.site-footer {
    background: #FAF5FF;
    color: #6B21A8;
    border-top: 1px solid var(--border-glow);
    padding: 5rem 1.5rem 2.5rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    margin-bottom: 4rem;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: #581C87;
    margin: 1.25rem 0 1.5rem;
    line-height: 1.6;
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    background: #FFFFFF;
    color: var(--purple-primary);
    border: 1px solid var(--border-glow);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--purple-primary);
    border-color: var(--purple-primary);
    color: #FFFFFF;
}

.footer-heading {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #6B21A8;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #581C87;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--purple-primary);
    padding-left: 4px;
}

.footer-contact-item {
    font-size: 0.9rem;
    color: #581C87;
    margin-bottom: 0.75rem;
}

.footer-contact-item strong {
    color: #6B21A8;
}

.footer-bottom {
    border-top: 1px solid var(--border-glow);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    color: #7E22CE;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: #581C87;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-legal-links a:hover {
    color: var(--purple-primary);
}

/* --------------------------------------------------------------------------
   15. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-container,
    .grid-2col,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-subtle);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hamburger-btn {
        display: flex;
    }

    .btn-phone {
        display: none;
    }

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

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-action-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .grid-2col-inputs {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

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

    .contact-form-wrapper {
        padding: 1.75rem;
    }
}
