/* ===== IT NOGOR - PREMIUM LIGHT SAAS THEME (BahariHost Inspired) ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

:root {
    /* Harmony Color Palette */
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #3730a3;
    --primary-glow: rgba(79, 70, 229, 0.08);
    --primary-50: #f5f3ff;
    --primary-100: #eef2ff;

    --secondary: #f59e0b;
    --secondary-light: #fbbf24;
    --secondary-glow: rgba(245, 158, 11, 0.08);

    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --accent-glow: rgba(6, 182, 212, 0.08);

    /* Gradients */
    --gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
    --gradient-text: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
    --gradient-bg: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    
    /* Sleek Light Gradient for Hero Section */
    --gradient-hero: linear-gradient(135deg, #f5f3ff 0%, #eef2ff 50%, #f0f9ff 100%);
    --gradient-panel: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);

    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --bg-section: #f1f5f9;
    --bg-section-alt: #f8fafc;
    --bg-card: #ffffff;

    --text: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;

    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --border-glass: rgba(255, 255, 255, 0.5);

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 20px 50px -12px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 4px 20px rgba(79, 70, 229, 0.04);
    --shadow-glow: 0 0 35px rgba(6, 182, 212, 0.15);

    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --radius-full: 100px;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font: 'Outfit', 'Hind Siliguri', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
    font-family: var(--font);
    background: var(--bg-body);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section { padding: 65px 0; position: relative; }

/* ===== GRADIENT TEXT ===== */
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; border: 2px solid #f8fafc; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-size: 38px; font-weight: 800; color: var(--text); line-height: 1.25; font-family: 'Outfit', 'Hind Siliguri', sans-serif; letter-spacing: -0.5px; }
.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(79, 70, 229, 0.06);
    color: #4f46e5;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(79, 70, 229, 0.12);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, #7c3aed 100%);
    color: #fff;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.4);
    filter: brightness(1.05);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-2px);
}
.btn-lg { padding: 16px 38px; font-size: 16px; border-radius: var(--radius-sm); }

/* ===== TOP PROMO BAR ===== */
.top-promo {
    background: linear-gradient(90deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 0;
    text-align: center;
    position: relative;
    z-index: 1001;
}
.top-promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.top-promo-content a {
    color: var(--secondary-light);
    text-decoration: underline;
    font-weight: 700;
    margin-left: 6px;
    transition: var(--transition);
}
.top-promo-content a:hover {
    color: #fff;
}

/* ===== FLOATING GLASS NAVBAR ===== */
.header {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
    transition: var(--transition);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.03);
}
.header.scrolled {
    top: 12px;
}
.header.scrolled .header-inner {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.06);
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
}
.logo img { height: 38px; }
.logo-icon {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #7c3aed 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
}
.logo-text {
    font-weight: 800;
    letter-spacing: -0.5px;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.06);
}
.header-cta {
    padding: 10px 22px;
    border-radius: var(--radius-full) !important;
    font-size: 13px;
    font-weight: 700;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== PREMIUM LIGHT HERO SECTION ===== */
.hero {
    padding: 180px 0 90px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    color: var(--text);
}
.hero-glow-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(99, 102, 241, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}
.hero-glow-2 {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.7;
    z-index: 1;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-content {
    z-index: 2;
}
.hero-content .section-badge {
    background: rgba(79, 70, 229, 0.06);
    color: var(--primary);
    border-color: rgba(79, 70, 229, 0.1);
}
.hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.hero-content h1 .text-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 38px;
    max-width: 580px;
}
.hero-actions {
    display: flex;
    gap: 16px;
}
.hero-actions .btn-outline {
    color: var(--text);
    border-color: var(--border);
    background: rgba(255,255,255,0.4);
}
.hero-actions .btn-outline:hover {
    background: rgba(99, 102, 241, 0.05);
    border-color: var(--primary-light);
    color: var(--primary-light);
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 54px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
}
.hero-stats .stat-item h4 {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.hero-stats .stat-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    background: var(--border);
}

/* Hero Light Chrome Frame mockup */
.hero-visual {
    position: relative;
    z-index: 2;
}
.hero-illustration {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-main-visual {
    width: 380px;
    border-radius: var(--radius);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}
.browser-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}
.browser-body {
    padding: 30px;
    text-align: center;
}
.hero-center-icon {
    font-size: 54px;
    color: var(--primary-light);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.15));
}
.skeleton-line {
    height: 8px;
    background: rgba(15, 23, 42, 0.04);
    border-radius: 4px;
    margin: 10px auto;
}

/* Glass Floating elements (Light Theme) */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}
.floating-card .icon-wrap {
    width: 44px; height: 44px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-light);
    font-size: 18px;
}
.floating-card .icon-wrap.secondary { background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.15); color: var(--secondary); }
.floating-card .icon-wrap.accent { background: rgba(6, 182, 212, 0.08); border-color: rgba(6, 182, 212, 0.15); color: var(--accent); }
.floating-card .card-text h5 { font-size: 14px; font-weight: 700; color: var(--text); }
.floating-card .progress-bar {
    width: 120px; height: 6px;
    background: rgba(15, 23, 42, 0.04);
    border-radius: 3px;
    margin-top: 8px;
}
.floating-card .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-light), var(--accent-light));
    border-radius: 3px;
}
.card-1 { top: 10px; right: -20px; animation: float-card 6s ease-in-out infinite; }
.card-2 { bottom: 50px; left: -40px; animation: float-card 6s ease-in-out infinite 2s; }
.card-3 {
    bottom: 10px; right: -10px;
    padding: 12px;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== SERVICES STRIP ===== */
.services-section { padding: 60px 0 90px; background: var(--bg-white); border-bottom: 1px solid var(--border-light); }
.compact-service-wrapper { display: flex; justify-content: center; }
.service-strip {
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 32px;
    border-radius: var(--radius-full);
    box-shadow: 0 20px 50px -15px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    margin-top: -110px; /* Overlaps with hero section beautifully */
}
.c-service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    color: inherit;
    flex: 1;
    justify-content: center;
    transition: var(--transition);
}
.c-service-item:hover, .c-service-item.active-item {
    background: rgba(99, 102, 241, 0.05);
}
.c-icon-box {
    width: 46px; height: 46px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.06);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-light);
    font-size: 18px;
    transition: var(--transition);
    position: relative;
}
.c-service-item:hover .c-icon-box,
.c-service-item.active-item .c-icon-box {
    background: linear-gradient(135deg, var(--primary-light) 0%, #7c3aed 100%);
    color: #fff;
    box-shadow: 0 6px 15px rgba(99, 102, 241, 0.25);
}
.c-content h3 { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.3; }
.c-sub { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.c-divider { width: 1px; height: 40px; background: var(--border); margin: 0 4px; }
.arrow-icon { font-size: 15px; color: var(--text-muted); transition: var(--transition); }
.c-service-item:hover .arrow-icon { color: var(--primary-light); transform: translateX(4px); }

/* ===== DEMO SECTION ===== */
.demo-section { background: var(--bg-section-alt); }
.demo-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 44px; }
.filter-btn {
    background: var(--bg-white); border: 1px solid var(--border); color: var(--text-secondary);
    padding: 10px 24px; border-radius: 50px; font-size: 13px; font-weight: 700;
    transition: var(--transition); cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.filter-btn:hover { border-color: var(--primary-light); color: var(--primary-light); background: rgba(99, 102, 241, 0.02); }
.filter-btn.active { background: linear-gradient(135deg, var(--primary-light) 0%, #7c3aed 100%); color: #fff; border-color: transparent; box-shadow: 0 6px 18px rgba(99,102,241,0.25); }
.demo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.demo-card {
    background: var(--bg-white); border-radius: var(--radius); border: 1px solid var(--border);
    overflow: hidden; box-shadow: var(--shadow); transition: var(--transition);
}
.demo-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(99, 102, 241, 0.15); }
.demo-browser {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; background: #f8fafc; border-bottom: 1px solid var(--border-light);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 9px; height: 9px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #22c55e; }
.browser-url {
    flex: 1; background: #fff; border: 1px solid #e2e8f0; border-radius: 6px;
    padding: 5px 12px; font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 6px;
    overflow: hidden; text-overflow: ellipsis; font-weight: 500;
}
.browser-url i { color: #22c55e; }
.demo-image { position: relative; width: 100%; height: 210px; overflow: hidden; background: #f1f5f9; }
.demo-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.demo-card:hover .demo-image img { transform: scale(1.04); }
.demo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, transparent 60%);
    display: flex; align-items: flex-end; justify-content: center; padding-bottom: 24px;
    opacity: 0; transition: var(--transition);
}
.demo-card:hover .demo-overlay { opacity: 1; }
.demo-live-btn {
    background: linear-gradient(135deg, var(--primary-light) 0%, #7c3aed 100%); color: #fff; padding: 12px 28px; border-radius: 50px;
    font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 20px rgba(99,102,241,0.35); transition: var(--transition);
    transform: translateY(12px);
}
.demo-card:hover .demo-live-btn { transform: translateY(0); }
.demo-live-btn:hover { filter: brightness(1.08); color: #fff; }
.demo-info { padding: 20px; }
.demo-meta { display: flex; align-items: center; margin-bottom: 10px; }
.demo-cat { font-size: 11px; font-weight: 700; color: var(--primary-light); background: rgba(99, 102, 241, 0.08); padding: 4px 14px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; }
.demo-info h4 { font-size: 17px; font-weight: 700; color: var(--text); }

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section { background: var(--bg-section); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.portfolio-card {
    background: var(--bg-white); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--border); transition: var(--transition); box-shadow: var(--shadow);
}
.portfolio-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(99, 102, 241, 0.15); }
.portfolio-image { height: 210px; overflow: hidden; position: relative; background: #e2e8f0; }
.portfolio-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.portfolio-card:hover .portfolio-image img { transform: scale(1.04); }
.portfolio-overlay { position: absolute; bottom: 16px; left: 16px; }
.portfolio-category { background: var(--bg-white); padding: 5px 16px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; color: var(--primary-light); box-shadow: var(--shadow-sm); text-transform: uppercase; letter-spacing: 0.5px; }
.portfolio-info { padding: 24px; }
.portfolio-info h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.portfolio-info p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.portfolio-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--primary-light); transition: var(--transition); }
.portfolio-link:hover { gap: 10px; }

/* ===== LARAVEL E-COMMERCE SECTION ===== */
.laravel-section { background: var(--bg-white); position: relative; overflow: hidden; }
.laravel-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.section-desc { font-size: 16px; color: var(--text-secondary); max-width: 800px; margin: 18px auto 0; line-height: 1.75; }
.laravel-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: center; margin-top: 50px; }
.lf-title { font-size: 26px; font-weight: 800; margin-bottom: 26px; color: var(--text); }
.lf-list { list-style: none; margin-bottom: 36px; }
.lf-list li { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.lf-icon {
    width: 32px; height: 32px; background: rgba(99, 102, 241, 0.06); color: var(--primary-light);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 13px; flex-shrink: 0; margin-top: 2px;
}
.lf-text h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.lf-text p { font-size: 13px; color: var(--text-secondary); }
.lf-actions { display: flex; gap: 16px; }

/* Pricing Cards */
.laravel-pricing { display: flex; gap: 24px; align-items: center; }
.lp-card {
    flex: 1; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 36px 24px; text-align: center; box-shadow: var(--shadow); transition: var(--transition);
    position: relative; z-index: 1;
}
.lp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(99,102,241,0.15); }
.lp-popular { border: 2px solid var(--primary-light); transform: scale(1.04); box-shadow: 0 20px 40px rgba(99,102,241,0.08); z-index: 2; }
.lp-popular:hover { transform: scale(1.04) translateY(-6px); }
.lp-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-light) 0%, #7c3aed 100%); color: #fff;
    padding: 5px 22px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.lp-card h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.lp-price { font-size: 26px; font-weight: 800; color: var(--primary-light); margin-bottom: 24px; }
.lp-features { list-style: none; text-align: left; }
.lp-features li { font-size: 13px; color: var(--text-secondary); margin-bottom: 14px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.lp-features li i { color: var(--primary-light); font-size: 6px; margin-top: 7px; }
/* ===== CEO SECTION ===== */
.ceo-section {
    position: relative;
    overflow: hidden;
}
.ceo-premium-card {
    background: var(--bg-white);
    border: 1px solid rgba(99, 102, 241, 0.08);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04), 0 0 40px rgba(99, 102, 241, 0.02);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.ceo-premium-card:hover {
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.08), 0 0 60px rgba(99, 102, 241, 0.04);
    border-color: rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}
.ceo-photo-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 4px solid var(--bg-white);
    outline: 1px solid var(--border);
    transition: var(--transition);
}
.ceo-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}
.ceo-premium-card:hover .ceo-photo-container {
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.1);
    outline-color: rgba(99, 102, 241, 0.25);
}
.ceo-premium-card:hover .ceo-photo-container img {
    transform: scale(1.03);
}

/* ===== FEATURES SECTION ===== */
.features-section { background: var(--bg-section-alt); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-item {
    display: flex; gap: 20px; padding: 32px; background: var(--bg-white);
    border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition);
}
.feature-item:hover { border-color: rgba(99, 102, 241, 0.15); box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.feature-check {
    width: 50px; height: 50px; background: rgba(99, 102, 241, 0.06); border-radius: 14px;
    display: flex; align-items: center; justify-content: center; color: var(--primary-light);
    font-size: 20px; flex-shrink: 0; transition: var(--transition);
}
.feature-item:hover .feature-check { background: linear-gradient(135deg, var(--primary-light) 0%, #7c3aed 100%); color: #fff; }
.feature-content h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===== INFINITE TECHNOLOGY MARQUEE ===== */
.tech-section { background: var(--bg-white); overflow: hidden; }
.tech-marquee-wrapper { overflow: hidden; padding: 20px 0; position: relative; }
.tech-marquee-wrapper::before, .tech-marquee-track::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 150px; z-index: 2; pointer-events: none;
}
.tech-marquee-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg-white), transparent); }
.tech-marquee-wrapper::after { right: 0; background: linear-gradient(to left, var(--bg-white), transparent); }
.tech-marquee-track { display: flex; gap: 24px; animation: marquee 35s linear infinite; width: max-content; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tech-marquee-item {
    display: flex; align-items: center; gap: 16px; padding: 18px 28px; background: var(--bg-white);
    border: 1px solid var(--border); border-radius: var(--radius-sm); white-space: nowrap; flex-shrink: 0; transition: var(--transition);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.01);
}
.tech-marquee-item:hover { border-color: rgba(99, 102, 241, 0.15); box-shadow: var(--shadow); transform: translateY(-2px); }
.tech-icon {
    width: 44px; height: 44px; background: rgba(99, 102, 241, 0.05); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; color: var(--primary-light); font-size: 20px;
}
.tech-info h4 { font-size: 16px; font-weight: 700; color: var(--text); }
.tech-info p { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section { background: var(--bg-section); }
.testimonials-slider { overflow: hidden; position: relative; padding: 10px 0; }
.testimonials-track { display: flex; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.testimonial-card {
    min-width: calc(33.333% - 24px); margin: 0 12px; padding: 36px;
    background: var(--bg-white); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow);
}
.testimonial-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.testimonial-avatar { width: 54px; height: 54px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid var(--primary-50); }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--primary-light) 0%, #7c3aed 100%); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; font-weight: 700; border-radius: 50%; }
.testimonial-info h4 { font-size: 16px; font-weight: 700; color: var(--text); }
.testimonial-info p { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.testimonial-social a {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: #dcfce7; color: #25D366; transition: var(--transition);
}
.testimonial-social a:hover { transform: scale(1.1); }
.testimonial-stars { margin-bottom: 16px; }
.testimonial-stars i { color: #fbbf24; font-size: 14px; margin-right: 2px; }
.testimonial-text { font-size: 15px; color: var(--text-secondary); line-height: 1.75; }
.testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.testimonial-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1; cursor: pointer; transition: var(--transition); }
.testimonial-dots .dot.active { background: var(--primary-light); width: 28px; border-radius: 5px; }

/* ===== FAQ ACCORDION ===== */
.faq-section { background: var(--bg-white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-sm);
    margin-bottom: 14px; overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(99, 102, 241, 0.15); box-shadow: var(--shadow-sm); }
.faq-item.active { border-color: var(--primary-light); box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.06); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 28px; background: transparent; border: none; font-family: var(--font);
    font-size: 16px; font-weight: 700; color: var(--text); cursor: pointer; text-align: left;
}
.faq-question i { font-size: 14px; color: var(--primary-light); transition: var(--transition); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-answer p { padding: 0 28px 20px; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--bg-section-alt); padding: 50px 0; }
.cta-card {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 60%, #111029 100%);
    border-radius: 30px; padding: 70px 60px; text-align: center; color: #fff; position: relative; overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(17, 24, 39, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.cta-card::before {
    content: ''; position: absolute; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%; top: -150px; right: -150px; pointer-events: none;
}
.cta-card::after {
    content: ''; position: absolute; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    border-radius: 50%; bottom: -150px; left: -150px; pointer-events: none;
}
.cta-icon { font-size: 54px; margin-bottom: 24px; color: #38bdf8; filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.2)); }
.cta-card h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.5px; }
.cta-card p { font-size: 16px; color: #94a3b8; margin-bottom: 38px; max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-card .btn-primary {
    background: #fff; color: #1e1b4b; box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2); font-weight: 800;
}
.cta-card .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.3); background: #f8fafc; }

/* ===== FOOTER ===== */
.footer {
    background: #0f172a; color: #94a3b8; padding: 80px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo img { height: 42px; }
.footer-logo .logo-icon { background: linear-gradient(135deg, var(--primary-light) 0%, #7c3aed 100%); color: #fff; }
.footer-logo .logo-text { color: #fff; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.footer-about { font-size: 14px; line-height: 1.75; margin-bottom: 24px; color: #64748b; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255, 255, 255, 0.03); color: #64748b; transition: var(--transition); font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}
.social-links a:hover { background: linear-gradient(135deg, var(--primary-light) 0%, #7c3aed 100%); color: #fff; border-color: transparent; transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 22px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.footer-col li a { color: #64748b; transition: var(--transition); }
.footer-col li a:hover { color: #fff; }
.footer-col li i { color: var(--primary-light); font-size: 14px; }
.footer-bottom { text-align: center; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, 0.04); font-size: 13px; color: #475569; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; display: flex; align-items: center; gap: 10px;
    background: #25D366; color: #fff; padding: 14px 26px; border-radius: var(--radius-full);
    box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4); font-weight: 700; font-size: 14px; z-index: 999; transition: var(--transition);
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 15px 30px -5px rgba(37, 211, 102, 0.5); color: #fff; }
.whatsapp-float i { font-size: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .laravel-grid { grid-template-columns: 1fr; gap: 40px; }
    .ceo-premium-card {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 32px;
    }
    .ceo-photo-container {
        max-width: 250px;
        margin: 0 auto;
    }
    .ceo-content {
        text-align: center;
        align-items: center;
        padding-left: 0 !important;
    }
    .ceo-content .section-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .ceo-content blockquote {
        font-size: 17px !important;
    }
    .ceo-meta-wrapper {
        justify-content: center;
        text-align: left;
    }
    .laravel-pricing { width: 100%; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .demo-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
    }
    .container {
        padding: 0 16px;
    }
    .top-promo {
        padding: 8px 16px;
        font-size: 12px;
    }
    .top-promo-content {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    .top-promo-content a {
        margin-left: 0;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }
    .header { width: 95%; top: 72px; }
    .header.scrolled { top: 8px; }
    .header-inner { padding: 8px 16px; }
    .nav { 
        display: none; position: absolute; top: 64px; left: 0; right: 0;
        background: var(--bg-white); border-radius: var(--radius-sm); padding: 20px;
        flex-direction: column; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
        gap: 8px;
    }
    .nav.open { display: flex; }
    .hamburger { display: flex; }
    .header-cta { display: none; }
    .hero { padding: 140px 0 50px; overflow: hidden; }
    .hero-content h1 { 
        font-size: 28px; 
        letter-spacing: -0.5px; 
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .hero-subtitle { 
        font-size: 15px; 
        line-height: 1.65; 
        max-width: 100%; 
    }
    .hero-actions { 
        flex-direction: column; 
        gap: 12px; 
        align-items: stretch; 
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
    .hero-stats { 
        flex-direction: row; 
        gap: 0; 
        text-align: center; 
        justify-content: space-between; 
        margin-top: 36px;
        padding-top: 28px;
    }
    .hero-stats .stat-item { flex: 1; min-width: 0; }
    .hero-stats .stat-item h4 { font-size: 22px; }
    .hero-stats .stat-item p { font-size: 10px; }
    .stat-divider { width: 1px; height: 36px; margin: 0; background: var(--border); }

    .section-header h2 { font-size: 24px; letter-spacing: -0.3px; }
    .section-header { margin-bottom: 28px; }
    .section-desc { font-size: 14px; }
    .section { padding: 40px 0; }
    .section-badge { font-size: 11px; padding: 5px 14px; }
    .features-grid, .portfolio-grid, .demo-grid { grid-template-columns: 1fr; }
    
    .lf-list { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
    .lf-list li { flex-direction: row; gap: 12px; margin-bottom: 0; align-items: flex-start; }
    .lf-title { font-size: 22px; text-align: center; }
    .lf-text h4 { font-size: 14px; }
    .lf-text p { font-size: 12px; line-height: 1.4; }
    .lf-actions { justify-content: center; flex-direction: column; gap: 10px; }
    .lf-actions .btn { width: 100%; justify-content: center; }

    .laravel-pricing { flex-direction: column; width: 100%; gap: 24px; }
    .lp-card { width: 100%; }
    .lp-popular { transform: none; box-shadow: var(--shadow); }
    .lp-popular:hover { transform: translateY(-4px); }
    
    .service-strip {
        flex-direction: row; flex-wrap: wrap; border-radius: var(--radius-sm); padding: 12px; gap: 8px; justify-content: center; margin-top: -60px;
    }
    .c-service-item {
        flex: 0 0 calc(50% - 4px); padding: 10px 8px; border-radius: var(--radius-xs); background: rgba(99, 102, 241, 0.04); justify-content: flex-start; gap: 8px;
    }
    .c-service-item:hover, .c-service-item.active-item { background: rgba(99, 102, 241, 0.08); }
    .c-service-item .arrow-icon { display: none; }
    .c-divider { display: none; }
    .c-icon-box { width: 34px; height: 34px; font-size: 13px; border-radius: 8px; }
    .c-content h3 { font-size: 13px; }
    .c-sub { font-size: 11px; }
    
    .ceo-premium-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 24px;
        border-radius: 20px;
    }
    .ceo-photo-container {
        max-width: 200px;
        margin: 0 auto;
    }
    .ceo-content {
        text-align: center;
        align-items: center;
        padding-left: 0 !important;
    }
    .ceo-content .section-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .ceo-content blockquote {
        font-size: 16px !important;
        line-height: 1.75 !important;
    }
    .ceo-meta-wrapper {
        justify-content: center;
        text-align: left;
    }

    .footer-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: calc(100% - 24px); margin: 0 12px; padding: 24px; }
    .cta-section { padding: 35px 0; }
    .cta-card { padding: 40px 20px; border-radius: 20px; }
    .cta-card h2 { font-size: 24px; }
    .cta-card p { font-size: 14px; }
    
    .whatsapp-float { 
        padding: 12px 18px; 
        font-size: 13px; 
        bottom: 20px; 
        right: 16px; 
    }
    .whatsapp-float i { font-size: 18px; }
    
    .feature-item { padding: 24px; gap: 16px; }
    .feature-check { width: 42px; height: 42px; font-size: 16px; }
    .feature-content h4 { font-size: 15px; }
    .feature-content p { font-size: 13px; }
    
    .demo-info h4 { font-size: 15px; }
    .demo-image { height: 180px; }
    
    .portfolio-info { padding: 18px; }
    .portfolio-info h4 { font-size: 16px; }
    .portfolio-info p { font-size: 13px; }
    .portfolio-image { height: 180px; }
    
    .faq-question { padding: 16px 20px; font-size: 14px; }
    .faq-answer p { padding: 0 20px 16px; font-size: 14px; }
}

@media (max-width: 480px) {
    .top-promo {
        padding: 6px 10px;
        font-size: 11px;
    }
    .header {
        top: 76px;
        width: 96%;
    }
    .hero { padding: 130px 0 40px; }
    .hero-content h1 { font-size: 24px; }
    .hero-subtitle { font-size: 14px; }
    .hero-stats .stat-item h4 { font-size: 20px; }
    .hero-stats .stat-item p { font-size: 9px; }
    .stat-divider { height: 30px; }
    .section-header h2 { font-size: 22px; }
    .c-service-item { flex: 0 0 100%; }
    .service-strip { margin-top: -40px; }
    .cta-card h2 { font-size: 22px; }
    .cta-card p { font-size: 13px; }
}

/* ===== SELECTION ===== */
::selection { background: var(--primary-100); color: var(--primary-dark); }

/* ===== FADE ANIMATIONS ===== */
.fade-up { opacity: 1; }