/* ====================================================
   ORBEX STUDIO — style.css
   Premium Discord Agency Website
   ==================================================== */

/* ── CSS Variables ── */
:root {
  --bg:           #0B1324;
  --bg-card:      #0f1a2e;
  --bg-glass:     rgba(15, 26, 46, 0.7);
  --bg-input:     rgba(15, 26, 46, 0.85);
  --accent:       #F26430;
  --accent-dim:   rgba(242, 100, 48, 0.15);
  --accent-glow:  rgba(242, 100, 48, 0.35);
  --text:         #FFFFFF;
  --text-sec:     #C9D1D9;
  --text-muted:   #6e7d91;
  --border:       rgba(255,255,255,0.07);
  --border-accent:rgba(242, 100, 48, 0.3);
  --shadow:       0 4px 32px rgba(0,0,0,0.4);
  --shadow-card:  0 8px 40px rgba(0,0,0,0.5);
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', monospace;
  --nav-h:        70px;
}

/* ── Real Logo Images ── */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.hero-logo-img {
  height: 80px;
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(242,100,48,0.3));
  animation: fade-up 0.6s ease both 0.1s;
}

.footer-brand .nav-logo-img {
  height: 32px;
}

/* ── Loading Screen ── */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Visible for 0.8s, fades over 0.4s */
  animation: ls-fade 0.4s ease 0.8s forwards;
  pointer-events: none;
}

@keyframes ls-fade {
  to { opacity: 0; visibility: hidden; }
}

#loading-screen.gone {
  display: none !important;
}

.loader-inner { text-align: center; }

.loader-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  position: relative;
  box-shadow: 0 0 16px rgba(242,100,48,0.3);
}

.loader-logo::before,
.loader-logo::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--accent);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  width: 36px;
  height: 36px;
}

.loader-logo::before { left: 6px; }
.loader-logo::after  { right: 6px; }

.loader-bar {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
  animation: load-bar 1s ease forwards;
}

@keyframes load-bar {
  from { width: 0%; }
  to   { width: 100%; }
}


/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Google Font Import ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ── */
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 5px 14px;
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  background: var(--accent-dim);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-sec);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Cards Grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Glass Card ── */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242,100,48,0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px var(--border-accent);
}

.glass-card:hover::before { opacity: 1; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(242,100,48,0.35);
}

.btn-primary:hover {
  background: #d4521e;
  box-shadow: 0 8px 32px rgba(242,100,48,0.55);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-full { width: 100%; }

.btn-loader {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.btn.loading .btn-text { display: none; }
.btn.loading .btn-loader { display: block; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(11,19,36,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 32px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px; height: 36px;
  position: relative;
  flex-shrink: 0;
}

.logo-mark::before, .logo-mark::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2.5px solid var(--accent);
}

.logo-mark::before {
  width: 20px; height: 20px;
  top: 50%; left: 2px;
  transform: translateY(-50%);
}

.logo-mark::after {
  width: 20px; height: 20px;
  top: 50%; right: 2px;
  transform: translateY(-50%);
}

/* Centre dot */
.logo-mark > span {
  display: none;
}

.nav-logo .logo-mark {
  background: none;
}

/* Shared logo-mark dot */
.logo-mark-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--accent);
  border-radius: 100px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.currency-switcher {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.currency-btn {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
  letter-spacing: 0.05em;
}

.currency-btn.active {
  background: var(--accent);
  color: #fff;
}

.currency-btn:hover:not(.active) { color: var(--text); }

.nav-cta { padding: 9px 22px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 100px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero-section {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.orb-1 {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -200px; right: -100px;
  animation: orb-float 8s ease-in-out infinite;
}

.orb-2 {
  width: 400px; height: 400px;
  background: #1a3a6b;
  bottom: -150px; left: -100px;
  animation: orb-float 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px; height: 300px;
  background: var(--accent);
  top: 40%; left: 20%;
  animation: orb-float 12s ease-in-out infinite 2s;
  opacity: 0.07;
}

.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 5%;
  opacity: 0.6;
}

.deco-svg { width: min(500px, 45vw); height: auto; }

.hero-container { position: relative; z-index: 1; }

.hero-logo-wrap {
  margin: 0 auto 32px;
  width: fit-content;
}

.hero-logo-mark {
  width: 80px; height: 80px;
  position: relative;
  margin: 0 auto;
}

.hero-logo-mark::before, .hero-logo-mark::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 3px solid var(--accent);
  transition: all 0.5s ease;
}

.hero-logo-mark::before {
  width: 50px; height: 50px;
  top: 50%; left: 4px;
  transform: translateY(-50%);
  animation: orbit-pulse 3s ease-in-out infinite;
}

.hero-logo-mark::after {
  width: 50px; height: 50px;
  top: 50%; right: 4px;
  transform: translateY(-50%);
  animation: orbit-pulse 3s ease-in-out infinite 0.5s;
}

/* Outer ring */
.hero-logo-mark .ring-outer {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(242,100,48,0.25);
  animation: spin 12s linear infinite;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  animation: fade-up 0.6s ease both 0.2s;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.hero-headline {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  animation: fade-up 0.6s ease both 0.3s;
}

.hero-headline .hl-accent { color: var(--accent); }

.hero-sub {
  font-size: 18px;
  color: var(--text-sec);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.65;
  animation: fade-up 0.6s ease both 0.4s;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fade-up 0.6s ease both 0.5s;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fade-up 0.6s ease both 0.6s;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.trust-icon {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Stats ── */
.stats-section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(242,100,48,0.02);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span { color: var(--accent); }

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Why Us ── */
.why-section { background: linear-gradient(180deg, transparent, rgba(242,100,48,0.03) 50%, transparent); }

.why-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.why-icon svg { width: 22px; height: 22px; }

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-card p { font-size: 14px; color: var(--text-sec); line-height: 1.6; }

/* ── Services Overview ── */
.service-overview-card { display: flex; flex-direction: column; }

.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 24px;
}

.service-icon-wrap svg { width: 26px; height: 26px; }

.service-overview-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-overview-card p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.service-price-tag {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-price-tag strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}

/* ── Services Detail ── */
.services-detail { margin-top: 80px; }

.service-detail-block {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}

.service-detail-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.service-detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.service-detail-header h3 {
  font-size: 26px;
  font-weight: 800;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.plan-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}

.plan-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--border-accent), 0 20px 60px rgba(242,100,48,0.15);
}

.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-price-block {
  margin-bottom: 24px;
}

.plan-price {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
}

.plan-price sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  vertical-align: baseline;
}

.price-alt {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  font-size: 14px;
  color: var(--text-sec);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan-features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='%23F26430' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Custom Bot card */
.custom-bot-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 40px;
  backdrop-filter: blur(12px);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.custom-bot-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.custom-bot-card p {
  color: var(--text-sec);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.quote-badge {
  display: inline-block;
  padding: 8px 24px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 24px;
}

/* ── Comparison Table ── */
.comparison-section { background: rgba(0,0,0,0.2); }

.table-wrap { overflow-x: auto; border-radius: var(--radius); }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.compare-table th {
  background: rgba(242,100,48,0.06);
  font-weight: 700;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.compare-table td:first-child {
  text-align: left;
  color: var(--text-sec);
}

.compare-table th:first-child { text-align: left; }

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr:hover td { background: rgba(255,255,255,0.02); }

.check { color: var(--accent); font-weight: 700; font-size: 18px; }
.cross { color: var(--text-muted); font-size: 16px; }

/* ── Products ── */
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  color: var(--text);
  border-color: var(--accent);
  background: var(--accent-dim);
}

.filter-btn.active { color: var(--accent); }

.product-card { display: flex; flex-direction: column; }

.product-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(242,100,48,0.1), rgba(11,19,36,0.8));
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  loading: lazy;
}

.product-img-placeholder {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}

.product-img-placeholder svg {
  width: 48px; height: 48px;
  color: var(--accent);
  opacity: 0.5;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,19,36,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

.coming-soon-badge {
  padding: 6px 16px;
  background: rgba(11,19,36,0.9);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-features li {
  font-size: 13px;
  color: var(--text-sec);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-features li::before {
  content: '→';
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.product-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}

.product-card.hidden { display: none; }

/* ── Reviews ── */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.reviews-avg {
  font-size: 42px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.reviews-stars-avg { font-size: 22px; margin-bottom: 4px; }

.reviews-count { font-size: 14px; color: var(--text-muted); }

.review-card { display: flex; flex-direction: column; }

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #d4521e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}

.review-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.review-meta { flex: 1; }

.review-name { font-size: 15px; font-weight: 700; }

.review-service {
  font-size: 12px;
  color: var(--accent);
  margin-top: 2px;
}

.review-date { font-size: 12px; color: var(--text-muted); margin-left: auto; }

.review-stars { font-size: 16px; margin-bottom: 12px; }

.review-text {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
  flex: 1;
}

/* ── FAQ ── */
.faq-section { background: linear-gradient(180deg, rgba(242,100,48,0.02), transparent); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
  background: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}

.faq-icon svg { width: 14px; height: 14px; }

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}

.faq-answer-inner {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: border-color var(--transition);
}

.contact-info-card:hover { border-color: var(--border-accent); }

.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-icon svg { width: 20px; height: 20px; }

.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  word-break: break-all;
}

.contact-info-value a { transition: color var(--transition); }
.contact-info-value a:hover { color: var(--accent); }

.contact-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 3px 10px;
  transition: all var(--transition);
  cursor: pointer;
}

.contact-copy-btn:hover { color: var(--accent); border-color: var(--border-accent); }

/* Form */
.contact-form-wrap {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(12px);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  letter-spacing: 0.03em;
}

.form-group label span { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236e7d91' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option { background: var(--bg-card); color: var(--text); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(242,100,48,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.field-error {
  font-size: 12px;
  color: #ff5252;
  min-height: 16px;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #ff5252;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: -8px;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.footer-deco { position: absolute; inset: 0; pointer-events: none; }

.footer-orb {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(120px);
  opacity: 0.04;
  bottom: -200px; right: -100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}

.footer-brand .logo-mark { width: 32px; height: 32px; }
.footer-brand .nav-logo { margin-bottom: 16px; }

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.social-links { display: flex; gap: 10px; flex-wrap: wrap; }

.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  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: all var(--transition);
}

.social-link:hover {
  background: var(--accent-dim);
  border-color: var(--border-accent);
  color: var(--accent);
}

.social-link svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-sec);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-sec);
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 15px; height: 15px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 13px; color: var(--text-muted); }

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--accent); }

/* ── Toast ── */
#toast-container {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  min-width: 280px;
  max-width: 380px;
  animation: toast-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  backdrop-filter: blur(12px);
}

.toast.removing { animation: toast-out 0.3s ease forwards; }
.toast.success { border-left: 3px solid #2ecc71; }
.toast.error { border-left: 3px solid #ff5252; }
.toast.info { border-left: 3px solid var(--accent); }

.toast-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

.toast.success .toast-icon { color: #2ecc71; }
.toast.error .toast-icon { color: #ff5252; }
.toast.info .toast-icon { color: var(--accent); }

.toast-msg { font-size: 14px; font-weight: 500; flex: 1; }

/* ── Scroll To Top ── */
#scroll-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-sec);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow);
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-top:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

#scroll-top svg { width: 18px; height: 18px; }

/* ── Animations ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.6; }
}

@keyframes orbit-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes load-bar {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

@keyframes toast-in {
  from { opacity: 0; transform: translateX(40px) scale(0.9); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes toast-out {
  to { opacity: 0; transform: translateX(40px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  /* Always show solid background on mobile */
  #navbar {
    background: #0d1628;
    box-shadow: 0 1px 0 var(--border);
    z-index: 1000;
    overflow: visible;
  }

  /* Ensure nav-container fills the full navbar height properly */
  .nav-container {
    justify-content: space-between;
    gap: 0;
    padding: 0 16px;
    height: var(--nav-h);
  }

  /* Dropdown panel slides in BELOW the navbar bar */
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(11,19,36,0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 16px 24px;
    border-bottom: 1px solid var(--border);
    /* Hidden state: invisible, moved up, no pointer events */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 998;
    margin-left: 0;
    /* No backdrop-filter here — it bleeds through on mobile Safari */
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    padding: 13px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
    font-size: 15px;
    display: block;
  }

  .nav-link.active::after { display: none; }

  /* Show only hamburger in nav-actions on mobile */
  .nav-actions { flex: 0 0 auto; gap: 0; }
  .currency-switcher { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-section { padding-top: calc(var(--nav-h) + 40px); min-height: auto; }
  .hero-headline { font-size: clamp(28px, 8vw, 42px); }
  .hero-sub { font-size: 16px; }
  .hero-deco { display: none; }

  /* Grids */
  .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { max-width: 100%; }

  /* Misc */
  #toast-container { bottom: 16px; right: 16px; left: 16px; }
  .toast { min-width: unset; max-width: 100%; }
  #scroll-top { bottom: 16px; left: 16px; }
  .comparison-section .section-title { font-size: 22px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stat-item { padding: 24px 16px; }
}
