/* ============================================================
   Maestroye Hosting — Design System
   Dark theme · RTL · Bootstrap 5.3
   ============================================================ */

:root {
  --bg: #070b14;
  --bg-soft: #0b1220;
  --bg-card: #0f172a;
  --bg-card-2: #111c33;
  --border: rgba(148, 163, 184, 0.14);
  --border-strong: rgba(148, 163, 184, 0.28);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --cyan: #22d3ee;
  --violet: #8b5cf6;
  --accent-1: #22d3ee;
  --accent-2: #8b5cf6;
  --grad: linear-gradient(135deg, #22d3ee 0%, #818cf8 55%, #8b5cf6 100%);
  --grad-soft: linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(139, 92, 246, 0.14));
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #f87171;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --font-head: "Cairo", "Segoe UI", Tahoma, sans-serif;
  --font-body: "Tajawal", "Segoe UI", Tahoma, sans-serif;
}

/* ---------- Base ---------- */
html { scroll-padding-top: 90px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-head { font-family: var(--font-head); font-weight: 800; }

a { color: var(--cyan); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: #67e8f9; }

::selection { background: rgba(139, 92, 246, 0.45); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: #334155; }

/* ---------- Backgrounds & textures ---------- */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
}
.glow-orb { position: absolute; border-radius: 50%; filter: blur(110px); opacity: 0.32; }
.glow-orb.orb-a { width: 560px; height: 560px; background: #22d3ee; top: -180px; right: -120px; }
.glow-orb.orb-b { width: 480px; height: 480px; background: #8b5cf6; top: 120px; left: -160px; opacity: 0.22; }
.glow-orb.orb-c { width: 420px; height: 420px; background: #0ea5e9; bottom: -160px; right: 30%; opacity: 0.16; }

/* ---------- Utility ---------- */
.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 56px 0; }

.badge-pill-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.badge-pill-custom .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.section-title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 900; }
.section-sub { color: var(--text-muted); max-width: 640px; margin-inline: auto; }

/* Cards */
.card-glass {
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card-glass:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-head); font-weight: 700; border-radius: 12px; padding: 12px 26px; transition: all 0.25s ease; }
.btn-grad {
  background: var(--grad);
  color: #07101f;
  border: none;
  box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.6);
}
.btn-grad:hover { color: #07101f; transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(34, 211, 238, 0.5); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); color: #fff; border-color: rgba(148,163,184,0.5); }
.btn-outline-accent {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.5);
}
.btn-outline-accent:hover { background: rgba(34, 211, 238, 0.1); color: #67e8f9; }

/* ---------- Navbar ---------- */
.site-nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1030;
  padding: 18px 0;
  transition: all 0.3s ease;
}
.site-nav.scrolled {
  padding: 10px 0;
  background: rgba(7, 11, 20, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 900; font-size: 1.35rem; color: #fff !important; }
.brand-logo {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--grad);
  color: #07101f;
  font-size: 1.2rem;
  box-shadow: 0 8px 24px -8px rgba(139, 92, 246, 0.7);
}
.nav-link-custom {
  color: var(--text-muted) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 14px !important;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.nav-link-custom:hover { color: #fff !important; background: rgba(255,255,255,0.06); }
.nav-link-custom.active { color: var(--cyan) !important; }

.navbar-toggler { border-color: var(--border-strong) !important; color: var(--text) !important; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(34,211,238,0.25) !important; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.5px;
}
.hero-sub { color: var(--text-muted); font-size: 1.08rem; max-width: 560px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 40px; }
.hero-stat .num { font-family: var(--font-head); font-weight: 900; font-size: 1.7rem; color: #fff; }
.hero-stat .lbl { color: var(--text-dim); font-size: 0.85rem; }

/* Hero visual */
.hero-visual { position: relative; }
.server-card {
  background: linear-gradient(160deg, #0f172a, #0b1220);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.75);
  overflow: hidden;
}
.server-card .sc-head {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.sc-dot { width: 11px; height: 11px; border-radius: 50%; }
.sc-dot.r { background: #f87171; } .sc-dot.y { background: #fbbf24; } .sc-dot.g { background: #34d399; }
.sc-head .sc-url { font-size: 0.8rem; color: var(--text-dim); direction: ltr; margin-inline-start: 10px; font-family: ui-monospace, Consolas, monospace; }
.sc-body { padding: 22px; font-family: ui-monospace, Consolas, monospace; font-size: 0.82rem; direction: ltr; text-align: left; }
.sc-line { display: flex; gap: 10px; padding: 5px 0; }
.sc-line .t { color: #475569; flex-shrink: 0; }
.sc-line.ok .m { color: var(--success); }
.sc-line.info .m { color: var(--cyan); }
.sc-line.warn .m { color: var(--warning); }
.blink { animation: blink 1.2s steps(2) infinite; color: var(--success); }
@keyframes blink { 50% { opacity: 0; } }

.uptime-graph { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--border); }
.uptime-graph .ug-head { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-dim); direction: ltr; margin-bottom: 6px; }
.uptime-graph svg { width: 100%; height: 70px; display: block; }

.float-pill {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 700;
  animation: float 5s ease-in-out infinite;
}
.float-pill .f-ico { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--grad-soft); color: var(--cyan); }
.float-pill small { display: block; color: var(--text-dim); font-weight: 500; font-size: 0.72rem; }
.float-pill.fp-1 { top: 6%; right: -26px; }
.float-pill.fp-2 { bottom: 10%; left: -20px; animation-delay: 2.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Logo strip ---------- */
.logo-strip { padding: 40px 0; border-block: 1px solid var(--border); background: rgba(255,255,255,0.015); }
.logo-strip .strip-row { display: flex; flex-wrap: wrap; gap: 34px; align-items: center; justify-content: center; }
.logo-strip .strip-item { color: var(--text-dim); font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; opacity: 0.75; transition: all .25s ease; }
.logo-strip .strip-item:hover { opacity: 1; color: var(--text-muted); }

/* ---------- Feature icons ---------- */
.ico-box {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  font-size: 1.4rem;
  border-radius: 16px;
  background: var(--grad-soft);
  color: var(--cyan);
  border: 1px solid var(--border);
  margin-bottom: 18px;
  transition: all 0.3s ease;
}
.card-glass:hover .ico-box { transform: scale(1.08) rotate(-4deg); color: #a5b4fc; }

/* ---------- Services ---------- */
.service-card { padding: 34px 28px; height: 100%; position: relative; overflow: hidden; }
.service-card::after {
  content: "";
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 100%; height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card h3 { font-size: 1.15rem; font-weight: 800; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 16px; }
.service-feats { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 8px; }
.service-feats li { color: var(--text-muted); font-size: 0.87rem; display: flex; align-items: center; gap: 8px; }
.service-feats li i { color: var(--success); font-size: 0.75rem; }
.service-card .price-tag { font-family: var(--font-head); font-weight: 900; color: #fff; font-size: 1.05rem; }
.service-card .price-tag small { color: var(--text-dim); font-weight: 600; font-size: 0.75rem; }
.ribbon {
  position: absolute;
  top: 18px; inset-inline-end: -38px;
  background: var(--grad);
  color: #07101f;
  font-size: 0.72rem; font-weight: 800;
  padding: 5px 42px;
  transform: rotate(45deg);
}

/* ---------- Feature split ---------- */
.split-media {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #0f172a, #0d1526);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 360px;
}
.split-media .sm-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(148,163,184,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,0.06) 1px, transparent 1px);
  background-size: 34px 34px;
}
.split-media .sm-chart {
  position: absolute; inset: auto 30px 30px;
  background: rgba(15,23,42,0.85);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  backdrop-filter: blur(6px);
}
.sm-chart .bars { display: flex; align-items: flex-end; gap: 8px; height: 120px; direction: ltr; }
.sm-chart .bar { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--cyan), rgba(34,211,238,0.15)); animation: grow-bar 1.2s ease both; transform-origin: bottom; }
.sm-chart .bar:nth-child(2n) { background: linear-gradient(180deg, var(--violet), rgba(139,92,246,0.15)); }
.sm-chart .bar:nth-child(3n) { background: linear-gradient(180deg, #fb923c, rgba(251,146,60,0.15)); }
@keyframes grow-bar { from { transform: scaleY(0); } to { transform: scaleY(1); } }

.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-muted); }
.check-list li i { color: var(--success); background: rgba(52,211,153,0.12); width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-size: 0.75rem; flex-shrink: 0; margin-top: 4px; }
.check-list li b { color: #fff; font-weight: 700; }

/* ---------- Pricing ---------- */
.pricing-toggle { display: inline-flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 100px; padding: 6px 10px; }
.pricing-toggle .pt-lbl { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; cursor: pointer; user-select: none; margin: 0; }
.pricing-toggle .pt-lbl.active { color: #fff; }
.switch { width: 52px; height: 28px; border-radius: 100px; background: #1e293b; border: 1px solid var(--border-strong); position: relative; cursor: pointer; transition: background .3s ease; direction: ltr; }
.switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--grad); transition: transform 0.3s ease; }
.switch.on { background: rgba(34,211,238,0.2); }
.switch.on::after { transform: translateX(24px) !important; }

.price-card { padding: 40px 32px; height: 100%; display: flex; flex-direction: column; position: relative; }
.price-card.featured {
  border: 1.5px solid rgba(139, 92, 246, 0.55);
  background: linear-gradient(170deg, rgba(139,92,246,0.12), rgba(15,23,42,0.6));
  box-shadow: 0 30px 70px -30px rgba(139, 92, 246, 0.45);
}
.price-card.featured .pc-badge {
  position: absolute; top: -14px; inset-inline-start: 50%; transform: translateX(50%);
  background: var(--grad); color: #07101f; font-weight: 800; font-size: 0.75rem;
  padding: 6px 16px; border-radius: 100px;
}
.price-card h3 { font-size: 1.2rem; font-weight: 800; }
.price-card .pc-desc { color: var(--text-muted); font-size: 0.87rem; }
.price-amount { font-family: var(--font-head); font-weight: 900; font-size: 2.6rem; color: #fff; line-height: 1.1; direction: ltr; text-align: right; }
.price-amount small { font-size: 0.9rem; color: var(--text-dim); font-weight: 600; }
.price-cycle { color: var(--text-dim); font-size: 0.82rem; }
.price-feats { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 10px; flex-grow: 1; }
.price-feats li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-muted); font-size: 0.9rem; }
.price-feats li i.off { color: var(--danger); opacity: 0.6; font-size: 0.8rem; line-height: 1.9; }
.price-feats li i.on { color: var(--success); font-size: 0.8rem; line-height: 1.9; }

/* ---------- Guarantee band ---------- */
.guarantee-band {
  background: var(--grad-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 36px;
}
.guarantee-band .g-ico { font-size: 2.4rem; color: var(--cyan); }
.guarantee-band h3 { font-weight: 900; }
.guarantee-stats { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 26px; }
.guarantee-stats .gs { flex: 1; min-width: 140px; }
.guarantee-stats .gs .num { font-family: var(--font-head); font-weight: 900; font-size: 1.6rem; color: #fff; }
.guarantee-stats .gs .lbl { color: var(--text-dim); font-size: 0.82rem; }

/* ---------- Testimonials ---------- */
.quote-mark { color: rgba(34,211,238,0.35); font-size: 2.2rem; line-height: 0; }
.t-card { padding: 30px; height: 100%; }
.t-card .stars { color: #fbbf24; font-size: 0.82rem; letter-spacing: 2px; margin-bottom: 14px; }
.t-card p { color: var(--text-muted); font-size: 0.92rem; }
.t-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #07101f; background: var(--grad); flex-shrink: 0; }
.t-name { font-weight: 800; color: #fff; font-size: 0.92rem; }
.t-role { color: var(--text-dim); font-size: 0.78rem; }

/* ---------- FAQ ---------- */
.accordion-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  margin-bottom: 14px;
}
.accordion-button {
  background: transparent !important;
  color: #fff !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: none !important;
  padding: 18px 22px;
}
.accordion-button:not(.collapsed)::after { filter: invert(1) hue-rotate(180deg); }
.accordion-body { color: var(--text-muted); padding: 0 22px 20px; font-size: 0.92rem; }

/* ---------- CTA ---------- */
.cta-band {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 70px 40px;
  text-align: center;
  background: linear-gradient(135deg, #0e2a3a 0%, #1a1440 55%, #2b1560 100%);
  border: 1px solid rgba(139,92,246,0.35);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 20%, rgba(34,211,238,0.22), transparent 45%),
                    radial-gradient(circle at 25% 85%, rgba(139,92,246,0.28), transparent 45%);
}
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 900; position: relative; }
.cta-band p { color: var(--text-muted); position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 70px 0 0; background: rgba(7,11,20,0.7); }
.footer-title { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: #fff; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: all .2s ease; }
.footer-links a:hover { color: var(--cyan); padding-inline-start: 4px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 12px; }
.footer-contact li i { color: var(--cyan); margin-top: 5px; }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 50px; padding: 22px 0; color: var(--text-dim); font-size: 0.82rem; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--cyan); }

/* ---------- Pages (legal) ---------- */
.page-hero { padding: 160px 0 60px; text-align: center; }
.page-hero .ph-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 100px; background: var(--grad-soft); border: 1px solid var(--border); color: var(--cyan); font-size: 0.85rem; font-weight: 700; margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900; }
.page-hero p { color: var(--text-muted); }
.page-updated { display: inline-block; margin-top: 12px; color: var(--text-dim); font-size: 0.82rem; }
.page-updated i { color: var(--cyan); }

.legal-card { background: rgba(255,255,255,0.025); border: 1px solid var(--border); border-radius: var(--radius); padding: 50px; }
.legal-card h2 { font-size: 1.35rem; font-weight: 800; color: #fff; margin: 42px 0 14px; display: flex; align-items: center; gap: 12px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card h2 .num { width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px; background: var(--grad-soft); color: var(--cyan); display: grid; place-items: center; font-size: 0.95rem; font-family: var(--font-head); }
.legal-card p, .legal-card li { color: var(--text-muted); font-size: 0.95rem; }
.legal-card ul { padding-inline-start: 22px; display: grid; gap: 8px; }
.legal-card strong { color: #e2e8f0; font-weight: 700; }
.legal-card .note { background: rgba(251,191,36,0.08); border: 1px solid rgba(251,191,36,0.3); border-radius: var(--radius-sm); padding: 16px 20px; color: #fcd34d; font-size: 0.9rem; margin: 20px 0; }
.legal-card .note i { margin-inline-end: 6px; }

/* ---------- DMCA form ---------- */
.dmca-form { background: rgba(255,255,255,0.025); border: 1px solid var(--border); border-radius: var(--radius); padding: 44px; }
.form-section-title { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 1.05rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.form-section-title i { color: var(--cyan); }
.form-divider { border: 0; border-top: 1px dashed var(--border-strong); margin: 34px 0; }

.form-control, .form-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: #fff !important;
  padding: 12px 16px;
  font-size: 0.93rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control::placeholder { color: var(--text-dim); }
.form-control:focus, .form-select:focus {
  background: rgba(255,255,255,0.06);
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(34,211,238,0.12);
}
.form-select option { background: var(--bg-card); color: #fff; }
.form-label { color: var(--text-muted); font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; }
.form-label .req { color: var(--danger); }
.form-hint { color: var(--text-dim); font-size: 0.78rem; margin-top: 6px; }
.form-check-input { background-color: rgba(255,255,255,0.06); border: 1px solid var(--border-strong); }
.form-check-input:checked { background-color: var(--cyan); border-color: var(--cyan); }
.form-check-input:focus { box-shadow: 0 0 0 4px rgba(34,211,238,0.12); }
.form-check-label { color: var(--text-muted); font-size: 0.9rem; }

.invalid-feedback { color: var(--danger); font-size: 0.8rem; }
.is-invalid { border-color: var(--danger) !important; box-shadow: 0 0 0 4px rgba(248,113,113,0.12) !important; }

.form-alert { border-radius: var(--radius-sm); padding: 16px 18px; font-size: 0.9rem; margin-bottom: 22px; }
.form-alert.info { background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.3); color: #67e8f9; }
.form-alert.warn { background: rgba(251,191,36,0.08); border: 1px solid rgba(251,191,36,0.3); color: #fcd34d; }
.form-alert.success { background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.3); color: #6ee7b7; }

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  bottom: 28px; inset-inline-start: 28px;
  z-index: 1050;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad);
  color: #07101f;
  display: grid; place-items: center;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 12px 30px -10px rgba(139,92,246,0.6);
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: all 0.3s ease;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { color: #07101f; transform: translateY(-4px); }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="left"].revealed, [data-reveal="right"].revealed { transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hero { padding: 140px 0 60px; }
  .hero-visual { margin-top: 50px; }
  .float-pill.fp-1 { right: 0; }
  .float-pill.fp-2 { left: 0; }
  .section-pad { padding: 70px 0; }
  .legal-card, .dmca-form { padding: 30px 22px; }
  .navbar-collapse { background: rgba(7,11,20,0.97); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px; margin-top: 12px; }
}

@media (max-width: 575px) {
  .hero-stats { gap: 18px; }
  .guarantee-band { padding: 34px 24px; }
  .cta-band { padding: 50px 24px; }
  .price-card { padding: 32px 22px; }
  .back-top { bottom: 18px; inset-inline-start: 18px; }
}

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