/* ===========================================================
   EASTLANE DIGITAL
   Version 3.0 — Enhanced Edition
=========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background: #050816;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================
   COLORS
========================= */

:root {
    --background: #050816;
    --surface: #0F172A;
    --surface2: #182339;
    --surface3: #1E293B;
    --primary: #00E5FF;
    --primary-dim: rgba(0, 229, 255, 0.12);
    --secondary: #7C3AED;
    --accent: #FBBF24;
    --text: #F8FAFC;
    --muted: #94A3B8;
    --border: rgba(255, 255, 255, 0.08);
    --radius: 22px;
    --radius-sm: 14px;
    --radius-lg: 30px;
}

/* =========================
   TYPOGRAPHY
========================= */

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    color: var(--muted);
    line-height: 1.9;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

section {
    padding: 120px 8%;
    position: relative;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =========================
   GLASS & BUTTONS
========================= */

.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: 50px;
    background: linear-gradient(135deg, #00E5FF, #7C3AED);
    font-weight: 600;
    transition: all 0.35s ease;
    cursor: pointer;
    border: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 229, 255, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: white;
    font-weight: 600;
    transition: all 0.35s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.08);
    transform: translateY(-3px);
}

.section-header {
    max-width: 760px;
    margin: auto;
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(0, 229, 255, 0.12);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid rgba(0, 229, 255, 0.15);
}

/* =========================
   BACKGROUND EFFECTS
========================= */

body::before {
    content: "";
    position: fixed;
    left: -300px;
    top: -300px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15), transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: bgFloat1 15s ease-in-out infinite;
}

body::after {
    content: "";
    position: fixed;
    right: -300px;
    bottom: -300px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15), transparent 70%);
    filter: blur(80px);
    z-index: -1;
    animation: bgFloat2 18s ease-in-out infinite;
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 4%;
}

/* =========================
   NAVIGATION
========================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(5, 8, 22, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.35s ease;
}

.navbar.scrolled {
    background: rgba(5, 8, 22, 0.92);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.logo h2 {
    color: white;
    font-size: 1.6rem;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.logo span {
    color: var(--primary);
}

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

.nav-links a {
    color: var(--muted);
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -8px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: white;
}

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

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-left {
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 30px;
    background: rgba(0, 229, 255, 0.12);
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 229, 255, 0.15);
    animation: fadeLeft 1s ease;
}

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

.hero h1 {
    margin-bottom: 25px;
    max-width: 650px;
    animation: fadeLeft 1s ease;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    max-width: 600px;
    margin-bottom: 40px;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    animation: fadeLeft 1.3s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeLeft 1.6s ease;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    animation: fadeLeft 1.9s ease;
}

.hero-stats h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.hero-stats p {
    font-size: 0.9rem;
    margin: 0;
}

/* =========================
   HERO RIGHT
========================= */

.hero-right {
    position: relative;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeRight 1.2s ease;
}

.hero-glow {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.20), transparent 70%);
    filter: blur(60px);
    animation: glowPulse 6s ease-in-out infinite;
}

/* =========================
   LAPTOP
========================= */

.laptop-card {
    width: 560px;
    max-width: 100%;
    border-radius: 22px;
    overflow: hidden;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    position: relative;
    z-index: 5;
    animation: float 7s ease-in-out infinite;
}

.window-bar {
    height: 42px;
    background: #1B2335;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
}

.window-bar span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-bar span:nth-child(1) { background: #ff5f56; }
.window-bar span:nth-child(2) { background: #ffbd2f; }
.window-bar span:nth-child(3) { background: #27c93f; }

.dashboard {
    padding: 35px;
}

.dashboard h3 {
    margin-bottom: 30px;
    color: white;
}

.chart {
    height: 220px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
}

.chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.line {
    height: 18px;
    background: #263248;
    border-radius: 50px;
    margin-bottom: 18px;
}

.line.short { width: 65%; }

/* =========================
   PHONES
========================= */

.phone-card {
    width: 190px;
    height: 390px;
    position: absolute;
    background: #101827;
    border-radius: 35px;
    padding: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 6;
}

.phone-left {
    left: -30px;
    bottom: 40px;
    animation: float 5s ease-in-out infinite;
}

.phone-right {
    right: -20px;
    top: 50px;
    animation: float 6s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: #172234;
    padding: 20px;
}

.phone-screen h4 {
    margin-bottom: 20px;
    color: white;
    font-size: 1rem;
}

.progress {
    height: 12px;
    border-radius: 30px;
    background: var(--primary);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

.item {
    height: 18px;
    border-radius: 30px;
    background: #27354B;
    margin-bottom: 15px;
}

.circle {
    width: 110px;
    height: 110px;
    margin: 20px auto;
    border-radius: 50%;
    border: 10px solid var(--primary);
    position: relative;
}

.circle::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 10px solid transparent;
    border-top-color: var(--secondary);
    animation: spin 3s linear infinite;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
}

.bars span {
    flex: 1;
    border-radius: 8px 8px 0 0;
    background: var(--secondary);
    animation: barGrow 2s ease-in-out infinite alternate;
}

.bars span:nth-child(1) { height: 45px; animation-delay: 0s; }
.bars span:nth-child(2) { height: 95px; animation-delay: 0.3s; }
.bars span:nth-child(3) { height: 70px; animation-delay: 0.6s; }
.bars span:nth-child(4) { height: 110px; animation-delay: 0.9s; }

/* =========================
   SERVICES
========================= */

.services {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015));
}

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

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 30px 70px rgba(0, 229, 255, 0.12);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    background: rgba(0, 229, 255, 0.12);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 18px;
    color: white;
}

.service-card p {
    margin-bottom: 30px;
}

.service-card a {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.service-card a:hover {
    gap: 12px;
}

/* =========================
   BUSINESS SOLUTIONS
========================= */

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.solution-card {
    background: var(--surface);
    border-radius: 28px;
    padding: 45px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.35s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

.solution-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

.solution-top h3 {
    margin: 0;
    color: white;
}

.solution-card ul {
    margin: 30px 0;
}

.solution-card li {
    padding: 12px 0;
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.solution-card li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, var(--surface), rgba(0, 229, 255, 0.03));
}

.popular {
    position: absolute;
    top: -16px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
}

/* =========================
   WHY US
========================= */

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

.feature-card {
    background: var(--surface);
    border-radius: 22px;
    border: 1px solid var(--border);
    padding: 35px;
    transition: all 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
}

.feature-card h3 {
    margin: 20px 0 15px;
    color: white;
}

/* =========================
   LIVE DEMOS
========================= */

.demo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.demo-card {
    background: var(--surface);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.demo-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.demo-image {
    height: 320px;
    background: #182339;
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.demo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.demo-card:hover .demo-image img {
    opacity: 1;
}

.browser-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.browser-bar span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #999;
}

.demo-content {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.demo-search {
    height: 40px;
    border-radius: 50px;
    background: #263248;
    margin: 25px 0;
}

.medicine-grid,
.fashion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.medicine-grid div,
.fashion-grid div {
    height: 90px;
    border-radius: 18px;
    background: #24324A;
}

.demo-info {
    padding: 35px;
}

.demo-info h3 {
    margin-bottom: 18px;
    color: white;
}

.demo-info p {
    margin-bottom: 30px;
}

/* =========================
   APP SHOWCASE
========================= */

.app-showcase {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
}

.dashboard-wrapper {
    display: grid;
    grid-template-columns: 110px 1fr;
    background: var(--surface);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.dashboard-sidebar {
    background: #0b1324;
    padding: 30px;
}

.menu-item {
    height: 55px;
    border-radius: 16px;
    background: #1d2940;
    margin-bottom: 18px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-item:hover {
    background: #2a3a55;
}

.menu-item.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
}

.dashboard-main {
    padding: 45px;
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.dashboard-title {
    width: 260px;
    height: 26px;
    border-radius: 30px;
    background: #23324b;
}

.dashboard-user {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.analytics-card {
    background: #162238;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.analytics-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-3px);
}

.analytics-card h4 {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.analytics-card h2 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.graph-area {
    height: 320px;
    background: #162238;
    border-radius: 24px;
    display: flex;
    align-items: flex-end;
    padding: 35px;
    position: relative;
    overflow: hidden;
}

.graph-area::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 35px;
    right: 35px;
    height: 1px;
    background: rgba(255,255,255,0.05);
}

.graph-bars {
    display: flex;
    gap: 18px;
    align-items: flex-end;
    width: 100%;
}

.graph-bars span {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 10px 10px 0 0;
    transition: height 0.8s ease;
    position: relative;
}

.graph-bars span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
    border-radius: 10px 10px 0 0;
}

.graph-bars span:nth-child(1) { height: 90px; }
.graph-bars span:nth-child(2) { height: 180px; }
.graph-bars span:nth-child(3) { height: 120px; }
.graph-bars span:nth-child(4) { height: 230px; }
.graph-bars span:nth-child(5) { height: 150px; }
.graph-bars span:nth-child(6) { height: 270px; }
.graph-bars span:nth-child(7) { height: 200px; }

/* =========================
   CEO SPOTLIGHT
========================= */

.ceo-spotlight {
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03), transparent);
}

.ceo-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.ceo-image-wrapper {
    position: relative;
}

.ceo-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.15;
    filter: blur(30px);
    z-index: -1;
}

.ceo-image {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
}

.ceo-image:hover {
    transform: scale(1.02);
    border-color: rgba(0, 229, 255, 0.3);
}

.ceo-content .section-tag {
    margin-bottom: 25px;
}

.ceo-content h2 {
    margin-bottom: 25px;
}

.ceo-content .ceo-quote {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    color: var(--text);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    padding-left: 24px;
    border-left: 3px solid var(--primary);
}

.ceo-content p {
    margin-bottom: 20px;
}

.ceo-name {
    margin-top: 30px;
}

.ceo-name h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.ceo-name p {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

.ceo-signature {
    margin-top: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: var(--primary);
    opacity: 0.6;
}

/* =========================
   STATISTICS
========================= */

.statistics {
    padding: 80px 8%;
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.02), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.35s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.08);
}

.stats-grid h2 {
    color: var(--primary);
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.stats-grid p {
    margin-top: 0;
    font-size: 0.95rem;
}

/* =========================
   TESTIMONIALS
========================= */

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

.testimonial {
    background: var(--surface);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(0, 229, 255, 0.1);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.2);
}

.testimonial p {
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial h4 {
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial h4::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* =========================
   PRICING
========================= */

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

.price-card {
    position: relative;
    background: var(--surface);
    border-radius: 28px;
    padding: 45px;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
}

.price-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.price-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, var(--surface), rgba(0, 229, 255, 0.03));
    transform: scale(1.03);
}

.price-card.featured:hover {
    transform: scale(1.03) translateY(-12px);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
    white-space: nowrap;
}

.price-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.price-card h2 {
    color: var(--primary);
    margin: 25px 0;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-family: 'Space Grotesk', sans-serif;
}

.price-card h2 .currency {
    font-size: 0.6em;
    color: var(--muted);
    font-weight: 400;
}

.price-card h2 .period {
    font-size: 0.5em;
    color: var(--muted);
    font-weight: 400;
}

.price-card ul {
    margin: 30px 0;
}

.price-card li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.95rem;
}

.price-card li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* =========================
   FAQ
========================= */

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: var(--surface);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 229, 255, 0.15);
}

.faq-item.active {
    border-color: rgba(0, 229, 255, 0.25);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 28px;
    background: none;
    border: none;
    color: white;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

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

.faq-question .icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--primary);
    flex-shrink: 0;
    margin-left: 15px;
}

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

.faq-answer {
    display: none;
    padding: 0 28px 28px;
}

.faq-answer p {
    line-height: 1.8;
}

/* =========================
   CONTACT
========================= */

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact-details {
    margin-top: 40px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    padding: 18px 22px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateX(5px);
}

.contact-detail-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-detail-item p {
    margin: 0;
    color: var(--text);
    font-weight: 500;
}

.contact-detail-item span {
    color: var(--muted);
    font-size: 0.85rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, textarea {
    background: #101b2d;
    border: 1px solid var(--border);
    color: white;
    padding: 18px;
    border-radius: 16px;
    font-family: inherit;
    outline: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

input::placeholder, textarea::placeholder {
    color: rgba(148, 163, 184, 0.6);
}

/* =========================
   FOOTER
========================= */

footer {
    margin-top: 120px;
    padding: 80px 8% 40px;
    background: #040611;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-grid h3 {
    margin-bottom: 20px;
    color: white;
    font-size: 1.1rem;
}

.footer-grid li {
    margin-bottom: 12px;
    color: var(--muted);
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-grid li:hover {
    color: var(--primary);
}

.footer-grid a {
    transition: color 0.3s ease;
}

.footer-grid a:hover {
    color: var(--primary);
}

.footer-about p {
    margin-top: 15px;
    max-width: 300px;
}

footer hr {
    margin: 60px 0 30px;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright {
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

/* =========================
   FLOATING WHATSAPP
========================= */

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 999;
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 25px 50px rgba(37, 211, 102, 0.4);
}

/* =========================
   UTILITY
========================= */

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

.hidden {
    display: none;
}

/* =========================
   KEYFRAMES
========================= */

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

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

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-80px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(80px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(0, 217, 255, 0.25); }
    50% { box-shadow: 0 0 45px rgba(0, 217, 255, 0.5); }
    100% { box-shadow: 0 0 20px rgba(0, 217, 255, 0.25); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes bgFloat1 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, 20px); }
    66% { transform: translate(-20px, 40px); }
}

@keyframes bgFloat2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-30px, -20px); }
    66% { transform: translate(20px, -40px); }
}

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

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

@keyframes barGrow {
    from { transform: scaleY(0.7); }
    to { transform: scaleY(1); }
}

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

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}

/* Hero animations */
.laptop-card { animation: float 7s ease-in-out infinite; }
.phone-left { animation: float 5s ease-in-out infinite; }
.phone-right { animation: float 6s ease-in-out infinite; }

.btn-primary { animation: glow 4s infinite; }
.btn-primary:hover { animation: pulse 0.5s; }

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hero animations */
.hero h1 { animation: fadeLeft 1s ease; }
.hero p { animation: fadeLeft 1.3s ease; }
.hero-buttons { animation: fadeLeft 1.6s ease; }
.hero-right { animation: fadeRight 1.2s ease; }

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #050816;
    z-index: 99999;
    transition: all 0.8s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    text-align: center;
}

.loader-logo span {
    display: inline-flex;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    background: linear-gradient(135deg, #00E5FF, #7C3AED);
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    animation: pulse 2s infinite;
}

.loader-logo h2 {
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Trust badges */
.trust-badges {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-badge svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Process section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: var(--surface);
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: all 0.35s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.2);
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.process-card h3 {
    margin-bottom: 15px;
    color: white;
}

.process-connector {
    position: absolute;
    top: 60px;
    right: -30px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    display: none;
}

/* Image showcase */
.image-showcase {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.image-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-showcase:hover img {
    transform: scale(1.05);
}

.image-showcase .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 8, 22, 0.9), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.image-showcase .overlay h3 {
    color: white;
    font-size: 1.3rem;
}

.image-showcase .overlay p {
    color: var(--muted);
    margin: 0;
    font-size: 0.9rem;
}
