/* ===== IT NOGOR - LIGHT SAAS THEME (LaraFlowPro Inspired) ===== */

:root {
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #3730a3;
    --primary-glow: rgba(79, 70, 229, 0.12);
    --primary-50: #eef2ff;
    --primary-100: #e0e7ff;

    --secondary: #f59e0b;
    --secondary-glow: rgba(245, 158, 11, 0.12);

    --gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
    --gradient-text: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --gradient-bg: linear-gradient(180deg, #f5f3ff 0%, #eef2ff 50%, #f8fafc 100%);
    --gradient-hero: linear-gradient(180deg, #ede9fe 0%, #e0e7ff 40%, #f0f9ff 100%);

    --bg-body: #f8f9fc;
    --bg-white: #ffffff;
    --bg-section: #f5f3ff;
    --bg-section-alt: #faf8ff;
    --bg-card: #ffffff;

    --text: #1e1b4b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;

    --border: #e2e8f0;
    --border-light: #f1f5f9;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 2px 12px rgba(79, 70, 229, 0.06);
    --shadow-glow: 0 0 30px rgba(79, 70, 229, 0.08);

    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --radius-full: 100px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Hind Siliguri', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
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: 100px 0; }
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #c7d2fe; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #a5b4fc; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 36px; font-weight: 700; color: var(--text); line-height: 1.3; }
.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid var(--primary-100);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(79, 70, 229, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}
.btn-lg { padding: 14px 36px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ===== FLOATING NAVBAR ===== */
.header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1100px;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.header.scrolled .header-inner {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}
.logo img { height: 36px; }
.logo-icon {
    width: 36px; height: 36px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 16px;
}
.logo-text { color: var(--text); }
.nav { display: flex; align-items: center; gap: 8px; }
.nav-link {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: var(--primary-50);
}
.header-cta {
    padding: 10px 24px;
    border-radius: var(--radius-full) !important;
    font-size: 14px;
}
.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);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 160px 0 100px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}
.hero-glow-1, .hero-glow-2 { display: none; }
.hero-bg-pattern {
    display: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
}
.hero-content h1 .text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 540px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-actions .btn-primary {
    border-radius: var(--radius-sm);
    padding: 14px 32px;
}
.hero-actions .btn-outline {
    border-radius: var(--radius-sm);
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.hero-stats .stat-item h4 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.hero-stats .stat-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    background: var(--border);
}
.mt-4 { margin-top: 1.5rem; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-illustration { position: relative; height: 440px; }
.hero-main-visual {
    position: absolute;
    top: 20px; left: 30px;
    width: 340px;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.browser-header {
    display: flex; gap: 6px; padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }
.browser-body { padding: 24px; text-align: center; }
.hero-center-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}
.skeleton-line {
    height: 10px;
    background: #f1f5f9;
    border-radius: 5px;
    margin: 8px auto;
}
.skeleton-line.w-70 { width: 70%; }
.skeleton-line.w-90 { width: 90%; }
.skeleton-line.w-40 { width: 40%; }

.floating-card {
    position: absolute;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
}
.floating-card .icon-wrap {
    width: 42px; height: 42px;
    background: var(--primary-50);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}
.floating-card .icon-wrap.secondary { background: #fef3c7; color: #f59e0b; }
.floating-card .icon-wrap.accent { background: #fce7f3; color: #ec4899; }
.floating-card .card-text h5 { font-size: 14px; font-weight: 600; color: var(--text); }
.floating-card .progress-bar {
    width: 120px; height: 5px;
    background: #f1f5f9;
    border-radius: 3px;
    margin-top: 6px;
}
.floating-card .progress-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 3px;
}
.floating-card .progress-fill.p-90 { width: 90%; }
.floating-card .progress-fill.p-85 { width: 85%; }
.floating-card .progress-fill.secondary-bg { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.card-1 { top: 0; right: 20px; animation: float-card 4s ease-in-out infinite; }
.card-2 { bottom: 60px; left: -10px; animation: float-card 4s ease-in-out infinite 1.5s; }
.card-3 {
    bottom: 20px; right: 30px;
    padding: 12px;
}
.card-3 .icon-wrap { width: 48px; height: 48px; }

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

.hero-circle {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(79, 70, 229, 0.04);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.hero-circle-2 {
    width: 200px; height: 200px;
    background: rgba(139, 92, 246, 0.06);
}

.glass-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* ===== SERVICES SECTION ===== */
.services-section { padding: 80px 0; background: var(--bg-white); }
.compact-service-wrapper { display: flex; justify-content: center; }
.service-strip {
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.c-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    color: inherit;
    flex: 1;
    justify-content: center;
}
.c-service-item:hover, .c-service-item.active-item {
    background: var(--primary-50);
}
.c-icon-box {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--primary-50);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}
.c-service-item:hover .c-icon-box,
.c-service-item.active-item .c-icon-box {
    background: var(--gradient);
    color: #fff;
}
.pulse-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(79, 70, 229, 0.3);
    border-radius: 14px;
    animation: pulse-beat 2s ease-in-out infinite;
}
@keyframes pulse-beat { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0; transform: scale(1.3); } }
.c-content h3 { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.3; }
.c-sub { font-size: 12px; color: var(--text-muted); white-space: nowrap; }
.c-divider { width: 1px; height: 36px; background: var(--border); margin: 0 8px; }
.arrow-icon { font-size: 14px; color: var(--text-muted); transition: var(--transition); }
.c-service-item:hover .arrow-icon { color: var(--primary); transform: translateX(3px); }

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section { background: var(--bg-section); }
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.portfolio-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.2);
}
.portfolio-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--primary-50);
}
.portfolio-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.portfolio-card:hover .portfolio-image img { transform: scale(1.05); }
.portfolio-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #c7d2fe;
    font-size: 40px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
}
.portfolio-overlay {
    position: absolute; bottom: 12px; left: 12px;
}
.portfolio-category {
    background: var(--bg-white);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}
.portfolio-info { padding: 20px; }
.portfolio-info h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; 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: 12px; font-size: 14px; font-weight: 600; color: var(--primary);
    transition: var(--transition);
}
.portfolio-link:hover { gap: 10px; }

/* ===== LARAVEL E-COMMERCE SECTION ===== */
.laravel-section { background: var(--bg-white); background-image: radial-gradient(var(--border) 1px, transparent 1px); background-size: 30px 30px; }
.section-desc { font-size: 16px; color: var(--text-secondary); max-width: 800px; margin: 16px auto 0; line-height: 1.8; }

.laravel-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

/* Left side */
.laravel-features { flex: 1; }
.lf-title { font-size: 24px; font-weight: 700; margin-bottom: 24px; color: var(--text); }
.lf-list { list-style: none; margin-bottom: 32px; }
.lf-list li { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.lf-icon {
    width: 28px; height: 28px;
    background: var(--primary-50); color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 4px;
}
.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; flex-wrap: wrap; }

/* Right side */
.laravel-pricing {
    flex: 1.5;
    display: flex;
    gap: 20px;
    align-items: center;
}
.lp-card {
    flex: 1;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}
.lp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.lp-popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
    z-index: 2;
}
.lp-popular:hover { transform: scale(1.05) translateY(-5px); }
.lp-badge {
    position: absolute;
    top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gradient); color: #fff;
    padding: 4px 20px; border-radius: var(--radius-full);
    font-size: 12px; font-weight: 600;
}
.lp-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.lp-price { font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 24px; }
.lp-features { list-style: none; text-align: left; }
.lp-features li {
    font-size: 13px; color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex; align-items: flex-start; gap: 8px;
    line-height: 1.5;
}
.lp-features li i { color: var(--primary); font-size: 6px; margin-top: 6px; }

/* ===== FEATURES SECTION ===== */
.features-section { background: var(--bg-white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-item {
    display: flex;
    gap: 16px;
    padding: 28px;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.feature-item:hover {
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}
.feature-check {
    width: 48px; height: 48px;
    background: var(--primary-50);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}
.feature-item:hover .feature-check {
    background: var(--gradient);
    color: #fff;
}
.feature-content h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.feature-content p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ===== DEMOS SECTION ===== */
.demo-section { background: var(--bg-section); }
.demo-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
    background: var(--bg-white); border: 1px solid var(--border); color: var(--text-secondary);
    padding: 9px 22px; border-radius: 50px; font-size: 13px; font-weight: 600;
    transition: var(--transition); cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 4px 14px rgba(79,70,229,0.25); }
.demo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.demo-card {
    background: var(--bg-white); border-radius: var(--radius); border: 1px solid var(--border);
    overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.demo-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

/* Browser Chrome */
.demo-browser {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; background: #f1f5f9; border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 5px; }
.browser-dots span {
    width: 8px; height: 8px; 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: 4px 10px; font-size: 11px; color: #94a3b8; display: flex; align-items: center; gap: 6px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.browser-url i { color: #22c55e; font-size: 9px; }

.demo-image { position: relative; width: 100%; height: 200px; overflow: hidden; background: #e2e8f0; }
.demo-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: 0.5s ease; }
.demo-card:hover .demo-image img { transform: scale(1.05); }
.demo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; color: #cbd5e1; background: linear-gradient(135deg, #f1f5f9, #e2e8f0); }
.demo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex; align-items: flex-end; justify-content: center; padding-bottom: 20px;
    opacity: 0; transition: var(--transition);
}
.demo-card:hover .demo-overlay { opacity: 1; }
.demo-live-btn {
    background: var(--gradient); color: #fff; padding: 10px 24px; border-radius: 50px;
    font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 16px rgba(79,70,229,0.35); transition: var(--transition);
    transform: translateY(10px);
}
.demo-card:hover .demo-live-btn { transform: translateY(0); }
.demo-live-btn:hover { box-shadow: 0 6px 24px rgba(79,70,229,0.5); color: #fff; }

.demo-info { padding: 18px 20px; }
.demo-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.demo-cat { font-size: 11px; font-weight: 600; color: var(--primary); background: var(--primary-50); padding: 4px 12px; border-radius: 50px; }
.demo-info h4 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 0; }
.demo-empty {
    grid-column: 1 / -1; min-height: 240px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: var(--bg-white); border: 2px dashed var(--border); border-radius: var(--radius);
    color: var(--text-muted);
}
.demo-empty i { font-size: 48px; margin-bottom: 16px; opacity: 0.3; }
.demo-empty p { font-size: 15px; }

/* ===== TECHNOLOGY SECTION ===== */
.tech-section { background: var(--bg-white); overflow: hidden; }
.tech-marquee-wrapper { overflow: hidden; padding: 20px 0; }
.tech-marquee-track {
    display: flex;
    gap: 24px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tech-marquee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
}
.tech-marquee-item:hover {
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: var(--shadow-card);
}
.tech-icon {
    width: 42px; height: 42px;
    background: var(--primary-50);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 18px;
}
.tech-info h4 { font-size: 15px; font-weight: 600; color: var(--text); }
.tech-info p { font-size: 12px; color: var(--text-muted); }

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section { background: var(--bg-section); }
.testimonials-slider { overflow: hidden; position: relative; }
.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-card {
    min-width: calc(33.333% - 24px);
    margin: 0 12px;
    padding: 30px;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.testimonial-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder {
    width: 100%; height: 100%;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
}
.testimonial-info { flex: 1; }
.testimonial-info h4 { font-size: 16px; font-weight: 600; color: var(--text); }
.testimonial-info p { font-size: 13px; color: var(--text-muted); }
.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-stars { margin-bottom: 14px; }
.testimonial-stars i { color: #f59e0b; font-size: 14px; margin-right: 2px; }
.testimonial-text { font-size: 16px; color: var(--text-secondary); line-height: 1.8; }
.testimonial-dots {
    display: flex; gap: 8px; justify-content: center; margin-top: 24px;
}
.testimonial-dots .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: var(--transition);
}
.testimonial-dots .dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--bg-white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(79, 70, 229, 0.2); }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-card); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: transparent;
    border: none;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: left;
}
.faq-question i {
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding: 0 24px 18px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section { background: var(--bg-section); padding: 60px 0 80px; }
.cta-card {
    background: var(--gradient);
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    top: -100px; right: -100px;
}
.cta-icon { font-size: 48px; margin-bottom: 20px; opacity: 0.9; }
.cta-card h2 { font-size: 32px; font-weight: 700; margin-bottom: 14px; }
.cta-card p { font-size: 16px; opacity: 0.9; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-card .btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.cta-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: #1e1b4b;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo img { height: 40px; filter: brightness(10); }
.footer-logo .logo-icon {
    background: var(--gradient);
    color: #fff;
}
.footer-logo .logo-text { color: #fff; font-size: 20px; font-weight: 700; }
.footer-about { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 14px;
}
.social-links a:hover { background: var(--primary); color: #fff; }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.footer-col li a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col li a:hover { color: #fff; }
.footer-col li i { color: var(--primary-light); font-size: 13px; }
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    display: flex; align-items: center; gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    font-weight: 600;
    font-size: 14px;
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}
.whatsapp-float i { font-size: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .laravel-grid { flex-direction: column; gap: 40px; }
    .laravel-pricing { width: 100%; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .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) {
    .header { width: 95%; top: 10px; }
    .header-inner { padding: 10px 16px; }
    .nav { 
        display: none;
        position: absolute;
        top: 70px; left: 0; right: 0;
        background: var(--bg-white);
        border-radius: var(--radius);
        padding: 16px;
        flex-direction: column;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border);
    }
    .nav.open { display: flex; }
    .hamburger { display: flex; }
    .header-cta { display: none; }
    .hero { padding: 140px 0 60px; }
    .hero-content h1 { font-size: 32px; }
    .section-header h2 { font-size: 26px; }
    .section { padding: 60px 0; }
    .features-grid, .portfolio-grid, .demo-grid { grid-template-columns: 1fr; }
    
    .lf-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 24px; }
    .lf-list li { flex-direction: column; gap: 8px; margin-bottom: 0; align-items: flex-start; }
    .lf-text h4 { font-size: 14px; }
    .lf-text p { font-size: 12px; line-height: 1.4; }
    .lf-actions { justify-content: center; }

    .laravel-pricing { flex-direction: column; width: 100%; gap: 24px; }
    .lp-card { width: 100%; }
    .lp-popular { transform: none; box-shadow: var(--shadow-sm); }
    .lp-popular:hover { transform: translateY(-4px); }
    .service-strip {
        flex-direction: row;
        flex-wrap: wrap;
        border-radius: var(--radius);
        padding: 12px;
        gap: 8px;
        justify-content: center;
    }
    .c-service-item {
        flex: 0 0 calc(50% - 8px);
        padding: 10px 12px;
        border-radius: var(--radius-sm);
        background: var(--primary-50);
        justify-content: flex-start;
    }
    .c-service-item .arrow-icon { display: none; }
    .c-divider { display: none; }
    .c-icon-box { width: 36px; height: 36px; font-size: 14px; }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-4px); }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: row; gap: 0; text-align: center; justify-content: space-between; }
    .hero-stats .stat-item { flex: 1; }
    .hero-stats .stat-item h4 { font-size: 24px; }
    .hero-stats .stat-item p { font-size: 11px; }
    .stat-divider { width: 1px; height: 40px; margin: 0; background: var(--border); }
    .testimonial-card { min-width: calc(100% - 24px); margin: 0 12px; padding: 24px; }
    .cta-card { padding: 40px 24px; }
    .cta-card h2 { font-size: 24px; }
}

/* ===== SELECTION ===== */
::selection { background: var(--primary-100); color: var(--primary-dark); }

/* ===== FADE ANIMATIONS ===== */
.fade-up { opacity: 1; }