/* ═══════════════════════════════════════════════════════════════
   GSO HOMEPAGE — ENTERPRISE-GRADE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --bg: #08090b;
  --bg-elevated: #0e0f12;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --surface-glass: rgba(14,15,18,0.75);
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --border-subtle: rgba(255,255,255,0.03);

  --gold: #F5C242;
  --gold-soft: rgba(245,194,66,0.12);
  --gold-glow: rgba(245,194,66,0.25);
  --green: #5BCE6B;
  --green-soft: rgba(91,206,107,0.12);
  --cyan: #0EC5E8;
  --cyan-soft: rgba(14,197,232,0.12);

  --text: #f0f0f0;
  --text-body: #989ca8;
  --text-muted: #5f6370;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --section-space: 140px;
  --section-space-mobile: 80px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --nav-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── NOISE TEXTURE OVERLAY ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.15); }

::selection { background: rgba(245,194,66,0.25); color: var(--text); }

/* ── CONTAINER ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  height: var(--nav-height);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: center;
}
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--surface-glass);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.navbar.scrolled::before { opacity: 1; }
.navbar.scrolled { background: transparent; }

.navbar__container {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s ease;
  letter-spacing: 0.2px;
}
.navbar__links a:hover { color: var(--text); }

.navbar__cta { flex-shrink: 0; }

.navbar__toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 12px;
  background: transparent;
  border: 1px solid var(--border);
  transition: background 0.4s cubic-bezier(0.4,0,0.2,1), border-color 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
}
.navbar__toggle:hover {
  background: var(--surface);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(245,194,66,0.1);
}
.navbar__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68,-0.6,0.32,1.6);
  transform-origin: center;
}
.navbar__toggle span:nth-child(1) { width: 20px; }
.navbar__toggle span:nth-child(2) { width: 14px; }
.navbar__toggle span:nth-child(3) { width: 18px; }
.navbar__toggle:hover span { width: 20px; }

.navbar__toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  transition-delay: 0s;
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
  transition-delay: 0.05s;
}
.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  transition-delay: 0s;
}
.navbar__toggle.active {
  border-color: var(--gold);
  background: rgba(245,194,66,0.08);
}

/* ── SECTION LABEL ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
.section-label--muted { color: var(--text-muted); }
.section-label--muted::before { background: var(--text-muted); }

/* ── SECTION TITLE ── */
.section-title {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

/* ── SECTION SUB ── */
.section-sub {
  font-size: 16px;
  color: var(--text-body);
  max-width: 540px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
a.btn,
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

a.btn--primary {
  background: linear-gradient(135deg, var(--gold), #E0A800);
  color: #08090b;
  box-shadow: 0 4px 20px rgba(245,194,66,0.2);
}
body a.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,194,66,0.3);
  color: #08090b;
}

a.btn--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
body a.btn--ghost:hover {
  border-color: var(--border-hover);
  background: var(--surface);
  color: var(--text);
}

.btn--lg { padding: 16px 40px; font-size: 15px; font-weight: 700; }
.btn--sm { padding: 9px 22px; font-size: 12px; }

/* ═══════════════════════════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 28px;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, black 35%, transparent 72%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}
.hero__glow--gold {
  width: 600px; height: 600px;
  background: var(--gold);
  top: 5%; left: 15%;
  opacity: 0.12;
}
.hero__glow--green {
  width: 500px; height: 500px;
  background: var(--green);
  bottom: 5%; right: 10%;
  opacity: 0.08;
}

.hero__container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(38px, 6.5vw, 64px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 19px;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: -0.2px;
  margin-bottom: 12px;
}

.hero__desc {
  font-size: 16px;
  color: var(--text-body);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__checks {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 44px;
}
.hero__check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.hero__ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   2. PROBLEM
   ═══════════════════════════════════════════════════════════════ */
.problem {
  padding: var(--section-space) 0;
  text-align: center;
}
.problem .section-title { max-width: 520px; margin-left: auto; margin-right: auto; }
.problem .section-sub { margin: 0 auto; }

.problem__tools {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}
.problem__tools span {
  padding: 12px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.3s ease;
}
.problem__tools span:hover { border-color: var(--border-hover); }

.problem__labels {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}
.problem__labels span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
}

.problem__pain {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.problem__pain span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
}

.problem__footer {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 28px;
}

/* ═══════════════════════════════════════════════════════════════
   3. SOLUTION
   ═══════════════════════════════════════════════════════════════ */
.solution {
  padding: var(--section-space) 0;
  text-align: center;
}
.solution .section-sub { margin: 0 auto; }

.solution__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
  margin-bottom: 0;
}

.solution__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid rgba(91,206,107,0.12);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s ease;
}
.solution__feature:hover {
  border-color: rgba(91,206,107,0.3);
  background: rgba(91,206,107,0.05);
}
.solution__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-soft);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .solution__features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .solution__features { grid-template-columns: 1fr; }
}

.solution__footer {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 36px;
}

/* ═══════════════════════════════════════════════════════════════
   4. HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */
.workflow {
  padding: var(--section-space) 0;
  text-align: center;
}

.flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  overflow-x: auto;
  padding: 16px 8px 24px;
  scrollbar-width: none;
}
.flow::-webkit-scrollbar { display: none; }

.flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 96px;
  flex-shrink: 0;
}
.flow__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.flow__step:hover .flow__icon {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(245,194,66,0.15);
  transform: translateY(-2px);
}

.flow__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.2px;
}
.flow__desc {
  font-size: 11px;
  color: var(--text-muted);
  max-width: 88px;
  text-align: center;
  line-height: 1.4;
}
.flow__arrow {
  display: flex;
  align-items: center;
  padding-top: 14px;
  color: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   5. CLIENT WORKSPACE
   ═══════════════════════════════════════════════════════════════ */
.workspace {
  padding: var(--section-space) 0;
  text-align: center;
}
.workspace .section-sub { margin: 0 auto; }

.workspace__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  text-align: left;
}

.workspace__card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.workspace__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.workspace__card:hover::before { opacity: 1; }
.workspace__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.workspace__card-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  transition: background 0.3s ease;
}
.workspace__card:hover .workspace__card-icon {
  background: rgba(245,194,66,0.18);
}

.workspace__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.workspace__card-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   6. SECURITY
   ═══════════════════════════════════════════════════════════════ */
.security {
  padding: var(--section-space-mobile) 0;
}
.security__inner {
  padding: 52px 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.security__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.security__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.security__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}
.security__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-bottom: 28px;
}
.security__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.security__note {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   7. PROCESS
   ═══════════════════════════════════════════════════════════════ */
.process {
  padding: var(--section-space) 0;
  text-align: center;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  text-align: left;
}

.process__step {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.process__step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.process__step:hover::before { opacity: 1; }
.process__step:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.process__num {
  font-size: 32px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  margin-bottom: 10px;
  line-height: 1;
}
.process__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.process__desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   8. CTA
   ═══════════════════════════════════════════════════════════════ */
.cta {
  padding: var(--section-space) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(245,194,66,0.06), transparent 70%);
  pointer-events: none;
}
.cta__title {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  position: relative;
}
.cta__desc {
  font-size: 17px;
  color: var(--text-body);
  margin-bottom: 40px;
  position: relative;
}

/* ═══════════════════════════════════════════════════════════════
   9. BLOG
   ═══════════════════════════════════════════════════════════════ */
.blog {
  padding: var(--section-space) 0;
  text-align: center;
}
.blog .section-sub { margin: 0 auto; }

.blog__carousel {
  position: relative;
  max-width: 800px;
  margin: 52px auto 0;
  overflow: hidden;
}
.blog__carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.blog__slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 0;
}
.blog__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.blog__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.blog__card-img {
  height: 180px;
  background: linear-gradient(135deg, #13151a, #1a1c24);
}
.blog__card-body { padding: 24px; text-align: center; }
.blog__carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.blog__carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--border-hover);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.blog__carousel-dots button.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(97, 206, 112, 0.5);
}
.blog__carousel-dots button:hover {
  border-color: var(--text);
}
.blog__card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.blog__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 16px;
}
.blog__card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  transition: color 0.2s ease;
}
.blog__card-link:hover { color: #ffe066; }

/* ═══════════════════════════════════════════════════════════════
   10. FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq {
  padding: var(--section-space) 0;
}
.faq__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}
.faq__sidebar { position: sticky; top: calc(var(--nav-height) + 40px); }
.faq__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.faq__desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

.faq__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq__item:hover { border-color: var(--border-hover); }
.faq__item.active { border-color: rgba(245,194,66,0.15); }

.faq .faq__item button.faq__trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 22px;
  text-align: left;
  white-space: normal;
  gap: 16px;
  color: var(--text);
  background: none;
  border: none;
  border-radius: 0;
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
  line-height: inherit;
  box-sizing: border-box;
}
.faq .faq__item button.faq__trigger:hover {
  background: none;
  color: var(--text);
}
.faq .faq__item button.faq__trigger .faq__q {
  flex: 1 1 0% !important;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  min-width: 0 !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.faq .faq__item button.faq__trigger .faq__icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  background: none;
}
.faq .faq__item.active button.faq__trigger .faq__icon {
  background: var(--gold-soft);
  border-color: rgba(245,194,66,0.25);
  color: var(--gold);
  transform: rotate(180deg);
}

.faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.faq__answer {
  padding: 0 22px 18px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq__answer p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   11. FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.footer__logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
}
.footer__tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}
.footer__sep { color: var(--text-muted); opacity: 0.4; }
.footer__social {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  transition: color 0.2s ease;
  line-height: 0;
}
.footer__social:hover { color: var(--text); }
.footer__contact {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer__contact:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  :root { --section-space: 100px; }
  .workspace__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .blog__carousel { max-width: 100%; }
  .blog__carousel-dots { margin-top: 24px; }
  .faq__layout { grid-template-columns: 1fr; gap: 40px; }
  .faq__sidebar { position: static; text-align: center; }
  .flow { justify-content: flex-start; }

  .navbar__cta { display: none; }
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .navbar__links.open a {
    padding: 14px 28px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 14px;
  }
  .navbar__links.open a:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  :root { --section-space: 80px; --section-space-mobile: 60px; }
  .hero { min-height: auto; padding: 80px 24px 60px; }
  .hero__checks { flex-direction: column; align-items: center; gap: 12px; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__glow--gold { width: 400px; height: 400px; }
  .hero__glow--green { width: 300px; height: 300px; }

  .workspace__grid,
  .process__grid { grid-template-columns: 1fr; }
  .blog__carousel-dots { margin-top: 20px; }
  .blog__carousel-dots button { width: 8px; height: 8px; }

  .security__inner { padding: 36px 24px; }
  .security__list { gap: 10px 20px; }

  .flow { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .faq__title { font-size: 22px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 32px; letter-spacing: -1px; }
  .section-title { font-size: 26px; }
  .cta__title { font-size: 26px; }
  .container { padding: 0 20px; }
  .security__inner { padding: 28px 18px; }
}
/* ── LEGAL PAGE CONTENT ── */
.legal-page {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
  min-height: 50vh;
}
.legal-page h1 {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
  margin-bottom: 10px;
}
.legal-page .legal-date {
  font-size: 12px;
  color: #5f6370;
  margin-bottom: 40px;
}
.legal-page p {
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 16px;
}
.legal-page h2 {
  font-size: 22px;
  font-weight: 800;
  color: #FAC643;
  margin-top: 40px;
  margin-bottom: 15px;
}
.legal-page ul,
.legal-page ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.legal-page li {
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-page a {
  color: #61CE70;
  text-decoration: underline;
  font-weight: 600;
}

/* ── LEGAL PAGES NAVBAR FIX ── */
body.legal-page {
  padding-top: var(--nav-height);
}
body.legal-page .navbar::before {
  opacity: 1 !important;
  background: #08090b !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

/* ── ONBOARDING PAGE HERO MESH BG ── */
body.page-id-2133 .elementor-element-1bdfd3c7 {
  position: relative;
  overflow: hidden;
}
body.page-id-2133 .elementor-element-1bdfd3c7::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, black 35%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, black 35%, transparent 72%);
}
body.page-id-2133 .elementor-element-1bdfd3c7::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  background: var(--gold);
  top: 5%;
  left: 15%;
  opacity: 0.12;
  z-index: 0;
  box-shadow: 500px 200px 500px 100px rgba(97,206,112,0.08);
}
body.page-id-2133 .elementor-element-1bdfd3c7 > * {
  position: relative;
  z-index: 1;
}
