/* ═══════════════════════════════════════════════════
   SuperVision.in — Public Website Styles
   Server Management & Products
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Variables ─────────────────────────────────── */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-glow: rgba(99, 102, 241, 0.25);
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    --bg: #030712;
    --bg-secondary: #0f172a;
    --bg-card: #1e293b;
    --bg-card-hover: #334155;
    --bg-input: #1e293b;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --text-heading: #f8fafc;
    --border: #1e293b;
    --border-light: #334155;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-xs: 6px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.3);
    --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 60px rgba(99,102,241,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary-light); text-decoration: none; transition: var(--transition); }
a:hover { color: white; }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════ */
.top-bar {
    width: 100%;
    background: #0c1222;
    border-bottom: 1px solid rgba(99,102,241,0.12);
    font-size: 0.82rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-bar-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-bar-inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0;
}

.top-bar-item {
    color: var(--text-muted) !important;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: var(--transition);
}

.top-bar-item:hover {
    color: white !important;
}

.top-bar-phone i {
    color: var(--success);
    font-size: 0.8rem;
}

.top-bar-phone strong {
    color: var(--text);
    font-weight: 600;
}

.top-bar-email i {
    color: var(--primary-light);
    font-size: 0.78rem;
}

.top-bar-sep {
    color: var(--border-light);
    margin: 0 14px;
    font-size: 0.7rem;
    user-select: none;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 2px;
}

.top-bar-social a {
    color: var(--text-muted) !important;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.78rem;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: white !important;
    background: rgba(99,102,241,0.2);
}

.top-bar-login {
    color: white !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transition: var(--transition);
    font-size: 0.78rem;
    letter-spacing: 0.2px;
}

.top-bar-login:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    box-shadow: 0 2px 12px rgba(99,102,241,0.4);
}

@media (max-width: 768px) {
    .top-bar-inner { padding: 0 16px; height: 34px; }
    .top-bar-email { display: none; }
    .top-bar-email + .top-bar-sep,
    .top-bar-left .top-bar-sep { display: none; }
    .top-bar-social { display: none; }
    .top-bar-right .top-bar-sep { display: none; }
    .top-bar-phone span { font-size: 0.76rem; }
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
.pub-nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.pub-nav.top-bar-gone {
    top: 0;
}

.pub-nav.scrolled {
    background: rgba(3, 7, 18, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.pub-nav .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.pub-nav .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.pub-nav .logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(99,102,241,0.3);
}

.pub-nav .logo span {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu a {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
    background: rgba(255,255,255,0.05);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* ── Dropdown Menu ──────────────────────────── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    background: none;
    border: none;
    font-family: var(--font);
}

.nav-dropdown > .nav-dropdown-toggle i.dd-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > .nav-dropdown-toggle,
.nav-dropdown > .nav-dropdown-toggle.active {
    color: white;
    background: rgba(255,255,255,0.05);
}

.nav-dropdown > .nav-dropdown-toggle.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 260px;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 100;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5),
                0 0 0 1px rgba(99,102,241,0.05);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover > .nav-dropdown-toggle i.dd-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu .dd-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    padding: 8px 14px 6px;
    font-weight: 700;
    opacity: 0.6;
}

.nav-dropdown-menu a {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: var(--transition);
    text-decoration: none;
}

.nav-dropdown-menu a:hover {
    background: rgba(99,102,241,0.08);
    color: white;
}

.nav-dropdown-menu a .dd-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    margin-top: 2px;
}

.nav-dropdown-menu a .dd-icon.icon-indigo {
    background: rgba(99,102,241,0.12);
    color: var(--primary-light);
}

.nav-dropdown-menu a .dd-icon.icon-cyan {
    background: rgba(6,182,212,0.12);
    color: var(--accent);
}

.nav-dropdown-menu a .dd-icon.icon-green {
    background: rgba(34,197,94,0.12);
    color: var(--success);
}

.nav-dropdown-menu a .dd-text strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 2px;
}

.nav-dropdown-menu a .dd-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.nav-dropdown-menu a:hover .dd-text strong {
    color: white;
}

.nav-dropdown-menu .dd-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── Buttons ───────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.92rem;
    font-family: var(--font);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(99,102,241,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99,102,241,0.4);
    color: white;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(6,182,212,0.3);
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6,182,212,0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-light);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--primary-light);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    padding: 8px 16px;
}
.btn-ghost:hover { color: white; background: rgba(255,255,255,0.05); }

.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 12px; }
.btn-sm { padding: 6px 14px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn i { font-size: 1.1em; }

/* ═══════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════ */
.hero-slider {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99,102,241,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(6,182,212,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(99,102,241,0.06) 0%, transparent 50%);
    z-index: 0;
}

/* Grid pattern overlay */
.hero-slider::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(1.02);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.hero-slide .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero-text { z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99,102,241,0.12);
    border: 1px solid rgba(99,102,241,0.25);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i { font-size: 0.9em; }

.hero-text h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-heading);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(30,41,59,0.8), rgba(15,23,42,0.9));
    border: 1px solid var(--border-light);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(99,102,241,0.1), transparent, rgba(6,182,212,0.05), transparent);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    100% { transform: rotate(360deg); }
}

.hero-image-placeholder i {
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.5;
    z-index: 1;
}

.hero-image-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    z-index: 1;
}

.hero-image-placeholder span {
    color: var(--text-muted);
    font-size: 0.9rem;
    z-index: 1;
}

/* Floating elements */
.hero-float {
    position: absolute;
    background: rgba(30,41,59,0.9);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px 18px;
    backdrop-filter: blur(10px);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text);
    box-shadow: var(--shadow-lg);
    animation: floatY 4s ease-in-out infinite;
}

.hero-float.float-1 { top: 10%; right: -30px; animation-delay: 0s; }
.hero-float.float-2 { bottom: 15%; left: -30px; animation-delay: 1.5s; }
.hero-float.float-3 { top: 50%; right: -50px; animation-delay: 3s; }

.hero-float i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1rem;
}

.hero-float .f-icon-green { background: rgba(34,197,94,0.15); color: var(--success); }
.hero-float .f-icon-blue { background: rgba(6,182,212,0.15); color: var(--accent); }
.hero-float .f-icon-purple { background: rgba(99,102,241,0.15); color: var(--primary-light); }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Slider dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(99,102,241,0.5);
}

/* ═══════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════ */
.stats-bar {
    position: relative;
    z-index: 5;
    margin-top: -40px;
    padding-bottom: 60px;
}

.stats-inner {
    background: linear-gradient(135deg, var(--bg-card), rgba(30,41,59,0.8));
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--border-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.stat-number span { color: var(--primary-light); }

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   SECTION BASICS
   ═══════════════════════════════════════════════════ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark { background: var(--bg-secondary); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
}

.service-icon.icon-purple { background: rgba(99,102,241,0.12); color: var(--primary-light); }
.service-icon.icon-cyan { background: rgba(6,182,212,0.12); color: var(--accent); }
.service-icon.icon-green { background: rgba(34,197,94,0.12); color: var(--success); }
.service-icon.icon-orange { background: rgba(245,158,11,0.12); color: var(--warning); }
.service-icon.icon-red { background: rgba(239,68,68,0.12); color: var(--danger); }
.service-icon.icon-blue { background: rgba(59,130,246,0.12); color: #60a5fa; }

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--success);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 20px;
    transition: var(--transition);
}

.service-card .card-link:hover { gap: 10px; color: white; }

/* ═══════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════ */

/* Tab switcher */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px;
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
}

.pricing-tab {
    padding: 10px 28px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}

.pricing-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}

.pricing-tab:hover:not(.active) { color: var(--text-heading); }

.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(99,102,241,0.08) 0%, var(--bg-card) 40%);
    box-shadow: 0 0 40px rgba(99,102,241,0.1);
}

.plan-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 4px 20px;
    border-radius: 0 0 10px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card .plan-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.pricing-card .plan-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.plan-price {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -2px;
    line-height: 1;
}

.plan-price .currency {
    font-size: 1.4rem;
    color: var(--text-muted);
    font-weight: 600;
    vertical-align: top;
    margin-right: 2px;
}

.plan-price .cycle {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.plan-features {
    flex: 1;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--text);
}

.plan-features li i {
    color: var(--success);
    font-size: 0.85rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.plan-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.plan-features li.disabled i { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════
   WHY CHOOSE US / FEATURES
   ═══════════════════════════════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    background: rgba(99,102,241,0.1);
    color: var(--primary-light);
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i { color: var(--warning); font-size: 0.9rem; }

.testimonial-card blockquote {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-info strong {
    display: block;
    color: var(--text-heading);
    font-size: 0.95rem;
}

.testimonial-info span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════ */
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(6,182,212,0.05));
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-inner p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════ */
.about-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(99,102,241,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(6,182,212,0.06) 0%, transparent 50%);
}

.about-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
    letter-spacing: -1px;
    position: relative;
}

.about-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.about-image-placeholder i { font-size: 3rem; color: var(--primary-light); opacity: 0.4; }
.about-image-placeholder span { color: var(--text-muted); font-size: 0.9rem; }

.about-image-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.6rem;
    margin: 0 auto 16px;
}

.team-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.team-card .role { color: var(--primary-light); font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.team-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════ */
.contact-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(99,102,241,0.08) 0%, transparent 60%);
}

.contact-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
    position: relative;
}

.contact-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 16px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--border-light);
    transform: translateX(4px);
}

.contact-info-card .ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99,102,241,0.1);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-card h4 { color: var(--text-heading); font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { color: var(--text-muted); font-size: 0.9rem; }
.contact-info-card a { color: var(--primary-light); }

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.contact-form-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group small {
    display: block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* Alert messages */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.2);
    color: var(--success);
}

.alert-danger {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.2);
    color: var(--danger);
}

/* ═══════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════ */
.services-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 40% 50%, rgba(99,102,241,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 30%, rgba(6,182,212,0.06) 0%, transparent 50%);
}

.services-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
    position: relative;
}

.services-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Service detail sections */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.service-detail-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-detail-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text);
}

.service-detail-features li i {
    color: var(--success);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.service-detail-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    position: relative;
}

.service-detail-image i {
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.3;
}

.service-detail-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.service-detail-image span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════════ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-light), var(--primary), var(--border-light), transparent);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-light);
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.process-step:hover .process-number {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(99,102,241,0.2);
}

.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.88rem; }

/* ═══════════════════════════════════════════════════
   TECH STACK LOGOS
   ═══════════════════════════════════════════════════ */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.tech-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 36px;
    text-align: center;
    transition: var(--transition);
    min-width: 140px;
}

.tech-item:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tech-item i { font-size: 2rem; margin-bottom: 10px; display: block; }
.tech-item span { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.pub-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-heading);
    margin-bottom: 14px;
}

.footer-brand .logo-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    font-weight: 900;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer-col h4 {
    color: var(--text-heading);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col a:hover { color: var(--primary-light); padding-left: 4px; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom a { color: var(--primary-light); }

/* ═══════════════════════════════════════════════════
   BREADCRUMB (inner pages)
   ═══════════════════════════════════════════════════ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    position: relative;
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb .sep { opacity: 0.3; }

/* ═══════════════════════════════════════════════════
   PAGE HERO (inner pages - services, about, contact)
   ═══════════════════════════════════════════════════ */
.page-hero {
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(99,102,241,0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(6,182,212,0.06) 0%, transparent 50%);
    z-index: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.page-hero > * { position: relative; z-index: 1; }

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   AUTH PAGES (Login / Register)
   ═══════════════════════════════════════════════════ */
.auth-section {
    padding: 180px 0 80px;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.auth-box {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.auth-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0 0; }
    50% { background-position: 200% 0; }
}

.auth-box-wide { max-width: 580px; }

.auth-box-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-light);
    font-size: 24px;
}

.auth-box-header h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.auth-box-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
}

.auth-alert-danger {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.2);
    color: #fca5a5;
}

.auth-form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-field label i { font-size: 14px; }

.auth-field input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.auth-field input::placeholder { color: var(--text-muted); opacity: 0.5; }

.auth-field input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.auth-submit {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 700;
}

.auth-links {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.auth-links a {
    color: var(--primary-light);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   PRODUCT PAGE (SV BACKUP)
   ═══════════════════════════════════════════════════ */
.product-hero {
    padding: 180px 0 80px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.product-hero-text .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.product-hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-heading);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.product-tagline {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 520px;
}

.product-hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.ph-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}

.ph-stat i {
    color: var(--accent);
    font-size: 18px;
}

.ph-stat strong { color: var(--text-heading); }

/* Product Screenshot Mock */
.product-screenshot {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 80px rgba(99,102,241,0.08);
}

.screenshot-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border);
}

.screenshot-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.screenshot-header .dot.red { background: #ef4444; }
.screenshot-header .dot.yellow { background: #f59e0b; }
.screenshot-header .dot.green { background: #22c55e; }

.screenshot-title {
    margin-left: 12px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.screenshot-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.screenshot-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.ss-icon {
    color: var(--primary-light);
    font-size: 18px;
    flex-shrink: 0;
}

.ss-info { flex: 1; min-width: 0; }

.ss-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ss-bar {
    height: 6px;
    background: var(--bg);
    border-radius: 3px;
    overflow: hidden;
}

.ss-progress {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 1.5s ease;
}

.ss-progress.queued {
    background: var(--border-light);
}

.ss-status {
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.ss-status.success { color: var(--success); }
.ss-status.running { color: var(--accent); }
.ss-status.queued { color: var(--text-muted); }

/* Feature Showcase Blocks */
.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--font-mono);
}

.feature-block-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 14px;
}

.feature-block-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text);
}

.feature-checklist li i {
    color: var(--success);
    font-size: 16px;
    flex-shrink: 0;
}

/* Feature Card Stack */
.feature-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fc-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.fc-card.highlighted {
    background: rgba(99,102,241,0.06);
    border-color: rgba(99,102,241,0.2);
    box-shadow: 0 0 40px rgba(99,102,241,0.06);
}

.fc-card i {
    font-size: 28px;
    color: var(--primary-light);
    flex-shrink: 0;
}

.fc-card.highlighted i { color: var(--accent); }

.fc-card strong {
    display: block;
    color: var(--text-heading);
    font-weight: 700;
    margin-bottom: 2px;
}

.fc-card span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Product Features Grid (small cards) */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pf-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.pf-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99,102,241,0.2);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.3);
}

.pf-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(99,102,241,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-light);
    font-size: 22px;
}

.pf-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.pf-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Install Box */
.install-box {
    max-width: 700px;
    margin: 48px auto 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
}

.install-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.install-command {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    gap: 16px;
}

.install-command code {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent);
    white-space: nowrap;
    overflow-x: auto;
    flex: 1;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: var(--radius-xs);
    color: var(--primary-light);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    font-family: var(--font);
}

.copy-btn:hover {
    background: rgba(99,102,241,0.2);
    color: white;
}

/* Pricing Note */
.pricing-note {
    max-width: 700px;
    margin: 32px auto 0;
    text-align: center;
}

.pricing-note p {
    color: var(--text-muted);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(99,102,241,0.15);
}

.faq-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item h4 i {
    color: var(--primary-light);
    font-size: 14px;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ═══════════════════════════════════════════════════
   TRUSTED BY / PARTNER LOGOS
   ═══════════════════════════════════════════════════ */
.trusted-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.trusted-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 32px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    opacity: 0.5;
    transition: var(--transition);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.trusted-logo:hover { opacity: 0.9; color: var(--text); }

.trusted-logo i {
    font-size: 28px;
    color: var(--primary-light);
    opacity: 0.6;
}

/* ═══════════════════════════════════════════════════
   ANIMATED GRADIENT BG MESH
   ═══════════════════════════════════════════════════ */
.gradient-mesh {
    position: relative;
    overflow: hidden;
}

.gradient-mesh::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    z-index: 0;
    animation: floatMesh 15s ease-in-out infinite;
}

.gradient-mesh::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    z-index: 0;
    animation: floatMesh 12s ease-in-out infinite reverse;
}

@keyframes floatMesh {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-20px, 15px); }
}

/* ═══════════════════════════════════════════════════
   COUNTER/NUMBER ANIMATION
   ═══════════════════════════════════════════════════ */
.stat-number {
    position: relative;
}

.stat-number.counting {
    animation: countPulse 0.6s ease-out;
}

@keyframes countPulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

/* ═══════════════════════════════════════════════════
   ENHANCED CARD HOVER EFFECTS
   ═══════════════════════════════════════════════════ */
.service-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4),
                0 0 0 1px rgba(99,102,241,0.1);
}

.why-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                background 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.3);
    background: var(--bg-card-hover);
}

.testimonial-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-slide .container { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .service-detail { grid-template-columns: 1fr; gap: 32px; }
    .service-detail.reverse { direction: ltr; }
    .service-detail-image { max-height: 300px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-grid::before { display: none; }
    .trusted-logos { gap: 32px; }
    .product-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .product-features-grid { grid-template-columns: repeat(3, 1fr); }
    .feature-block { grid-template-columns: 1fr; gap: 40px; }
    .feature-block.reverse { direction: ltr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .nav-toggle { display: flex; }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(3,7,18,0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 20px 24px;
        gap: 4px;
    }

    .nav-menu.open a { padding: 12px 16px; width: 100%; }

    /* Mobile dropdown */
    .nav-menu.open .nav-dropdown { width: 100%; }
    .nav-menu.open .nav-dropdown-toggle { width: 100%; padding: 12px 16px; justify-content: space-between; }
    .nav-menu.open .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: 100%;
        background: rgba(15,23,42,0.6);
        backdrop-filter: none;
        box-shadow: none;
        border: 1px solid var(--border);
        margin-top: 4px;
        display: none;
    }
    .nav-menu.open .nav-dropdown.open .nav-dropdown-menu { display: block; }
    .nav-menu.open .nav-dropdown-menu::before { display: none; }

    .nav-actions { gap: 6px; }
    .nav-actions .btn-ghost { display: none; }

    .hero-slide .container { padding-top: 120px; }
    .hero-text h1 { font-size: 2rem; }

    .stats-inner { grid-template-columns: 1fr 1fr; padding: 24px; gap: 20px; }
    .stat-number { font-size: 2rem; }
    .stat-item:not(:last-child)::after { display: none; }

    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }

    .service-detail-features { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

    .form-row { grid-template-columns: 1fr; }

    .pricing-tabs { flex-direction: column; width: 100%; }
    .pricing-tab { width: 100%; }

    .section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }

    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }

    .cta-buttons { flex-direction: column; align-items: center; }

    .auth-box { padding: 32px 24px; }
    .auth-row { grid-template-columns: 1fr; }
    .trusted-logos { gap: 24px; }
    .trusted-logo { font-size: 0.95rem; }

    .product-hero { padding: 120px 0 60px; }
    .product-hero-visual { display: none; }
    .product-features-grid { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .install-command { flex-direction: column; }
    .install-command code { font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-text h1 { font-size: 1.7rem; }
    .stats-inner { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.6rem; }
    .trusted-logos { flex-direction: column; gap: 16px; }
    .product-features-grid { grid-template-columns: 1fr; }
}
