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

:root {
    --blue:        #2563eb;
    --blue-dark:   #1d4ed8;
    --blue-light:  #3b82f6;
    --blue-glow:   rgba(37,99,235,0.18);
    --navy:        #0a0f1e;
    --navy-2:      #111827;
    --navy-3:      #1e293b;
    --navy-4:      #334155;
    --white:       #ffffff;
    --gray-50:     #f8fafc;
    --gray-100:    #f1f5f9;
    --gray-200:    #e2e8f0;
    --gray-400:    #94a3b8;
    --gray-600:    #475569;
    --gray-700:    #374151;
    --radius:      12px;
    --radius-lg:   20px;
    --shadow:      0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg:   0 8px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--navy-2);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── LANG TOGGLE ── */
.lang-en { display: none; }
[data-lang="en"] .lang-sr { display: none; }
[data-lang="en"] .lang-en { display: inline; }
[data-lang="en"] .lang-en.block  { display: block; }
[data-lang="en"] .lang-en.flex   { display: flex; }

/* ── NAVBAR ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,15,30,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 0 2rem;
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.3s;
}
.nav-logo {
    display: flex; flex-direction: column; line-height: 1.2;
    text-decoration: none;
}
.nav-logo .logo-main {
    font-size: 1.3rem; font-weight: 800; color: var(--white);
    letter-spacing: -0.5px;
}
.nav-logo .logo-main span { color: var(--blue-light); }
.nav-logo .logo-sub {
    font-size: 0.68rem; font-weight: 400; color: var(--gray-400);
    letter-spacing: 0.3px;
}
.nav-links {
    display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
    color: var(--gray-400); text-decoration: none; font-size: 0.9rem;
    font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang-btn {
    display: flex; align-items: center; gap: 0.25rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; padding: 0.35rem 0.6rem; cursor: pointer;
    font-size: 0.8rem; font-weight: 600; color: var(--gray-400);
    transition: all 0.2s;
}
.lang-btn span { color: var(--white); }
.lang-btn:hover { background: rgba(255,255,255,0.12); color: var(--white); }

.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.6rem 1.4rem; border-radius: 10px;
    font-size: 0.9rem; font-weight: 600; text-decoration: none;
    cursor: pointer; border: none; transition: all 0.2s;
}
.btn-primary {
    background: var(--blue); color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,0.4); }
.btn-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; border-radius: 12px; }
.btn-xl { padding: 1rem 2.4rem; font-size: 1.05rem; border-radius: 14px; }

/* ── HERO ── */
#hero {
    min-height: 100vh;
    background: linear-gradient(165deg, var(--navy) 0%, #0d1a3a 50%, #0a1628 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 100px 2rem 4rem;
    position: relative; overflow: hidden;
}
#hero::before {
    content: '';
    position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
    width: 900px; height: 600px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.18) 0%, transparent 70%);
    pointer-events: none;
}
#hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to bottom, transparent, var(--white));
}
.hero-inner {
    max-width: 1200px; width: 100%; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(37,99,235,0.18); border: 1px solid rgba(37,99,235,0.4);
    color: #93c5fd; border-radius: 999px; padding: 0.4rem 1rem;
    font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero-badge i { font-size: 0.75rem; }
.hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 900;
    color: var(--white); line-height: 1.15; letter-spacing: -1px;
    margin-bottom: 1.25rem;
}
.hero-content h1 span { color: var(--blue-light); }
.hero-content p {
    font-size: 1.1rem; color: #94a3b8; line-height: 1.7; margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
    display: flex; gap: 2rem; flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.hero-stat span { font-size: 0.8rem; color: var(--gray-400); }

/* Dashboard mockup */
.hero-mockup {
    position: relative;
}
.mockup-window {
    background: var(--navy-3);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}
.mockup-bar {
    background: var(--navy-2);
    padding: 0.75rem 1rem;
    display: flex; align-items: center; gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dot {
    width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #10b981; }
.mockup-url {
    flex: 1; background: rgba(255,255,255,0.05);
    border-radius: 6px; height: 22px; margin-left: 0.5rem;
    display: flex; align-items: center; padding: 0 0.75rem;
    font-size: 0.7rem; color: var(--gray-400);
}
.mockup-body {
    display: flex; height: 340px;
}
.mockup-sidebar {
    width: 52px; background: var(--navy);
    display: flex; flex-direction: column; align-items: center;
    padding: 1rem 0; gap: 1.25rem;
    border-right: 1px solid rgba(255,255,255,0.05);
}
.mockup-icon {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; color: var(--gray-400);
}
.mockup-icon.active { background: var(--blue); color: var(--white); }
.mockup-content { flex: 1; padding: 1rem; overflow: hidden; }
.mockup-header {
    display: flex; gap: 0.5rem; margin-bottom: 0.75rem;
}
.mockup-kpi {
    flex: 1; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px; padding: 0.6rem;
}
.mockup-kpi-val { font-size: 1rem; font-weight: 700; color: var(--white); }
.mockup-kpi-lbl { font-size: 0.6rem; color: var(--gray-400); margin-top: 2px; }
.mockup-kpi-up { font-size: 0.6rem; color: #10b981; }
.mockup-chart {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px; padding: 0.6rem; margin-bottom: 0.75rem; height: 80px;
    display: flex; align-items: flex-end; gap: 3px; overflow: hidden;
}
.mockup-bar-item {
    flex: 1; background: var(--blue); border-radius: 3px 3px 0 0; opacity: 0.7;
    transition: height 0.3s;
}
.mockup-table {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px; overflow: hidden;
}
.mockup-tr {
    display: flex; gap: 0.5rem; padding: 0.4rem 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.65rem; color: var(--gray-400);
    align-items: center;
}
.mockup-tr:last-child { border: none; }
.mockup-tr .badge {
    padding: 1px 6px; border-radius: 999px; font-size: 0.6rem; font-weight: 600;
}
.badge-green { background: rgba(16,185,129,0.15); color: #10b981; }
.badge-blue  { background: rgba(59,130,246,0.15); color: #60a5fa; }
.badge-amber { background: rgba(245,158,11,0.15); color: #fbbf24; }
.mockup-tr .name { color: var(--white); font-weight: 600; flex: 1; }
.mockup-tr .amt  { color: #93c5fd; font-weight: 600; }

.mockup-float {
    position: absolute;
    background: var(--navy-3); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 0.75rem 1rem;
    display: flex; align-items: center; gap: 0.75rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.mockup-float.f1 { bottom: -20px; right: -30px; }
.mockup-float.f2 { top: 40px; left: -40px; }
.float-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
}
.float-icon.green  { background: rgba(16,185,129,0.2); color: #10b981; }
.float-icon.blue   { background: rgba(37,99,235,0.2);  color: #60a5fa; }
.float-icon.purple { background: rgba(139,92,246,0.2); color: #c4b5fd; }
.float-text strong { display: block; font-size: 0.8rem; color: var(--white); font-weight: 700; }
.float-text span   { font-size: 0.7rem; color: var(--gray-400); }

/* ── SECTION COMMONS ── */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--blue); margin-bottom: 1rem;
}
.section-label::before, .section-label::after {
    content: ''; flex: 0 0 24px; height: 1px; background: var(--blue); opacity: 0.4;
}
h2.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--navy-2);
    letter-spacing: -0.5px; line-height: 1.2;
}
h2.section-title.white { color: var(--white); }
.section-sub {
    font-size: 1.05rem; color: var(--gray-600); max-width: 580px; margin-top: 0.75rem;
}
.section-sub.white { color: #94a3b8; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── CLIENTS STRIP ── */
#clients { padding: 2.5rem 2rem; background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.clients-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center;
}
.clients-label { font-size: 0.85rem; font-weight: 600; color: var(--gray-400); white-space: nowrap; }
.clients-logos { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; justify-content: center; }
.client-logo {
    font-size: 0.9rem; font-weight: 700; color: var(--gray-400);
    letter-spacing: 0.5px; opacity: 0.7; transition: opacity 0.2s;
}
.client-logo:hover { opacity: 1; }

/* ── FEATURES GRID ── */
#features { background: var(--white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
}
.feature-card {
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 2rem;
    transition: all 0.3s; cursor: default;
}
.feature-card:hover {
    border-color: var(--blue-light); transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1.25rem;
}
.fi-blue   { background: rgba(37,99,235,0.1);  color: var(--blue); }
.fi-indigo { background: rgba(99,102,241,0.1); color: #6366f1; }
.fi-green  { background: rgba(16,185,129,0.1); color: #059669; }
.fi-amber  { background: rgba(245,158,11,0.1); color: #d97706; }
.fi-rose   { background: rgba(244,63,94,0.1);  color: #e11d48; }
.fi-cyan   { background: rgba(6,182,212,0.1);  color: #0891b2; }
.fi-violet { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.fi-teal   { background: rgba(20,184,166,0.1); color: #0d9488; }
.fi-orange { background: rgba(249,115,22,0.1); color: #ea580c; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy-2); margin-bottom: 0.6rem; }
.feature-card p  { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.ftag {
    background: rgba(37,99,235,0.08); color: var(--blue);
    border-radius: 6px; padding: 0.2rem 0.6rem; font-size: 0.75rem; font-weight: 600;
}

/* ── SPOTLIGHT SECTIONS ── */
.spotlight { background: var(--white); }
.spotlight.dark { background: var(--gray-50); }
.spotlight-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.spotlight-inner.reverse { direction: rtl; }
.spotlight-inner.reverse > * { direction: ltr; }
.spotlight-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.spotlight-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.95rem; color: var(--gray-700);
}
.spotlight-list li i {
    color: var(--blue); margin-top: 3px; flex-shrink: 0; font-size: 0.9rem;
}
.spotlight-list li strong { display: block; color: var(--navy-2); font-weight: 600; }
.spot-visual {
    background: var(--navy-3); border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden; box-shadow: var(--shadow-lg);
}
.spot-visual-header {
    background: var(--navy-2); padding: 0.75rem 1.25rem;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.spot-visual-title { font-size: 0.8rem; font-weight: 600; color: var(--white); }
.spot-visual-actions { display: flex; gap: 0.5rem; }
.spot-btn {
    padding: 0.2rem 0.6rem; border-radius: 5px; font-size: 0.65rem; font-weight: 600;
    cursor: pointer; border: none;
}
.spot-btn-primary { background: var(--blue); color: white; }
.spot-btn-ghost   { background: rgba(255,255,255,0.08); color: var(--gray-400); }
.spot-visual-body { padding: 1rem; }
.wms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.wms-bin {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 0.5rem; text-align: center;
}
.wms-bin.active { background: rgba(37,99,235,0.2); border-color: rgba(37,99,235,0.5); }
.wms-bin.full   { background: rgba(16,185,129,0.15); border-color: rgba(16,185,129,0.4); }
.wms-bin.warn   { background: rgba(245,158,11,0.15); border-color: rgba(245,158,11,0.4); }
.wms-bin-code { font-size: 0.65rem; font-weight: 700; color: var(--white); }
.wms-bin-qty  { font-size: 0.6rem; color: var(--gray-400); margin-top: 2px; }
.wms-zone-label {
    font-size: 0.65rem; font-weight: 700; color: var(--gray-400);
    text-transform: uppercase; letter-spacing: 1px; margin: 0.75rem 0 0.4rem;
}
.order-row {
    display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.72rem;
}
.order-row:last-child { border: none; }
.order-no { font-weight: 700; color: var(--white); min-width: 60px; }
.order-client { color: var(--gray-400); flex: 1; }
.order-amount { color: #93c5fd; font-weight: 600; }
.phone-mockup {
    max-width: 220px; margin: 0 auto; position: relative;
}
.phone-frame {
    background: var(--navy-2); border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.12);
    padding: 1.5rem 0.75rem 1rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.phone-notch {
    width: 80px; height: 20px; background: var(--navy);
    border-radius: 10px; margin: 0 auto 1rem;
}
.phone-screen { background: white; border-radius: 18px; overflow: hidden; }
.phone-header {
    background: var(--blue); padding: 0.75rem 1rem;
    font-size: 0.75rem; font-weight: 700; color: white;
}
.phone-body { padding: 0.75rem; }
.phone-item {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem; border-radius: 8px; margin-bottom: 0.5rem;
    background: var(--gray-50); border: 1px solid var(--gray-200);
}
.phone-item-img {
    width: 32px; height: 32px; background: var(--gray-200);
    border-radius: 6px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: var(--gray-600);
}
.phone-item-name { font-size: 0.65rem; font-weight: 600; color: var(--navy-2); }
.phone-item-price { font-size: 0.6rem; color: var(--blue); font-weight: 700; }
.phone-cart-btn {
    margin-top: 0.75rem; width: 100%; background: var(--blue);
    color: white; border: none; border-radius: 8px; padding: 0.5rem;
    font-size: 0.7rem; font-weight: 700; cursor: pointer;
}
.inv-row {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.7rem;
}
.inv-num { font-weight: 700; color: white; min-width: 70px; }
.inv-firm { color: var(--gray-400); flex: 1; }
.inv-amount { color: #34d399; font-weight: 600; }
.inv-badge {
    padding: 2px 7px; border-radius: 999px; font-size: 0.6rem; font-weight: 700;
}
.ib-paid     { background: rgba(16,185,129,0.15); color: #10b981; }
.ib-pending  { background: rgba(245,158,11,0.15);  color: #f59e0b; }
.ib-overdue  { background: rgba(239,68,68,0.15);   color: #ef4444; }

/* ── STATS BAND ── */
#stats {
    background: linear-gradient(135deg, var(--navy-2) 0%, #0d1a3a 100%);
    padding: 4rem 2rem;
}
.stats-grid {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    text-align: center;
}
.stat-item strong {
    display: block; font-size: 2.4rem; font-weight: 900; color: var(--white);
    line-height: 1;
}
.stat-item strong span { color: var(--blue-light); }
.stat-item p { font-size: 0.85rem; color: var(--gray-400); margin-top: 0.5rem; }

/* ── PRICING ── */
#pricing { background: var(--navy); }
.pricing-toggle {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    margin: 2rem 0;
}
.pricing-toggle span { font-size: 0.9rem; color: #94a3b8; }
.toggle-switch {
    position: relative; width: 52px; height: 28px; cursor: pointer;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute; inset: 0; background: rgba(255,255,255,0.1);
    border-radius: 999px; transition: 0.3s;
}
.toggle-slider::before {
    content: ''; position: absolute; height: 20px; width: 20px;
    left: 4px; bottom: 4px; background: white; border-radius: 50%; transition: 0.3s;
}
input:checked + .toggle-slider { background: var(--blue); }
input:checked + .toggle-slider::before { transform: translateX(24px); }
.save-badge {
    background: rgba(16,185,129,0.2); color: #10b981;
    border-radius: 999px; padding: 0.2rem 0.6rem; font-size: 0.75rem; font-weight: 700;
}
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem;
}
.pricing-card {
    background: var(--navy-3); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg); padding: 2rem;
    position: relative; transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
    background: linear-gradient(165deg, #1a2f6e, #162358);
    border-color: var(--blue);
    box-shadow: 0 0 0 1px var(--blue), 0 24px 60px rgba(37,99,235,0.3);
}
.pricing-popular {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--blue); color: white; border-radius: 999px;
    padding: 0.25rem 1rem; font-size: 0.75rem; font-weight: 700; white-space: nowrap;
}
.pricing-name { font-size: 0.85rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; }
.pricing-price {
    margin: 1rem 0; display: flex; align-items: flex-end; gap: 0.25rem;
}
.price-num { font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1; }
.price-cur { font-size: 1.2rem; font-weight: 700; color: var(--gray-400); margin-bottom: 0.5rem; }
.price-per { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 0.3rem; }
.price-annual { font-size: 0.8rem; color: #34d399; font-weight: 600; margin-bottom: 1.25rem; min-height: 1.2rem; background: rgba(16,185,129,0.08); border-radius: 6px; padding: 0.25rem 0.5rem; }
.pricing-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 1.25rem 0; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-features li {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.875rem; color: #94a3b8;
}
.pricing-features li i { font-size: 0.8rem; flex-shrink: 0; }
.pricing-features li i.fa-check { color: #10b981; }
.pricing-features li i.fa-xmark  { color: rgba(255,255,255,0.2); }
.pricing-features li.active { color: #e2e8f0; }
.pricing-cta { margin-top: 1.75rem; width: 100%; text-align: center; display: block; padding: 0.8rem; border-radius: 10px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.2s; }
.pcta-primary { background: var(--blue); color: white; }
.pcta-primary:hover { background: var(--blue-dark); }
.pcta-outline { background: rgba(255,255,255,0.07); color: #e2e8f0; border: 1px solid rgba(255,255,255,0.15); }
.pcta-outline:hover { background: rgba(255,255,255,0.12); }

/* ── FAQ ── */
#faq { background: var(--gray-50); }
.faq-list { max-width: 760px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
    background: var(--white); border: 1px solid var(--gray-200);
    border-radius: var(--radius); overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-question {
    width: 100%; background: none; border: none; cursor: pointer;
    padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center;
    text-align: left; font-size: 0.95rem; font-weight: 600; color: var(--navy-2);
}
.faq-question i { color: var(--blue); font-size: 0.85rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    font-size: 0.9rem; color: var(--gray-600); line-height: 1.7;
}
.faq-answer-inner { padding: 0 1.5rem 1.25rem; }

/* ── CTA BAND ── */
#cta {
    background: linear-gradient(135deg, var(--blue-dark) 0%, #1e40af 100%);
    padding: 5rem 2rem;
}
.cta-inner {
    max-width: 800px; margin: 0 auto; text-align: center;
}
.cta-inner h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; color: var(--white);
    margin-bottom: 1rem; line-height: 1.2;
}
.cta-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
#contact { background: var(--white); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; margin-top: 3rem;
}
.contact-info h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy-2); margin-bottom: 1.25rem; }
.contact-info-item {
    display: flex; align-items: flex-start; gap: 0.75rem;
    margin-bottom: 1.25rem; font-size: 0.9rem; color: var(--gray-600);
}
.contact-info-item i {
    width: 36px; height: 36px; background: var(--gray-100);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-size: 0.9rem; flex-shrink: 0;
}
.contact-info-item strong { display: block; color: var(--navy-2); font-weight: 600; font-size: 0.85rem; }
.contact-form { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--navy-2); }
.form-group input, .form-group select, .form-group textarea {
    padding: 0.65rem 1rem; border: 1.5px solid var(--gray-200); border-radius: 10px;
    font-size: 0.9rem; font-family: inherit; color: var(--navy-2);
    background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
    width: 100%; background: var(--blue); color: white;
    border: none; border-radius: 10px; padding: 0.85rem;
    font-size: 0.95rem; font-weight: 700; cursor: pointer;
    transition: all 0.2s; font-family: inherit;
}
.form-submit:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,0.35); }

/* ── FOOTER ── */
footer {
    background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3.5rem 2rem 2rem;
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.875rem; color: var(--gray-400); line-height: 1.7; margin-top: 0.75rem; max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.875rem; color: var(--gray-400); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem; color: var(--gray-400); flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom a { color: var(--gray-400); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ── MOBILE ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .hero-mockup { display: none; }
    .spotlight-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .spotlight-inner.reverse { direction: ltr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    nav { padding: 0 1.25rem; }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column; position: fixed;
        top: 68px; left: 0; right: 0; background: var(--navy-2);
        padding: 1.5rem; gap: 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-right .btn { display: none; }
    .hamburger { display: flex; }
    .features-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }
.fade-up.d5 { transition-delay: 0.5s; }

.bar-heights { animation: barGrow 1.5s ease-out forwards; }
@keyframes barGrow {
    from { transform: scaleY(0); transform-origin: bottom; }
    to   { transform: scaleY(1); }
}

/* ── FLOATING DEMO BUTTON ── */
.demo-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    background: var(--blue); color: white;
    padding: 0.85rem 1.5rem; border-radius: 999px;
    font-size: 0.9rem; font-weight: 700; text-decoration: none;
    box-shadow: 0 6px 30px rgba(37,99,235,0.55);
    display: flex; align-items: center; gap: 0.5rem;
    transition: all 0.2s; border: none; cursor: pointer;
    animation: floatPulse 3s ease-in-out infinite;
}
.demo-float:hover { background: var(--blue-dark); transform: translateY(-2px) scale(1.03); }
@keyframes floatPulse {
    0%,100% { box-shadow: 0 6px 30px rgba(37,99,235,0.55); }
    50%      { box-shadow: 0 6px 42px rgba(37,99,235,0.8); }
}

/* ── AUTOMATION SECTION ── */
#automation { background: var(--navy-2); padding: 5rem 2rem; }
.automation-intro { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.automation-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}
.auto-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius); padding: 1.25rem 1.5rem;
    display: flex; align-items: flex-start; gap: 1rem; transition: all 0.25s;
}
.auto-card:hover { background: rgba(37,99,235,0.12); border-color: rgba(37,99,235,0.35); }
.auto-icon {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.ai-blue   { background: rgba(37,99,235,0.2);  color: #60a5fa; }
.ai-green  { background: rgba(16,185,129,0.2); color: #34d399; }
.ai-amber  { background: rgba(245,158,11,0.2); color: #fbbf24; }
.ai-purple { background: rgba(139,92,246,0.2); color: #c4b5fd; }
.ai-rose   { background: rgba(244,63,94,0.2);  color: #fb7185; }
.ai-cyan   { background: rgba(6,182,212,0.2);  color: #22d3ee; }
.auto-text strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.auto-text span   { font-size: 0.8rem; color: #94a3b8; line-height: 1.5; }
.auto-arrow {
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; color: var(--blue-light); margin: 0.5rem 0 0.5rem 3.5rem;
    gap: 0.4rem;
}
.auto-flow {
    background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.15);
    border-radius: var(--radius-lg); padding: 1.5rem; margin-top: 2.5rem;
}
.auto-flow-title {
    text-align: center; font-size: 0.8rem; font-weight: 700; color: #93c5fd;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem;
}
.auto-flow-steps {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 0; row-gap: 0.75rem;
}
.flow-step {
    background: var(--navy-3); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px; padding: 0.6rem 1rem; font-size: 0.78rem;
    color: var(--white); font-weight: 600; white-space: nowrap;
    display: flex; align-items: center; gap: 0.4rem;
}
.flow-step i { font-size: 0.75rem; color: var(--blue-light); }
.flow-sep {
    color: var(--blue-light); font-size: 0.9rem; padding: 0 0.5rem; flex-shrink: 0;
}

/* ── HOSTING TABS ── */
.hosting-tabs {
    display: flex; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
    padding: 4px; margin: 0 auto 1.5rem; width: fit-content; gap: 2px;
}
.htab {
    padding: 0.65rem 1.75rem; border-radius: 10px;
    font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.2s;
    border: none; background: transparent; color: #94a3b8;
    display: flex; align-items: center; gap: 0.5rem;
}
.htab.active { background: var(--white); color: var(--navy-2); }
.htab-badge {
    font-size: 0.65rem; background: rgba(16,185,129,0.2); color: #10b981;
    border-radius: 999px; padding: 0.1rem 0.5rem; font-weight: 700;
}
.htab-badge.amber { background: rgba(245,158,11,0.2); color: #f59e0b; }
.hosting-note {
    font-size: 0.82rem; color: #94a3b8; margin-bottom: 1.5rem;
    min-height: 1.4rem;
}

/* ── Custom plan module picker ── */
.cp-module {
    display: flex; align-items: flex-start; gap: 0.75rem;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 0.85rem 1rem; cursor: pointer;
    transition: border-color 0.2s, background 0.2s; user-select: none;
}
.cp-module:hover:not(.cp-locked):not(.cp-soon) { border-color: rgba(139,92,246,0.4); background: rgba(139,92,246,0.07); }
.cp-module input[type=checkbox] { position: absolute; opacity: 0; pointer-events: none; }
.cp-check {
    width: 22px; height: 22px; border-radius: 6px; border: 2px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
    color: transparent; background: transparent; transition: all 0.2s;
}
.cp-module.cp-selected .cp-check { background: #8b5cf6; border-color: #8b5cf6; color: white; }
.cp-module.cp-locked .cp-check  { background: rgba(139,92,246,0.3); border-color: rgba(139,92,246,0.4); color: #c4b5fd; }
.cp-module.cp-soon   { opacity: 0.55; cursor: default; }
.cp-module.cp-soon .cp-check { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: #6b7280; }
.cp-info { flex: 1; min-width: 0; }
.cp-info strong { display: block; color: #e2e8f0; font-size: 0.875rem; margin-bottom: 0.15rem; }
.cp-desc        { display: block; font-size: 0.75rem; color: #94a3b8; line-height: 1.4; }
.cp-price { font-size: 0.85rem; font-weight: 700; color: #a78bfa; white-space: nowrap; flex-shrink: 0; padding-top: 1px; }
.cp-price small { font-weight: 400; color: #6b7280; font-size: 0.7rem; }
.cp-module.cp-locked .cp-price { color: #6ee7b7; }
.price-currency { font-size: 0.85rem; color: #94a3b8; font-weight: 500; margin: 0 3px 0 2px; }
.pricing-card.card-soon { opacity: 0.55; pointer-events: none; position: relative; }
.card-soon-badge { position: absolute; top: 1rem; right: 1rem; background: rgba(245,158,11,0.18); color: #fbbf24; border: 1px solid rgba(245,158,11,0.35); border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
    background: linear-gradient(165deg, var(--navy) 0%, #0d1a3a 50%, #0a1628 100%);
    min-height: 280px;
    display: flex; align-items: center; justify-content: center;
    padding: 100px 2rem 3rem;
    text-align: center;
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
    width: 900px; height: 400px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900;
    color: var(--white); line-height: 1.15; letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}
.page-hero h1 span { color: var(--blue-light); }
.page-hero p {
    font-size: 1.05rem; color: #94a3b8; max-width: 560px; margin: 0 auto;
}

/* ── WHY US TEASER (home) ── */
.why-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
}
.why-card {
    background: var(--gray-50); border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 1.75rem;
    transition: all 0.3s;
}
.why-card:hover { border-color: var(--blue-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.why-card .feature-icon { margin-bottom: 1rem; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy-2); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }
.why-cta { text-align: center; margin-top: 2.5rem; }
.why-cta a { font-size: 0.95rem; font-weight: 700; color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.why-cta a:hover { gap: 0.7rem; }
