/* ==========================================================================
   Felix Shop - Hostinger-Inspired Design System
   ========================================================================== */

:root {
    --primary: #0EA5E9;
    --primary-dark: #0284C7;
    --primary-light: #38BDF8;
    --primary-glow: rgba(14, 165, 233, 0.25);
    --accent: #FF6B35;
    --accent-blue: #00D4FF;
    --bg-white: #ffffff;
    --bg-light: #F0F9FF;
    --bg-dark: #0A1628;
    --text-dark: #0C1E35;
    --text-body: #1E3A5A;
    --text-muted: #5B8DB8;
    --border: #BAE6FD;
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-sm: 6px;
    --shadow-sm: 0 2px 12px rgba(14,165,233,0.08);
    --shadow-md: 0 8px 30px rgba(14,165,233,0.15);
    --shadow-lg: 0 20px 60px rgba(14,165,233,0.2);
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --container: 1200px;
}

/* ????????? Dark Mode Variables ?????????????????????????????????????????????????????????????????????????????? */
[data-theme="dark"] {
    --bg-white: #070D1A;
    --bg-light: #0D1B2E;
    --text-dark: #FFFFFF;
    --text-body: #B8D4E8;
    --text-muted: #6B9BB8;
    --border: #1A3555;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
}

.theme-transition,
.theme-transition *,
.theme-transition *::before,
.theme-transition *::after {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
}

/* ????????? Reset & Base ??????????????????????????????????????????????????????????????????????????????????????????????????? */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; color: var(--text-dark); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ????????? Buttons ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(14,165,233,0.35);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14,165,233,0.45);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.btn-white {
    background: #fff;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ????????? Navbar ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}
[data-theme="dark"] .navbar {
    background: rgba(7, 13, 26, 0.97);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}
.logo i {
    font-size: 1.6rem;
    color: var(--primary);
}
.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    transition: var(--transition);
}
.nav-links a:hover {
    background: rgba(14,165,233,0.08);
    color: var(--primary);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle-btn {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.theme-toggle-btn:hover {
    transform: scale(1.12) rotate(20deg);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    color: var(--primary);
}
[data-theme="dark"] .theme-toggle-btn {
    background: #071828;
    border-color: #0C2D4A;
    color: #BAE6FD;
}

.nav-login {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
}
.nav-login:hover { color: var(--primary); }

/* ????????? Hero Section ?????????????????????????????????????????????????????????????????????????????????????????????????????? */
.hero {
    background: linear-gradient(135deg, #0A1628 0%, #0C2D5E 40%, #0369A1 70%, #0EA5E9 100%);
    color: #fff;
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 70% 50%, rgba(255,255,255,0.05) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}
.hero .container { position: relative; z-index: 2; }

/* ????????? Realistic Silhouette Parallax in Products ????????? */
.products {
    position: relative;
    overflow: hidden;
}
/* Spaceship Aesthetic Glow */
.products-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 1000px;
    height: 90vw;
    max-height: 1000px;
    background: radial-gradient(circle, rgba(14,165,233,0.1) 0%, rgba(139,92,246,0.05) 40%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}
[data-theme="dark"] .products-glow {
    opacity: 1;
    background: radial-gradient(circle, rgba(14,165,233,0.7) 0%, rgba(139,92,246,0.4) 40%, transparent 70%);
    transition: background 1s ease, opacity 0.5s ease;
}
/* Dynamic Glow Colors */
[data-theme="dark"] .products-glow.tab-panel {
    background: radial-gradient(circle, rgba(14,165,233,0.7) 0%, rgba(139,92,246,0.4) 40%, transparent 70%);
}
[data-theme="dark"] .products-glow.tab-vps {
    background: radial-gradient(circle, rgba(14,165,233,0.9) 0%, rgba(0,180,216,0.5) 40%, transparent 70%);
}
[data-theme="dark"] .products-glow.tab-linode {
    background: radial-gradient(circle, rgba(16,185,129,0.8) 0%, rgba(5,150,105,0.5) 40%, transparent 70%);
}
[data-theme="dark"] .products-glow.tab-do {
    background: radial-gradient(circle, rgba(0,139,207,0.8) 0%, rgba(0,90,150,0.5) 40%, transparent 70%);
}
[data-theme="dark"] .products-glow.tab-reseller {
    background: radial-gradient(circle, rgba(139,92,246,0.9) 0%, rgba(109,40,217,0.5) 40%, transparent 70%);
}

.products-silhouettes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0; /* Hidden in light mode */
    transition: opacity 0.5s ease;
    mix-blend-mode: multiply;
}

/* Silhouette Tab Animations */
.products-silhouettes.tab-panel { animation: sil-panel 4s infinite ease-in-out; }
.products-silhouettes.tab-vps { animation: sil-vps 4s infinite ease-in-out; }
.products-silhouettes.tab-linode { animation: sil-linode 4s infinite ease-in-out; }
.products-silhouettes.tab-do { animation: sil-do 4.5s infinite ease-in-out; }
.products-silhouettes.tab-reseller { animation: sil-reseller 4.5s infinite ease-in-out; }

@keyframes sil-panel {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-8px) translateX(5px); }
}
@keyframes sil-vps {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-15px) translateX(-5px); }
}
@keyframes sil-linode {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-5px) translateX(-15px); }
}
@keyframes sil-do {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-18px) translateX(8px); }
}
@keyframes sil-reseller {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(-10px); }
}
[data-theme="dark"] .products-silhouettes {
    opacity: 1; /* Fully opaque so it blocks the light perfectly */
}
.silhouette-img {
    position: absolute;
    top: 130px;
    width: 100%;
    max-width: 750px;
    height: 650px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    will-change: transform;
    transition: transform 0.12s cubic-bezier(0.23, 1, 0.32, 1);
    filter: contrast(1000%) grayscale(100%);
}

/* Idle float animation for mobile (no mouse) */
@keyframes sil-float {
    0%, 100% { transform: translate(0, 0); }
    50%       { transform: translate(-10px, -15px); }
}
@media (max-width: 768px) {
    #silImg { animation: sil-float 8s ease-in-out infinite; }
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
}
.hero-badge i { color: #FFD700; }
.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}
.hero-title .highlight {
    background: linear-gradient(90deg, #FFD700, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}
.hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

/* Hero Card Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ????????? Hero Visual (Hostinger-style server card) ?????? */
.hv-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
}

/* Intel Xeon badge top-right */
.hv-cpu-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 5;
    background: #0D1F38;
    border: 1px solid rgba(56,189,248,0.35);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(56,189,248,0.25), 0 8px 24px rgba(0,0,0,0.5);
    animation: hvBadgeFloat 3s ease-in-out infinite;
}
@keyframes hvBadgeFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.hv-cpu-text span {
    display: block;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
}
.hv-cpu-text strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    color: #38BDF8;
    letter-spacing: 0.5px;
}

/* Main hv-card */
.hv-card {
    background: rgba(10,22,40,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(56,189,248,0.07);
}

/* Row 1: Server hostname */
.hv-server-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hv-ubuntu-icon {
    width: 40px; height: 40px;
    background: #1A1A2E;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.08);
}
.hv-hostname {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.2px;
}
.hv-server-meta { display: flex; align-items: center; gap: 8px; }
.hv-kvm { font-size: 0.72rem; color: rgba(255,255,255,0.4); font-weight: 500; }
.hv-running {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.72rem; font-weight: 600; color: #4ade80;
    background: rgba(74,222,128,0.12);
    padding: 2px 9px; border-radius: 50px;
}
.hv-running-dot {
    width: 5px; height: 5px;
    background: #4ade80; border-radius: 50%;
    box-shadow: 0 0 6px #4ade80;
    animation: pulse 1.8s ease-in-out infinite;
}

/* Row 2: Tech icons */
.hv-icons-row {
    display: flex; align-items: center; gap: 6px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: nowrap;
}
.hv-icon-item {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.hv-icon-item:hover {
    background: rgba(56,189,248,0.12);
    border-color: rgba(56,189,248,0.3);
}
.hv-more {
    margin-left: auto;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem; letter-spacing: 2px;
}

/* Row 3: CPU + Memory metrics with animated graphs */
.hv-metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hv-metric-card { padding: 14px 18px 0; }
.hv-metric-card:first-child { border-right: 1px solid rgba(255,255,255,0.06); }
.hv-metric-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); font-weight: 500; }
.hv-metric-value {
    font-size: 1.5rem; font-weight: 800; color: #fff;
    margin: 4px 0 8px;
    font-family: var(--font-heading);
}
.hv-graph { margin: 0 -18px; overflow: hidden; }

/* SVG graph animations ??? CSS only, GPU-accelerated, no JS needed */
.hv-graph-line {
    stroke-dasharray: 350;
    stroke-dashoffset: 350;
    animation: drawLine 2.2s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hv-metric-card:nth-child(2) .hv-graph-line { animation-delay: 0.4s; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.hv-graph-fill {
    opacity: 0;
    animation: graphFadeIn 1.8s ease 0.6s forwards;
}
@keyframes graphFadeIn { to { opacity: 1; } }

/* Row 4: Traffic */
.hv-traffic-row { display: grid; grid-template-columns: 1fr 1fr; }
.hv-traffic-item {
    padding: 12px 18px;
    display: flex; flex-direction: column; gap: 3px;
}
.hv-traffic-item:first-child { border-right: 1px solid rgba(255,255,255,0.06); }
.hv-traffic-label { font-size: 0.68rem; color: rgba(255,255,255,0.3); }
.hv-traffic-val {
    font-size: 0.8rem; font-weight: 600;
    color: rgba(255,255,255,0.6);
    font-family: 'Courier New', monospace;
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.dash-header h4 { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.dash-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #4ade80;
}
.dot-green {
    width: 7px; height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px #4ade80;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

.dash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.dash-stat-item {
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius-md);
    padding: 14px;
}
.dash-stat-item .label { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.dash-stat-item .value { font-size: 1.2rem; font-weight: 700; color: #fff; }

.dash-bar-wrap { margin-bottom: 16px; }
.dash-bar-label {
    display: flex; justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}
.dash-bar-bg {
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    height: 6px;
    overflow: hidden;
}
.dash-bar-fill {
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, #0EA5E9, #00B4D8);
    animation: barGrow 1.5s ease-out forwards;
}
@keyframes barGrow { from{width:0%} }

.dash-servers {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dash-server-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}
.dash-server-row span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.dash-server-row .badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(74,222,128,0.15);
    color: #4ade80;
}

/* ????????? Trust Bar ??????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.trust-bar {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
}
.trust-item i {
    font-size: 1.3rem;
    color: var(--primary);
}

/* ????????? Section Header ???????????????????????????????????????????????????????????????????????????????????????????????? */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(14,165,233,0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 60px; }

/* ????????? Features Section ?????????????????????????????????????????????????????????????????????????????????????????? */
.features {
    padding: 100px 0;
    background: var(--bg-white);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
}
.feature-card:hover {
    border-color: rgba(14,165,233,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: rgba(14,165,233,0.1);
    color: var(--primary);
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ????????? Products / Pricing ???????????????????????????????????????????????????????????????????????????????????? */
.products {
    padding: 100px 0 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}
.products::after {
    content: '';
    display: block;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-light));
    position: relative;
    z-index: 2;
}

/* Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.tab-btn {
    padding: 10px 28px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.tab-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(14,165,233,0.3);
}
.tab-btn:hover:not(.active) { color: var(--primary); }

.tabs-wrapper {
    display: block;
}
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}
.tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* VPS Card */
.vps-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    box-shadow: var(--shadow-sm);
}
.vps-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.vps-info .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 16px 0;
}
.vps-info .price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}
.vps-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}
.vps-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
}
.vps-spec i { color: var(--primary); font-size: 1.1rem; }

/* Panel Pricing Grid Carousel */
.panel-carousel-wrapper {
    position: relative;
    width: 100%;
}
.panel-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 4px 30px; /* bottom padding for shadow and scrollbar space */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.panel-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}
.carousel-btn {
    position: absolute;
    top: calc(50% - 15px);
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-dark);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 10;
    transition: var(--transition);
}
.carousel-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.carousel-btn.left { left: -22px; }
.carousel-btn.right { right: -22px; }

.panel-card {
    flex: 0 0 310px; /* Fixed width for cards in carousel */
    scroll-snap-align: center;
    background: var(--bg-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}
.panel-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.panel-card.popular {
    border-color: var(--primary);
    background: linear-gradient(135deg, #0EA5E9 0%, #38BDF8 100%);
    color: #fff;
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #FF6B35, #FF8C00);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    white-space: nowrap;
}
.panel-card.popular h3 { color: #fff; }
.panel-card h3 { font-size: 1rem; margin-bottom: 12px; }
.panel-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}
.panel-card.popular .panel-price { color: #fff; }
.panel-price-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.panel-card.popular .panel-price-sub { color: rgba(255,255,255,0.7); }
.panel-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    text-align: left;
}
.panel-spec-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-body);
}
.panel-card.popular .panel-spec-row { color: rgba(255,255,255,0.85); }
.panel-spec-row i { color: var(--primary); font-size: 0.95rem; }
.panel-card.popular .panel-spec-row i { color: #FFD700; }

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.stock-available { background: rgba(74,222,128,0.12); color: #16a34a; }
.stock-out { background: rgba(239,68,68,0.1); color: #dc2626; }

/* ????????? VPS Stok Live ??????????????????????????????????????????????????????????????????????????????????????????????????? */
.vps-stock-section {
    margin-top: 16px;
    border-top: 1px solid var(--border);
    padding-top: 24px;
}
.vps-stock-section h4 {
    font-size: 0.95rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.stock-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.stock-table th {
    text-align: left;
    padding: 10px 14px;
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    letter-spacing: 0.3px;
}
.stock-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-body);
}

/* ????????? Why Us / Steps ???????????????????????????????????????????????????????????????????????????????????????????????? */
.why-us {
    padding: 100px 0;
    background: var(--bg-white);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 18px; }
.why-icon {
    width: 46px; height: 46px;
    min-width: 46px;
    background: rgba(14,165,233,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}
.why-item h4 { font-size: 1rem; margin-bottom: 4px; }
.why-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

.why-visual {
    background: linear-gradient(135deg, var(--primary) 0%, #38BDF8 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.why-visual-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.why-visual-card i { font-size: 1.5rem; color: #fff; }
.why-visual-card .wvc-text h5 { color: #fff; font-size: 0.9rem; margin-bottom: 2px; }
.why-visual-card .wvc-text span { color: rgba(255,255,255,0.65); font-size: 0.78rem; }

/* ????????? Testimonials ?????????????????????????????????????????????????????????????????????????????????????????????????????? */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}
.testi-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.testi-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee 30s linear infinite;
}
.testi-marquee:hover .testi-track {
    animation-play-state: paused;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); } /* 12px is half the gap */
}
.testi-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: var(--transition);
    flex: 0 0 360px; /* fixed width for marquee items */
    white-space: normal;
}
.testi-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(14,165,233,0.3);
    transform: translateY(-3px);
}
.testi-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.testi-name { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }
.testi-role { font-size: 0.78rem; color: var(--text-muted); }

/* ????????? FAQ ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.faq {
    padding: 100px 0;
    background: var(--bg-white);
}
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(14,165,233,0.3); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    gap: 12px;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question i {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    min-width: 20px;
}
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
    padding: 0 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

/* ????????? CTA Banner ???????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0A1628 0%, #0369A1 100%);
}
.cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.cta-inner h2 { color: #fff; font-size: 2.2rem; margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ????????? Footer ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.footer {
    background: #0A1628;
    color: rgba(255,255,255,0.65);
    padding: 64px 0 0;
}
[data-theme="dark"] .footer {
    background: #050A14;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
.footer-col h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}
.footer-col a:hover { color: var(--primary-light); }
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--primary-light); }
.footer-bottom-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.ppn-text { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ????????? Order Modal ????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.modal-overlay {
    position: fixed; inset: 0; z-index: 5000;
    background: rgba(0,0,0,0.55);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 36px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.modal-header h3 { font-size: 1.2rem; }
.modal-close {
    background: var(--bg-light); border: none; border-radius: 50%;
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.3rem; color: var(--text-muted);
    transition: var(--transition);
}
.modal-close:hover { background: rgba(239,68,68,0.1); color: #ef4444; }
.modal-product-info {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 20px;
}
.modal-product-info h4 { font-size: 1rem; margin-bottom: 4px; }
.modal-product-info .price { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.modal-product-info .period { font-size: 0.8rem; color: var(--text-muted); }
.modal-actions { display: flex; gap: 12px; margin-top: 24px; }
.modal-actions .btn { flex: 1; justify-content: center; }

/* ????????? Dashboard Panel Layout (for owner + user pages) */
.dashboard-body { background: #0f172a; }
.dashboard-layout { display: flex; min-height: 100vh; }
.sidebar {
    width: 240px; min-width: 240px;
    background: rgba(15,23,42,0.95);
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column;
    position: sticky; top: 0; height: 100vh;
    backdrop-filter: blur(20px);
}
.sidebar-header { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.sidebar-nav { flex: 1; padding: 16px 10px; overflow-y: auto; }
.sidebar-nav ul { display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav a {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px;
    border-radius: var(--radius-md);
    font-size: 0.88rem; font-weight: 500;
    color: rgba(255,255,255,0.55);
    transition: var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active {
    background: rgba(14,165,233,0.15);
    color: var(--primary-light);
}
.sidebar-nav a i { font-size: 1.1rem; }
.sidebar-footer { padding: 16px 10px; border-top: 1px solid rgba(255,255,255,0.05); }
.main-content { flex: 1; padding: 32px; background: #0f172a; color: #e2e8f0; overflow-y: auto; }

/* Stat cards for dashboard */
.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-card {
    background: rgba(30,41,59,0.7);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 22px;
    display: flex; align-items: center; gap: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.stat-card:hover { border-color: rgba(14,165,233,0.3); transform: translateY(-2px); }
.stat-icon {
    width: 46px; height: 46px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.stat-value { font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.stat-trend { font-size: 0.75rem; display: flex; align-items: center; gap: 3px; }
.stat-trend.positive { color: #10b981; }

/* Badge owner */
.badge-owner {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 6px 14px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700;
}

/* ????????? Responsive ???????????????????????????????????????????????????????????????????????????????????????????????????????????? */
@media (max-width: 1024px) {
    .panel-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .trust-inner { gap: 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .panel-grid { grid-template-columns: repeat(2, 1fr); }
    .vps-card { grid-template-columns: 1fr; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-bottom-right { align-items: center; }
    .nav-links { display: none; }
    .dashboard-stats-grid { grid-template-columns: 1fr 1fr; }
    .sidebar { width: 200px; min-width: 200px; }
}

@media (max-width: 480px) {
    .panel-grid { grid-template-columns: 1fr; }
    .dashboard-stats-grid { grid-template-columns: 1fr; }
}

/* ????????? Scroll Reveal Animations ?????????????????????????????????????????????????????????????????? */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: opacity, transform;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes rocket-fly {
    0% { transform: translateY(0) translateX(0) rotate(0deg); }
    25% { transform: translateY(-3px) translateX(2px) rotate(10deg); }
    50% { transform: translateY(-5px) translateX(0) rotate(0deg); }
    75% { transform: translateY(-3px) translateX(-2px) rotate(-10deg); }
    100% { transform: translateY(0) translateX(0) rotate(0deg); }
}

/* ????????? Login Page Styles ??????????????????????????????????????????????????????????????????????????????????????? */
.login-simple-body {
    background: #050A14;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-family: 'Inter', sans-serif;
}
.login-shapes { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.login-shapes .shape { position: absolute; filter: blur(80px); border-radius: 50%; opacity: 0.5; animation: float 10s infinite ease-in-out alternate; }
.login-shapes .shape-1 { width: 400px; height: 400px; background: rgba(14,165,233,0.3); top: -10%; left: -10%; animation-delay: 0s; }
.login-shapes .shape-2 { width: 300px; height: 300px; background: rgba(139,92,246,0.25); bottom: -10%; right: -5%; animation-delay: -5s; }
.login-shapes .shape-3 { width: 250px; height: 250px; background: rgba(16,185,129,0.2); top: 40%; left: 50%; transform: translateX(-50%); animation-delay: -2s; }

.login-simple-container {
    width: 100%;
    max-width: 440px;
    z-index: 10;
    padding: 20px;
}
.back-link-simple {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,0.6);
    text-decoration: none; font-size: 0.9rem;
    margin-bottom: 24px; transition: 0.3s;
}
.back-link-simple:hover { color: #0ea5e9; transform: translateX(-4px); }

.login-glass-card {
    background: rgba(15,23,42,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.login-card-header { text-align: center; margin-bottom: 30px; }
.login-icon-box {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(14,165,233,0.2), rgba(14,165,233,0.05));
    border: 1px solid rgba(14,165,233,0.3);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: #0ea5e9;
    box-shadow: 0 10px 20px rgba(14,165,233,0.1);
}
.login-card-header h2 { font-family: 'Outfit', sans-serif; font-size: 1.8rem; margin-bottom: 8px; font-weight: 700; }
.login-card-header p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.login-tabs {
    display: flex;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 30px;
}
.login-tab {
    flex: 1; padding: 10px;
    background: transparent; border: none;
    color: rgba(255,255,255,0.6);
    font-weight: 600; font-size: 0.9rem;
    border-radius: 8px; cursor: pointer;
    transition: 0.3s;
}
.login-tab.active { background: rgba(255,255,255,0.1); color: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

.input-group { margin-bottom: 20px; text-align: left; }
.input-group label { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 8px; font-weight: 500; }
.form-input {
    width: 100%; padding: 14px 16px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff; font-size: 0.95rem;
    transition: 0.3s;
}
.form-input:focus { border-color: #0ea5e9; outline: none; background: rgba(14,165,233,0.05); box-shadow: 0 0 0 4px rgba(14,165,233,0.1); }

.custom-recaptcha {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 16px; border-radius: 12px;
    margin-bottom: 24px; cursor: pointer; transition: 0.3s;
}
.custom-recaptcha:hover { background: rgba(255,255,255,0.05); }
.rc-checkbox {
    width: 28px; height: 28px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    position: relative; transition: 0.3s;
}
.rc-checkbox.checked { border-color: #10b981; background: rgba(16,185,129,0.1); }
.rc-checkbox.checked::after { content: '\eb7b'; font-family: 'boxicons'; color: #10b981; font-size: 1.2rem; }
.rc-spinner { width: 16px; height: 16px; border: 2px solid transparent; border-top-color: #0ea5e9; border-radius: 50%; animation: bx-spin 1s linear infinite; }
.rc-text { flex: 1; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.rc-logo { text-align: center; opacity: 0.7; }
.rc-logo img { width: 24px; margin-bottom: 2px; }
.rc-logo span { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.5); line-height: 1.2; }

.login-submit-btn {
    padding: 14px; font-size: 1rem; border-radius: 12px; font-weight: 600;
    margin-bottom: 24px;
}
.login-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.divider-line {
    display: flex; align-items: center; text-align: center;
    color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-bottom: 24px;
}
.divider-line::before, .divider-line::after { content: ''; flex: 1; border-bottom: 1px solid rgba(255,255,255,0.1); }
.divider-line span { padding: 0 14px; }

.btn-google-simple {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    color: #fff; font-size: 0.95rem; font-weight: 500;
    cursor: pointer; transition: 0.3s;
}
.btn-google-simple:hover:not(:disabled) { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-google-simple img { width: 20px; }
.btn-google-simple:disabled { opacity: 0.5; cursor: not-allowed; }

.login-secure-badge {
    text-align: center; margin-top: 30px;
    font-size: 0.8rem; color: rgba(255,255,255,0.4);
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.login-secure-badge i { color: #10b981; font-size: 1rem; }

.form-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: #ef4444; padding: 12px; border-radius: 8px; font-size: 0.85rem; margin-bottom: 20px; text-align: center; }
.form-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); color: #10b981; padding: 12px; border-radius: 8px; font-size: 0.85rem; margin-bottom: 20px; text-align: center; }

