/* ===== RESET / BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #041018;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.7;
}

/* Mesh grid */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 162, 231, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 162, 231, 0.035) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
  z-index: 0;
}

/* Ambient glows */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 25%, rgba(22, 162, 231, 0.11) 0%, transparent 42%),
    radial-gradient(circle at 85% 70%, rgba(30, 200, 255, 0.08) 0%, transparent 38%);
  pointer-events: none;
  z-index: 0;
}

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; }
ul { list-style: none; }

/* ===================================================
   NAV
=================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(4, 16, 24, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}
.nav-logo span { color: #1ec8ff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s ease;
}
.nav-links a:hover { color: #ffffff; }

.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  border-radius: 8px;
  color: #041018;
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,200,255,0.35);
  color: #041018;
}

/* ===================================================
   SHARED BUTTONS
=================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 60%, #0e8bc7 100%);
  border: none;
  border-radius: 10px;
  color: #041018;
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(30,200,255,0.38);
  color: #041018;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  background: transparent;
  border: 1px solid rgba(30,200,255,0.25);
  border-radius: 10px;
  color: #1ec8ff;
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  background: rgba(30,200,255,0.10);
  border-color: #1ec8ff;
  transform: translateY(-2px);
  color: #4fd6ff;
}

/* ===================================================
   HERO
=================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 60px 100px;
  background:
    radial-gradient(circle at 20% 40%, rgba(22,162,231,0.13) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(30,200,255,0.09) 0%, transparent 45%),
    #041018;
  overflow: hidden;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,162,231,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,162,231,0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(30,200,255,0.12);
  top: -120px; left: -120px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: rgba(22,162,231,0.10);
  bottom: -100px; right: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1ec8ff;
  background: rgba(30,200,255,0.10);
  border: 1px solid rgba(30,200,255,0.25);
  border-radius: 2rem;
  padding: 0.38rem 1rem;
  margin-bottom: 1.8rem;
}

.hero-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1.4rem;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 55%, #4fd6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.08rem;
  text-align: center;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto 2.4rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== HERO STEPS BAR ===== */
.hero-steps-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 70px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.hsb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  gap: 6px;
  flex: 1;
  align-self: stretch;
  cursor: pointer;
  transition: background 0.3s ease;
}
.hsb-item:hover { background: rgba(30,200,255,0.07); }

.hsb-num {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #1ec8ff;
  line-height: 1;
}

.hsb-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
  letter-spacing: 0.3px;
}

.hsb-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ===================================================
   STICKY PROGRESS NAV
=================================================== */
.sticky-progress {
  position: sticky;
  top: 72px;
  z-index: 90;
  background: rgba(4, 16, 24, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0;
}

.sp-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sp-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sp-step span {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(30,200,255,0.5);
}

.sp-step:hover {
  color: #ffffff;
  background: rgba(30,200,255,0.06);
}

.sp-step.active {
  color: #1ec8ff;
  border-bottom-color: #1ec8ff;
}
.sp-step.active span { color: #1ec8ff; }

.sp-progress-line {
  height: 2px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.sp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1ec8ff, #16A2E7);
  width: 0%;
  transition: width 0.4s ease;
}

/* ===================================================
   GUIDE STEP SECTIONS
=================================================== */
.guide-step {
  padding: 120px 60px;
  background: #041018;
  position: relative;
  /* FIX: removed overflow:hidden — was clipping floating mockups */
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
}

.guide-step--alt {
  background:
    radial-gradient(circle at top center, #0b1430 0%, #041018 60%, #000000 100%);
}

/* Subtle step number watermark — clipped via clip-path only, not overflow */
.guide-step::before {
  content: attr(data-step);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Fjalla One', sans-serif;
  font-size: 18rem;
  font-weight: 800;
  color: rgba(30,200,255,0.022);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  clip-path: inset(0);
  /* FIX: use clip-path to contain watermark instead of parent overflow:hidden */
  max-width: 50%;
  overflow: hidden;
}

.guide-step-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.gs-visual {
  width: 100%;
  min-width: 0;
  /* FIX: removed overflow:hidden — was clipping the floating mockup shell */
  overflow: visible;
  box-sizing: border-box;
}

.gs-content {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.guide-step-inner--flip {
  direction: rtl;
}
.guide-step-inner--flip > * {
  direction: ltr;
}

/* ===== STEP BADGE ===== */
.gs-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.gs-step-num {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  color: #041018;
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 1px;
}

.gs-step-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(30,200,255,0.7);
}

/* ===== STEP TITLE ===== */
.gs-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1.1rem;
}

.gs-title span {
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 60%, #4fd6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gs-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ===== SUB FEATURES (Step 1) ===== */
.gs-sub-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gs-sub-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(30,200,255,0.6);
  margin-bottom: 4px;
}

.gs-feature-card {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.gs-feature-card:hover {
  border-color: rgba(30,200,255,0.2);
  background: rgba(30,200,255,0.04);
}

.gs-fc-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(22,162,231,0.15);
  border: 1px solid rgba(30,200,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1ec8ff;
  font-size: 1rem;
}

.gs-fc-body h4 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.gs-fc-body p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Mic modes */
.gs-mic-modes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.gs-mic-mode {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.gs-mic-mode strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

.gs-mic-mode span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.gs-mic-dot {
  width: 12px; height: 12px;
  min-width: 12px;
  border-radius: 50%;
  margin-top: 4px;
}

.gs-mic-off .gs-mic-dot { background: #1ec8ff; box-shadow: 0 0 8px rgba(30,200,255,0.5); }
.gs-mic-green .gs-mic-dot { background: #28c840; box-shadow: 0 0 8px rgba(40,200,64,0.5); }
.gs-mic-yellow .gs-mic-dot { background: #febc2e; box-shadow: 0 0 8px rgba(254,188,46,0.5); }

/* ===== SUBSTEP BLOCK ===== */
.gs-substep-block {
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(30,200,255,0.06);
  border: 1px solid rgba(30,200,255,0.18);
  border-radius: 14px;
}

.gs-substep-label {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1ec8ff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gs-substep-block p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ===== INFO CARDS ===== */
.gs-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.gs-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px 20px;
  transition: all 0.3s ease;
}

.gs-info-card:hover {
  border-color: rgba(30,200,255,0.2);
  background: rgba(30,200,255,0.04);
}

.gs-ic-icon {
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: rgba(22,162,231,0.15);
  border: 1px solid rgba(30,200,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1ec8ff;
  font-size: 0.95rem;
}

.gs-info-card h4 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.gs-info-card p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ===== TOGGLE EXPLAINER ===== */
.gs-toggle-explainer {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
}

.gs-te-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1ec8ff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gs-te-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gs-te-pill {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.gs-te-pill.active {
  background: rgba(30,200,255,0.08);
  border-color: rgba(30,200,255,0.25);
}

.gs-te-pill i { color: #1ec8ff; margin-top: 3px; font-size: 0.9rem; }

.gs-te-pill strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3px;
}

.gs-te-pill span {
  display: block;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
}

.gs-te-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== HIGHLIGHT BOX ===== */
.gs-highlight-box {
  background: rgba(30,200,255,0.07);
  border: 1px solid rgba(30,200,255,0.2);
  border-left: 3px solid #1ec8ff;
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
}

.gs-highlight-box::after {
  content: "\f10e"; /* fa-quote-right unicode */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(30,200,255,0.5);
  font-size: 1.2rem;
  line-height: 1;
}

.gs-hb-icon { color: rgba(30,200,255,0.5); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }

.gs-highlight-box p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-style: italic;
  padding-right: 36px;
}

/* ===== CHECKLIST ===== */
.gs-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gs-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

.gs-check-icon {
  width: 22px; height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(30,200,255,0.15);
  border: 1px solid rgba(30,200,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #1ec8ff;
}

/* ===== ACTION CARDS (Step 5) ===== */
.gs-action-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gs-action-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.gs-action-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gs-action-generate::before {
  background: linear-gradient(90deg, transparent, #1ec8ff, transparent);
}
.gs-action-copy::before {
  background: linear-gradient(90deg, transparent, #16A2E7, transparent);
}
.gs-action-logout::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.gs-action-card:hover { border-color: rgba(30,200,255,0.2); background: rgba(30,200,255,0.04); }
.gs-action-card:hover::before { opacity: 1; }

.gs-ac-number {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  color: #041018;
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  padding: 3px 8px;
  border-radius: 5px;
  flex-shrink: 0;
  align-self: center;
  margin-top: 0;
}

.gs-ac-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(22,162,231,0.15);
  border: 1px solid rgba(30,200,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1ec8ff;
  font-size: 1rem;
  flex-shrink: 0;
  align-self: center;
}

.gs-ac-body {
  flex: 1;
  min-width: 0;
}

.gs-ac-body h4 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.gs-ac-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ===================================================
   MOCKUP SHELL
=================================================== */
.gs-mockup-shell {
  border-radius: 20px;
  /* FIX: overflow must stay hidden on the shell itself for rounded corners,
     but the parent .gs-visual is now overflow:visible so float is unclipped */
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(30,200,255,0.08);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.gs-mockup-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gs-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.gs-dot.r { background: #ff5f57; }
.gs-dot.y { background: #febc2e; }
.gs-dot.g { background: #28c840; }

.gs-mockup-bar span {
  margin-left: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.gs-mockup-body {
  padding: 28px;
  background: #060d1f;
  min-height: 380px;
}

/* ===================================================
   WIDGET MOCKUP (Step 1)
=================================================== */
.gm-widget-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gm-wp-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.gm-widget {
  width: 260px;
  max-width: 100%;
  border-radius: 16px;
  background: rgba(4, 16, 24, 0.95);
  border: 1px solid rgba(30,200,255,0.2);
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    0 0 30px rgba(30,200,255,0.08);
  box-sizing: border-box;
}

.gm-widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.gm-logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1ec8ff;
  box-shadow: 0 0 8px rgba(30,200,255,0.6);
}

.gm-widget-controls {
  margin-left: auto;
  display: flex;
  gap: 6px;
}

.gm-ctrl-btn {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}
.gm-ctrl-btn:hover { background: rgba(255,255,255,0.12); }

.gm-widget-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gm-mic-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.gm-mic-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(30,200,255,0.15);
  border: 2px solid rgba(30,200,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1ec8ff;
  font-size: 1.3rem;
  position: relative;
  cursor: pointer;
}

.gm-mic-rings { position: absolute; inset: -12px; }
.gm-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(30,200,255,0.2);
  animation: ringPulse 2s ease-out infinite;
}
.gm-ring.r2 { animation-delay: 0.6s; }
.gm-ring.r3 { animation-delay: 1.2s; }

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

.gm-mic-status {
  font-size: 0.72rem;
  color: #28c840;
  font-weight: 500;
}

.gm-new-report-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px;
  background: rgba(30,200,255,0.12);
  border: 1px solid rgba(30,200,255,0.25);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1ec8ff;
  cursor: pointer;
}

.gm-ai-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.gm-toggle {
  width: 38px; height: 20px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gm-toggle.on {
  background: rgba(30,200,255,0.3);
  border-color: rgba(30,200,255,0.5);
}

.gm-toggle-knob {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  position: absolute;
  top: 2px; left: 2px;
  transition: all 0.3s ease;
}
.gm-toggle.on .gm-toggle-knob {
  left: 20px;
  background: #1ec8ff;
  box-shadow: 0 0 6px rgba(30,200,255,0.6);
}

.gm-arrow-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.gm-arrow-hint i { color: rgba(30,200,255,0.4); }

/* Mic mode grid */
.gm-mode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.gm-mode-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  text-align: center;
}

.gm-mode-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(22,162,231,0.12);
  border: 1px solid rgba(30,200,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.gm-mode-off .gm-mode-icon { color: rgba(255,255,255,0.3); }
.gm-mode-internal .gm-mode-icon { color: #28c840; border-color: rgba(40,200,64,0.3); background: rgba(40,200,64,0.1); }
.gm-mode-external .gm-mode-icon { color: #febc2e; border-color: rgba(254,188,46,0.3); background: rgba(254,188,46,0.1); }

.gm-mode-card > span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

.gm-mode-badge {
  position: absolute;
  top: -8px;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}
.gm-mode-badge.green {
  background: rgba(40,200,64,0.2);
  color: #28c840;
  border: 1px solid rgba(40,200,64,0.3);
}
.gm-mode-badge.yellow {
  background: rgba(254,188,46,0.2);
  color: #febc2e;
  border: 1px solid rgba(254,188,46,0.3);
}

/* ===================================================
   CONFIG PANEL MOCKUP (Step 2)
=================================================== */
.gm-config-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

.gm-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(30,200,255,0.6);
  margin-bottom: 2px;
}

.gm-select-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(30,200,255,0.2);
  border-radius: 10px;
  font-size: 0.82rem;
  color: #ffffff;
  cursor: pointer;
}
.gm-select-box i { color: rgba(255,255,255,0.4); font-size: 0.7rem; }

.gm-select-options {
  background: rgba(6, 13, 31, 0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-top: -4px;
}

.gm-option {
  padding: 9px 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gm-option:hover { background: rgba(30,200,255,0.07); color: #ffffff; }
.gm-option.active { color: #1ec8ff; background: rgba(30,200,255,0.08); }
.gm-option i { font-size: 0.65rem; }

.gm-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}

.gm-checkbox {
  width: 18px; height: 18px;
  min-width: 18px;
  border-radius: 5px;
  border: 1px solid rgba(30,200,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #1ec8ff;
  margin-top: 2px;
  background: rgba(255,255,255,0.03);
}
.gm-checkbox.checked {
  background: rgba(30,200,255,0.2);
  border-color: rgba(30,200,255,0.5);
}

.gm-checkbox-label span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.gm-checkbox-label small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.gm-proceed-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(30,200,255,0.2), rgba(22,162,231,0.15));
  border: 1px solid rgba(30,200,255,0.3);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1ec8ff;
  cursor: pointer;
  margin-top: 6px;
  font-family: 'Fjalla One', sans-serif;
}

/* ===================================================
   TRANSCRIPT PANEL (Step 3)
=================================================== */
.gm-transcript-panel {
  background: rgba(6, 13, 31, 0.8);
  border: 1px solid rgba(30,200,255,0.15);
  border-radius: 16px;
  overflow: hidden;
}

.gm-transcript-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.gm-transcript-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.gm-transcript-title i { color: #1ec8ff; }

.gm-recording-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ff5f57;
  background: rgba(255,95,87,0.12);
  border: 1px solid rgba(255,95,87,0.25);
  padding: 3px 8px;
  border-radius: 10px;
}

.gm-rec-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff5f57;
  animation: recPulse 1s ease-in-out infinite;
}

@keyframes recPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.gm-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 16px;
  background: rgba(30,200,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  flex-wrap: nowrap;
}

.gm-wave-bar {
  width: 3px;
  background: linear-gradient(to top, #1ec8ff, #16A2E7);
  border-radius: 2px;
  opacity: 0.7;
  animation: waveDance 1.2s ease-in-out infinite alternate;
}

.gm-wave-bar:nth-child(2)  { animation-delay: 0.1s; }
.gm-wave-bar:nth-child(3)  { animation-delay: 0.2s; }
.gm-wave-bar:nth-child(4)  { animation-delay: 0.15s; }
.gm-wave-bar:nth-child(5)  { animation-delay: 0.3s; }
.gm-wave-bar:nth-child(6)  { animation-delay: 0.05s; }
.gm-wave-bar:nth-child(7)  { animation-delay: 0.25s; }
.gm-wave-bar:nth-child(8)  { animation-delay: 0.1s; }
.gm-wave-bar:nth-child(9)  { animation-delay: 0.35s; }
.gm-wave-bar:nth-child(10) { animation-delay: 0.2s; }
.gm-wave-bar:nth-child(11) { animation-delay: 0.08s; }
.gm-wave-bar:nth-child(12) { animation-delay: 0.3s; }
.gm-wave-bar:nth-child(13) { animation-delay: 0.15s; }
.gm-wave-bar:nth-child(14) { animation-delay: 0.25s; }
.gm-wave-bar:nth-child(15) { animation-delay: 0.05s; }

@keyframes waveDance {
  from { transform: scaleY(0.3); opacity: 0.4; }
  to   { transform: scaleY(1);   opacity: 0.9; }
}

.gm-transcript-text {
  padding: 16px;
  min-height: 90px;
}

.gm-transcript-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
}

.gm-cursor {
  color: #1ec8ff;
  animation: blink 1s infinite;
  font-weight: 700;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.gm-transcript-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.gm-live-indicator {
  margin-left: auto;
  color: #1ec8ff;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
.gm-live-indicator i {
  font-size: 0.5rem;
  animation: recPulse 1s ease-in-out infinite;
}

/* ===================================================
   EDITOR PANEL (Step 4)
=================================================== */
.gm-editor-panel {
  border: 1px solid rgba(30,200,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(6, 13, 31, 0.8);
}

.gm-editor-toolbar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.gm-tb-btn {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}
.gm-tb-btn:hover { background: rgba(255,255,255,0.1); color: #ffffff; }
.gm-tb-btn.active { background: rgba(30,200,255,0.2); color: #1ec8ff; }

.gm-tb-divider {
  width: 1px; height: 20px;
  background: rgba(255,255,255,0.08);
  margin: 0 4px;
}

.gm-editor-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gm-editor-section {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 14px;
}

.gm-es-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(30,200,255,0.5);
  margin-bottom: 8px;
}

.gm-es-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.gm-blink-cursor {
  color: #1ec8ff;
  animation: blink 1s infinite;
  font-weight: 700;
}

.gm-section-empty { border-style: dashed; border-color: rgba(255,255,255,0.04); }

.gm-es-placeholder {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

.gm-editor-statusbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 9px 16px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}

.gm-voice-edit {
  margin-left: auto;
  color: #1ec8ff;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

/* ===================================================
   ACTIONS PANEL (Step 5)
=================================================== */
.gm-actions-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gm-ai-thinking {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(30,200,255,0.05);
  border: 1px solid rgba(30,200,255,0.15);
  border-radius: 16px;
}

.gm-ai-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(30,200,255,0.15);
  border: 2px solid rgba(30,200,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1ec8ff;
  font-size: 1.4rem;
  position: relative;
}

.gm-ai-rings { position: absolute; inset: -14px; }
.gm-ai-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(30,200,255,0.2);
  animation: ringPulse 2s ease-out infinite;
}
.gm-ai-ring.ar2 { animation-delay: 1s; }

.gm-ai-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.gm-ai-progress {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.gm-ai-bar {
  height: 100%;
  background: linear-gradient(90deg, #1ec8ff, #16A2E7);
  border-radius: 2px;
  animation: aiLoading 2s ease-in-out infinite;
}

@keyframes aiLoading {
  0% { width: 0%; }
  70% { width: 85%; }
  100% { width: 100%; }
}

/* Report preview */
.gm-report-preview {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}

.gm-rp-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.gm-rp-header i { color: #1ec8ff; }

.gm-rp-badge {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 7px;
  background: rgba(30,200,255,0.2);
  border: 1px solid rgba(30,200,255,0.35);
  border-radius: 6px;
  color: #1ec8ff;
  letter-spacing: 1px;
}

.gm-rp-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gm-rp-line {
  height: 7px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  animation: shimmerLine 2s ease-in-out infinite;
}
.gm-rp-line.full { width: 100%; }
.gm-rp-line.w80 { width: 80%; }
.gm-rp-line.w70 { width: 70%; }
.gm-rp-line.w60 { width: 60%; }

@keyframes shimmerLine {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Action buttons */
.gm-action-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gm-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Fjalla One', sans-serif;
}

.gm-btn-generate {
  background: linear-gradient(135deg, rgba(30,200,255,0.25), rgba(22,162,231,0.18));
  border: 1px solid rgba(30,200,255,0.35);
  color: #1ec8ff;
}
.gm-btn-generate:hover { background: rgba(30,200,255,0.3); }

.gm-btn-copy {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
}
.gm-btn-copy:hover { background: rgba(255,255,255,0.1); }

.gm-btn-logout {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
}

/* ===================================================
   QUICK REFERENCE SECTION
=================================================== */
.quick-ref-section {
  padding: 120px 60px;
  background: radial-gradient(circle at center, #0b1430 0%, #041018 60%);
  text-align: center;
}

.qr-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label-cyan {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1ec8ff;
  background: rgba(30,200,255,0.10);
  border: 1px solid rgba(30,200,255,0.25);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  margin-bottom: 28px;
}

.qr-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.qr-title span {
  background: linear-gradient(135deg, #1ec8ff 0%, #16A2E7 60%, #4fd6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qr-sub {
  text-align: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 60px;
}

/* Timeline */
.qr-timeline {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
}

.qr-line {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,200,255,0.3), rgba(30,200,255,0.3), rgba(30,200,255,0.3), rgba(30,200,255,0.3), transparent);
  z-index: 0;
}

.qr-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.qr-step-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #041018;
  border: 2px solid rgba(30,200,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qr-step-dot span {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #1ec8ff;
}

.qr-step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  /* FIX: stretch card to fill remaining height so all cards are equal */
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.qr-step-card:hover {
  border-color: rgba(30,200,255,0.2);
  background: rgba(30,200,255,0.04);
  transform: translateY(-5px);
}

.qr-sc-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: rgba(22,162,231,0.15);
  border: 1px solid rgba(30,200,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1ec8ff;
  font-size: 0.9rem;
  margin: 0 auto 12px;
  flex-shrink: 0;
}

.qr-sc-text {
  min-width: 0;
  flex: 1;
}

.qr-step-card h4 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.qr-step-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
}

/* ===================================================
   CTA SECTION
=================================================== */
.cta-section {
  padding: 120px 60px;
  background: #000000;
}

.cta-box {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 72px 60px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(30,200,255,0.25);
  border-radius: 28px;
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1ec8ff, #16A2E7, transparent);
}

.cta-orb {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(30,200,255,0.08);
  filter: blur(80px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-box h2 {
  position: relative;
  font-family: 'Fjalla One', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.cta-box h2 span {
  background: linear-gradient(135deg, #1ec8ff, #16A2E7, #4fd6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-box p {
  position: relative;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================================================
   SCROLLBAR
=================================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #041018; }
::-webkit-scrollbar-thumb { background: rgba(30,200,255,0.30); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(30,200,255,0.55); }

/* ===================================================
   REVEAL ANIMATION INITIAL STATES
=================================================== */
.gs-reveal-left,
.gs-reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.gs-reveal-left  { transform: translateX(-50px); }
.gs-reveal-right { transform: translateX(50px); }

.gs-reveal-left.is-visible,
.gs-reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===================================================
   RESPONSIVE — Full overhaul
=================================================== */

/* ── Prevent ALL horizontal overflow globally ── */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  max-width: 100%;
}

/* ── 24" / Large desktop ── */
@media (min-width: 1600px) {
  .guide-step-inner { max-width: 1400px; gap: 100px; }
  .hero-content { max-width: 900px; }
  .hero-title { font-size: 5.5rem; }
  .gs-title { font-size: 3.2rem; }
}

/* ── 22" desktop ── */
@media (min-width: 1366px) and (max-width: 1600px) {
  .guide-step-inner { gap: 70px; }
  .hero-title { font-size: 4.5rem; }
}

/* ── Tablet landscape ── */
@media (max-width: 1200px) {
  .nav { padding: 0 28px; }
  .hero { padding: 130px 28px 80px; }
  /* FIX: overflow visible so floated mockups aren't clipped */
  .guide-step { padding: 80px 28px; overflow: visible; }
  .guide-step-inner { gap: 40px; }
  .gs-title { font-size: 2.3rem; }
  .qr-inner { padding: 0 28px; }
  .cta-section { padding: 80px 28px; }
  .quick-ref-section { padding: 80px 28px; }

  /* Watermark too large at this size */
  .guide-step::before { font-size: 16rem; opacity: 0.015; }
}

/* ── Tablet portrait ── */
@media (max-width: 960px) {
  .hero-title { font-size: 3.2rem; }
  .hero-steps-bar { display: none; }

  /* Stack guide step columns */
  .guide-step-inner,
  .guide-step-inner--flip {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .guide-step-inner--flip > * { direction: ltr; }

  /* Mockup always on top on mobile */
  .gs-visual { order: -1; }

  /* Sticky nav scrollable */
  .sp-inner { padding: 0 16px; overflow-x: auto; gap: 0; }
  .sp-step  { padding: 12px 14px; font-size: 0.78rem; white-space: nowrap; }

  /* Quick ref: vertical stacked list */
  .qr-timeline {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .qr-line { display: none; }
  .qr-step {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 14px;
  }
  .qr-step-dot {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
  }
  .qr-step-card {
    flex: 1;
    min-width: 0;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
  }
  .qr-sc-icon { margin: 0; flex-shrink: 0; }
  .qr-step-card div { min-width: 0; }
  .qr-step-card h4 { margin-bottom: 2px; font-size: 0.88rem; }
  .qr-step-card p  { font-size: 0.78rem; line-height: 1.5; margin: 0; white-space: normal; }

  /* Watermark: hide on small screens */
  .guide-step::before { display: none; }

  /* Mode grid: 3 columns stays fine but reduce padding */
  .gm-mode-grid { gap: 12px; }
  .gm-mode-card { padding: 12px 8px; }

  /* Widget: center it */
  .gm-widget-preview { align-items: center; }

  /* Toggle explainer */
  .gs-te-row { flex-direction: column; gap: 10px; }
  .gs-te-arrow { display: none; }
  .gs-te-pill { width: 100%; }
}

/* ── Large mobile (681px – 768px) ── */
@media (max-width: 768px) {
  .nav { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-cta { font-size: 0.82rem; padding: 8px 14px; }

  .hero { padding: 100px 16px 60px; }
  .hero-title { font-size: 2.6rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }

  .sticky-progress { display: none; }

  .guide-step { padding: 64px 16px; }
  .gs-title { font-size: 1.9rem; }
  .gs-desc { font-size: 0.92rem; }

  /* FIX: mockup shell keeps rounded corners but parent is overflow:visible */
  .gs-mockup-shell { width: 100%; }
  .gs-mockup-body  { padding: 16px; min-height: auto; }

  /* Widget preview */
  .gm-widget-preview { gap: 14px; }
  .gm-widget { width: 100%; max-width: 280px; }

  /* Mode grid: 3 cols still fine */
  .gm-mode-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .gm-mode-card { padding: 10px 4px; }
  .gm-mode-card > span { font-size: 0.65rem; }
  .gm-mode-icon { width: 30px; height: 30px; font-size: 0.75rem; border-radius: 8px; }
  .gm-mode-badge { font-size: 0.55rem; padding: 2px 5px; top: -7px; }

  /* Config panel */
  .gm-config-panel { gap: 8px; }
  .gm-select-options { max-height: 140px; overflow-y: auto; }

  /* Transcript panel */
  .gm-waveform { gap: 3px; padding: 10px; }
  .gm-wave-bar { width: 2px; }
  .gm-transcript-text p { font-size: 0.78rem; }
  .gm-transcript-footer { flex-wrap: wrap; gap: 8px; font-size: 0.68rem; }

  /* Editor panel */
  .gm-editor-toolbar { gap: 3px; padding: 6px 10px; flex-wrap: wrap; }
  .gm-tb-btn { width: 26px; height: 26px; font-size: 0.68rem; }
  .gm-editor-content { padding: 12px; gap: 10px; }
  .gm-es-text { font-size: 0.75rem; }
  .gm-editor-statusbar { flex-wrap: wrap; gap: 8px; font-size: 0.68rem; }

  /* Actions panel */
  .gm-ai-thinking { padding: 14px; }
  .gm-ai-icon { width: 48px; height: 48px; font-size: 1.1rem; }
  .gm-action-btns { gap: 6px; }
  .gm-action-btn { padding: 10px; font-size: 0.78rem; }
  .gm-rp-content { padding: 10px; gap: 5px; }

  /* Feature cards */
  .gs-feature-card { padding: 14px; gap: 12px; }
  .gs-fc-icon { width: 38px; height: 38px; min-width: 38px; font-size: 0.88rem; }
  .gs-fc-body h4 { font-size: 0.88rem; }
  .gs-fc-body p  { font-size: 0.8rem; }

  /* Info cards */
  .gs-info-card { padding: 14px; gap: 12px; }
  .gs-ic-icon { width: 36px; height: 36px; min-width: 36px; font-size: 0.85rem; }

  /* Action cards (step 5) */
  .gs-action-card { padding: 16px; gap: 12px; }
  .gs-ac-icon { width: 38px; height: 38px; min-width: 38px; font-size: 0.88rem; }
  .gs-ac-body h4 { font-size: 0.9rem; }
  .gs-ac-body p  { font-size: 0.82rem; }

  /* Mic modes */
  .gs-mic-mode { padding: 8px 10px; gap: 8px; }
  .gs-mic-mode strong { font-size: 0.78rem; }
  .gs-mic-mode span   { font-size: 0.72rem; }

  /* Substep block */
  .gs-substep-block { padding: 14px; }

  /* Highlight box */
  .gs-highlight-box { padding: 16px; gap: 10px; }
  .gs-highlight-box p { font-size: 0.88rem; }

  /* CTA */
  .cta-box { padding: 40px 20px; border-radius: 18px; }
  .cta-box h2 { font-size: 1.8rem; }
  .cta-box p  { font-size: 0.9rem; }
  .cta-actions { flex-direction: column; align-items: center; width: 100%; }
  .cta-actions .btn-primary,
  .cta-actions .btn-ghost { width: 100%; justify-content: center; }

  /* Quick ref */
  .quick-ref-section { padding: 60px 16px; }
  .qr-title { font-size: 2rem; }
  .qr-step  { max-width: 100%; }
  .qr-step-card { padding: 12px 14px; }
  .qr-step-card h4 { font-size: 0.85rem; margin-bottom: 2px; }
  .qr-step-card p  { font-size: 0.74rem; line-height: 1.5; }
  .qr-sc-text { min-width: 0; flex: 1; }
  .qr-sc-icon { margin: 0; flex-shrink: 0; width: 34px; height: 34px; min-width: 34px; font-size: 0.8rem; border-radius: 10px; }
}

/* ── Small mobile ── */
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .gs-title   { font-size: 1.7rem; }
  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 1.5px; }

  /* Widget narrower screens */
  .gm-widget { max-width: 240px; }

  /* Reduce waveform bars */
  .gm-waveform { gap: 2px; }
  .gm-wave-bar { width: 2px; }

  /* Mockup bars smaller text */
  .gs-mockup-bar span { font-size: 0.7rem; }
  .gs-dot { width: 10px; height: 10px; }

  /* Step badge */
  .gs-step-badge { flex-wrap: wrap; gap: 6px; }

  /* Sub features label */
  .gs-sub-title { font-size: 0.72rem; }

  /* Toggle explainer */
  .gs-toggle-explainer { padding: 14px; }
  .gs-te-title { font-size: 0.82rem; }

  /* Mode grid: single column on very small */
  .gm-mode-grid { grid-template-columns: 1fr; gap: 12px; }
  .gm-mode-card { padding: 14px 10px; }

  /* Actions mockup: stacked */
  .gm-actions-panel { gap: 12px; }

  /* Report preview lines */
  .gm-rp-line { height: 5px; }

  /* CTA box */
  .cta-box h2 { font-size: 1.6rem; }
  .cta-section { padding: 60px 16px; }

  /* QR section */
  .qr-title { font-size: 1.8rem; }
  .qr-step-dot { width: 40px; height: 40px; }
  .qr-step-dot span { font-size: 0.88rem; }
  .qr-step-card { padding: 12px; }

  /* Disable GSAP float on mobile for perf */
  .gs-mockup-shell { animation: none !important; }
}

/* ── Extra small ── */
@media (max-width: 360px) {
  .hero-title { font-size: 1.9rem; }
  .gs-title   { font-size: 1.5rem; }
  .nav-cta    { display: none; }
  .hero { padding: 90px 14px 50px; }
  .guide-step { padding: 52px 14px; }
  .gm-widget { max-width: 100%; }
  .cta-box { padding: 32px 16px; }
  .cta-box h2 { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════════════
   REVIEWS / TESTIMONIALS SECTION — AI Typist Guide
═══════════════════════════════════════════════ */

.reviews-section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 60px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* ── Header ── */
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews-header-left .label-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #1ec8ff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  background: none;
  border: none;
  padding: 0;
}

.reviews-title {
  font-family: 'Fjalla One', sans-serif !important;
  font-size: 3.2rem;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 0 !important;
}

.reviews-year {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 10px;
  font-weight: 400;
  display: block;
}

.reviews-header-right p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  max-width: 220px;
  text-align: right;
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

/* ── Grid: 3 equal columns, 2 rows = 6 cards ── */
.reviews-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  width: 100% !important;
  align-items: stretch !important;
}

.reviews-col,
.col-1, .col-2, .col-3 {
  display: contents !important;
}

/* ── Card base ── */
.review-card {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  border-radius: 16px !important;
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  transition: opacity 0.6s ease, transform 0.6s ease,
              border-color 0.3s ease, background 0.3s ease;
  opacity: 0;
  transform: translateY(24px);
}

.review-card:hover {
  background: rgba(30,200,255,0.05) !important;
  border-color: rgba(30,200,255,0.18) !important;
}

.review-card.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Kill unused featured styles */
.review-card.featured { padding: 24px !important; overflow: visible !important; }
.featured-image { display: none !important; }
.stats-row { display: none !important; }

/* ── Stars ── */
.reviews-section .stars {
  color: #f5c842 !important;
  font-size: 12px !important;
  letter-spacing: 2px !important;
  line-height: 1 !important;
}

/* ── Review text ── */
.reviews-section .review-text {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  color: rgba(255,255,255,0.65) !important;
  line-height: 1.7 !important;
  font-weight: 300 !important;
  flex: 1;
  margin: 0 !important;
}

/* ── Reviewer row ── */
.reviews-section .reviewer {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: auto !important;
  padding: 0 !important;
}

.reviews-section .reviewer img {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}

.reviews-section .reviewer-name {
  display: block !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  line-height: 1.3 !important;
}

.reviews-section .reviewer-title {
  display: block !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  color: rgba(255,255,255,0.38) !important;
  font-weight: 300 !important;
  line-height: 1.4 !important;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .reviews-section { padding: 80px 36px; }
}

@media (max-width: 960px) {
  .reviews-section { padding: 72px 28px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .reviews-header { margin-bottom: 40px; }
}

@media (max-width: 680px) {
  .reviews-section { padding: 60px 16px; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .reviews-header-right p { text-align: left !important; max-width: 100%; }
}

@media (max-width: 480px) {
  .reviews-section { padding: 52px 16px; }
  .reviews-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .reviews-title { font-size: 2.2rem !important; }
}

/* ===================================================
   REAL SOFTWARE MOCKUP STYLES
   Matches actual Gratitext AI Typist UI
=================================================== */

/* ── Shared app chrome (top nav bar) ── */
.gm-app-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.gm-app-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: auto;
}

.gm-app-logo-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #041018;
}

.gm-app-logo span {
  font-family: 'Fjalla One', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1ec8ff;
}

.gm-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.gm-nav-btn-primary {
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  color: #041018;
  border: none;
}

.gm-nav-btn-dark {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.12);
}

.gm-nav-btn-share {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.68rem;
}

/* STT + AI Typist toggle group */
.gm-stt-group {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
}

.gm-stt-toggle {
  width: 34px; height: 18px;
  border-radius: 9px;
  background: #1ec8ff;
  position: relative;
  flex-shrink: 0;
}

.gm-stt-toggle::after {
  content: "";
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #ffffff;
  top: 3px; right: 3px;
}

/* ── Main app body layout ── */
.gm-app-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #060d1f;
}

.gm-field-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 5px;
}

.gm-app-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}

.gm-app-row-3 {
  display: grid;
  grid-template-columns: 1fr 1.6fr auto;
  gap: 10px;
  align-items: start;
}

.gm-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #0d1a2e;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  font-size: 0.78rem;
  color: #ffffff;
  cursor: pointer;
}

.gm-dropdown i { color: rgba(255,255,255,0.4); font-size: 0.65rem; }

.gm-input-field {
  padding: 8px 12px;
  background: #0d1a2e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

.gm-sys-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(30,200,255,0.08);
  border: 1px solid rgba(30,200,255,0.25);
  border-radius: 8px;
  white-space: nowrap;
}

.gm-sys-checkbox-box {
  width: 14px; height: 14px;
  border-radius: 3px;
  background: #1ec8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: #041018;
  flex-shrink: 0;
}

.gm-sys-checkbox span {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Transcript area */
.gm-transcript-area {
  background: #0d1a2e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px;
  min-height: 60px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  line-height: 1.6;
}

.gm-transcript-area.active {
  color: rgba(255,255,255,0.85);
  font-style: normal;
  border-color: rgba(30,200,255,0.2);
}

/* Editor area */
.gm-editor-area {
  background: #0a1020;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px;
  min-height: 90px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.gm-editor-area.empty {
  min-height: 60px;
}

/* Bottom action buttons */
.gm-bottom-btns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.gm-bottom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Fjalla One', sans-serif;
}

.gm-bottom-btn-generate {
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  color: #041018;
}

.gm-bottom-btn-copy {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
}

.gm-bottom-btn-logout {
  background: #e8192c;
  color: #ffffff;
}

/* ── Step 1 Floating widget (3 circular buttons) ── */
.gm-float-widget {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,18,36,0.95);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 8px 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  width: fit-content;
}

.gm-float-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
}

.gm-float-btn-mic {
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  color: #041018;
  box-shadow: 0 0 16px rgba(30,200,255,0.4);
}

.gm-float-btn-expand {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}

.gm-float-btn-close {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Step 1 full layout: widget + app preview */
.gm-step1-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gm-step1-hint {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  letter-spacing: 0.5px;
}

.gm-step1-arrow {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding-right: 8px;
}

.gm-step1-arrow span {
  font-size: 0.65rem;
  color: rgba(30,200,255,0.5);
}

/* Dropdown options list */
.gm-dropdown-list {
  background: #0d1a2e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: -6px;
}

.gm-dropdown-opt {
  padding: 7px 12px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.2s;
}

.gm-dropdown-opt:hover,
.gm-dropdown-opt.sel {
  background: #1ec8ff;
  color: #041018;
  font-weight: 600;
}