/* ═══════════════════════════════════════════════
   GETAXIO THEME — Bootstrap 5 Custom Styles
   ═══════════════════════════════════════════════ */

:root {
  --gx-blue: #1d4ed8;
  --gx-blue-dark: #1e40af;
  --gx-blue-light: #dbeafe;
  --gx-blue-bg: #eff6ff;
  --gx-indigo: #4338ca;
  --gx-purple: #7c3aed;
  --gx-green: #059669;
  --gx-orange: #d97706;
  --gx-text: #1f2937;
  --gx-text-muted: #4b5563;
  --gx-text-light: #6b7280;
  --gx-bg: #ffffff;
  --gx-bg-alt: #f8fafc;
  --gx-border: #e5e7eb;
  --gx-rose: #be185d;
  --gx-rose-light: #fce7f3;
  --gx-rose-bg: #fff1f2;
}

/* ─── HIDE BOOTSTRAP5 THEME CHROME ON PUBLIC PAGES ─── */
body.gx-public .region--nav-branding,
body.gx-public .region--nav-main,
body.gx-public .region--nav-additional,
body.gx-public .region--header,
body.gx-public .region--breadcrumb,
body.gx-public .region--sidebar-first,
body.gx-public .region--sidebar-second,
body.gx-public .region--footer,
body.gx-public .site-footer,
body.gx-public nav.navbar {
  display: none !important;
}

body.gx-public main.main-content,
body.gx-public .layout-content,
body.gx-public .region--content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

body.gx-public .layout-container,
body.gx-public .container {
  max-width: 100% !important;
  padding: 0 !important;
}

/* ─── GLOBAL TYPOGRAPHY ─── */
.gx-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--gx-text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ─── NAVBAR ─── */
.gx-navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gx-border);
  padding: 0;
  z-index: 1030;
}

.gx-navbar .navbar-brand {
  text-decoration: none;
  padding: 0;
}

.gx-navbar .nav-link {
  color: var(--gx-text-muted) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 4px !important;
  transition: color 0.2s;
}

.gx-navbar .nav-link:hover {
  color: var(--gx-blue) !important;
}

.gx-navbar .btn-gx-login {
  background: var(--gx-blue);
  color: #fff !important;
  padding: 8px 22px !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.gx-navbar .btn-gx-login:hover {
  background: var(--gx-blue-dark);
  color: #fff !important;
}

.gx-navbar-toggler {
  border: none;
  background: none;
  padding: 4px;
  cursor: pointer;
}

.gx-navbar-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gx-text);
  margin: 5px 0;
  transition: 0.3s;
}

/* ─── BRAND ─── */
.gx-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.gx-brand__name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gx-text);
  letter-spacing: -0.5px;
  line-height: 1;
}

.gx-brand__accent {
  background: linear-gradient(135deg, var(--gx-blue), var(--gx-indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gx-brand__tag {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--gx-text-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

.gx-brand--footer .gx-brand__name {
  color: #fff;
}

.gx-brand--footer .gx-brand__accent {
  -webkit-text-fill-color: #93c5fd;
  color: #93c5fd;
}

.gx-brand--footer .gx-brand__tag {
  color: #64748b;
}

/* ─── BUTTONS ─── */
.btn-gx-primary {
  background: linear-gradient(135deg, var(--gx-blue), var(--gx-indigo));
  color: #fff;
  border: 2px solid var(--gx-blue);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(29,78,216,0.3);
}

.btn-gx-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,78,216,0.4);
  color: #fff;
}

.btn-gx-white {
  background: #fff;
  color: var(--gx-blue);
  border: 2px solid #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.btn-gx-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
  color: var(--gx-blue-dark);
}

.btn-gx-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.btn-gx-ghost:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.btn-gx-outline {
  background: transparent;
  color: var(--gx-blue);
  border: 2px solid var(--gx-blue);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.btn-gx-outline:hover {
  background: var(--gx-blue);
  color: #fff;
}

.btn-gx-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ─── SECTION TAG ─── */
.gx-tag {
  display: inline-block;
  background: var(--gx-blue-light);
  color: var(--gx-blue);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── HERO ─── */
.gx-hero {
  position: relative;
  text-align: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

.gx-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 50%, #6366f1 100%);
  z-index: 0;
}

.gx-hero__bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99,102,241,0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.gx-hero__bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29,78,216,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.gx-hero__content {
  position: relative;
  z-index: 1;
}

.gx-hero .gx-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

.gx-hero__title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin: 20px 0;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.gx-hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.gx-stat__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.gx-stat__lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

/* ─── SECTION HEADERS ─── */
.gx-section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 12px 0;
  line-height: 1.25;
  color: var(--gx-text);
}

.gx-section-header p {
  color: var(--gx-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ─── CARDS ─── */
.gx-card {
  background: var(--gx-bg);
  border: 1px solid var(--gx-border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
}

.gx-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.gx-card--link {
  text-decoration: none;
  color: var(--gx-text);
  display: block;
  position: relative;
  overflow: hidden;
}

.gx-card--link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.gx-card--blue::before {
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
}

.gx-card--indigo::before {
  background: linear-gradient(90deg, #4338ca, #6366f1);
}

.gx-card--link:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  transform: translateY(-4px);
  border-color: transparent;
  color: var(--gx-text);
}

.gx-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.gx-card__icon-wrap--blue { background: #eff6ff; }
.gx-card__icon-wrap--green { background: #ecfdf5; }
.gx-card__icon-wrap--purple { background: #f5f3ff; }
.gx-card__icon-wrap--orange { background: #fffbeb; }

.gx-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.gx-card p {
  color: var(--gx-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.gx-card__link-text {
  font-weight: 600;
  font-size: 0.92rem;
}

.gx-card--blue .gx-card__link-text { color: #1d4ed8; }
.gx-card--indigo .gx-card__link-text { color: #4338ca; }

/* Card icon (emoji) */
.gx-card__emoji {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

/* ─── TECHNOLOGY SECTION ─── */
.gx-tech-highlight {
  background: linear-gradient(135deg, #1d4ed8, #4338ca);
  border-radius: 16px;
  padding: 40px 32px;
  color: #fff;
  text-align: center;
  height: 100%;
}

.gx-tech-speed-num {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}

.gx-tech-speed-lbl {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.75;
  font-weight: 600;
}

.gx-tech-cite {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.85rem;
  text-align: left;
  line-height: 1.4;
}

.gx-tech-cite svg {
  flex-shrink: 0;
  opacity: 0.8;
}

/* ─── STEP CIRCLES ─── */
.gx-step-circle {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gx-blue), var(--gx-indigo));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 18px;
}

/* ─── CTA SECTION ─── */
.gx-cta-gradient {
  background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 50%, #6366f1 100%);
  position: relative;
  overflow: hidden;
}

.gx-cta-gradient::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.gx-cta-gradient h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
}

.gx-cta-gradient p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.65;
}

/* ─── FOOTER ─── */
.gx-footer {
  background: #0f172a;
  color: #94a3b8;
}

.gx-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.gx-footer a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.gx-footer a:hover { color: #fff; }

.gx-footer__bottom {
  border-top: 1px solid #1e293b;
}

.gx-footer__bottom p {
  color: #64748b;
  font-size: 0.82rem;
  margin: 0;
}

/* ═════════════════════════════════════
   LANDING PAGES (Accountants/Lawyers)
   ═════════════════════════════════════ */

/* Landing Hero (light background) */
.gx-lp-hero {
  position: relative;
  overflow: hidden;
}

.gx-lp-hero--acc {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 40%, #bfdbfe 100%);
}

.gx-lp-hero--law {
  background: linear-gradient(135deg, #fff1f2 0%, #fce7f3 40%, #fbcfe8 100%);
}

.gx-lp-hero--acc .gx-tag {
  background: var(--gx-blue);
  color: #fff;
}

.gx-lp-hero--law .gx-tag {
  background: var(--gx-rose);
  color: #fff;
}

.gx-lp-stat__num {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.2;
}

.gx-lp-hero--acc .gx-lp-stat__num { color: var(--gx-blue); }
.gx-lp-hero--law .gx-lp-stat__num { color: var(--gx-rose); }

.gx-lp-stat__lbl {
  font-size: 0.75rem;
  color: var(--gx-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Landing section alt backgrounds */
.gx-lp-section--alt { background: var(--gx-bg-alt); }
.gx-lp-section--highlight-blue { background: var(--gx-blue-bg); }
.gx-lp-section--highlight-rose { background: var(--gx-rose-bg); }

/* Trust bar */
.gx-trust-bar {
  border-bottom: 1px solid var(--gx-border);
}

.gx-trust-item {
  font-size: 0.85rem;
  color: var(--gx-text-muted);
  font-weight: 500;
}

.gx-trust-item span {
  font-size: 1.2rem;
}

/* Step number circle */
.gx-step-num {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-block;
}

.gx-step-num--blue { background: var(--gx-blue); }
.gx-step-num--rose { background: var(--gx-rose); }

/* Source cards */
.gx-source-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--gx-bg);
  border-radius: 10px;
  border: 1px solid var(--gx-border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.gx-source-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.gx-source-card__icon {
  font-size: 2rem;
  min-width: 44px;
  text-align: center;
}

.gx-source-badge {
  background: var(--gx-blue-light);
  color: var(--gx-blue);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.gx-source-badge--rose {
  background: var(--gx-rose-light);
  color: var(--gx-rose);
}

/* Law cards */
.gx-law-card {
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: var(--gx-bg);
  border: 1px solid var(--gx-border);
  border-radius: 8px;
  padding: 14px 18px;
  transition: box-shadow 0.2s;
}

.gx-law-card--blue { border-left: 4px solid var(--gx-blue); }
.gx-law-card--rose { border-left: 4px solid var(--gx-rose); }

.gx-law-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gx-law-card strong {
  white-space: nowrap;
  font-size: 0.9rem;
  min-width: 120px;
}

.gx-law-card--blue strong { color: var(--gx-blue-dark); }
.gx-law-card--rose strong { color: var(--gx-rose); }

.gx-law-card span {
  color: var(--gx-text-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

/* Upload dropzone */
.gx-dropzone {
  text-align: center;
  padding: 48px 32px;
  border: 2px dashed var(--gx-blue);
  border-radius: 16px;
  background: rgba(29,78,216,0.03);
  transition: background 0.2s;
}

.gx-dropzone:hover {
  background: rgba(29,78,216,0.06);
}

.gx-dropzone--rose {
  border-color: var(--gx-rose);
  background: rgba(190,24,93,0.03);
}

.gx-dropzone--rose:hover {
  background: rgba(190,24,93,0.06);
}

/* Upload type cards */
.gx-upload-type {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--gx-bg);
  border-radius: 10px;
  border: 1px solid var(--gx-border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.gx-upload-type:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.gx-upload-type__icon {
  font-size: 1.8rem;
  min-width: 36px;
  text-align: center;
}

/* Upload flow */
.gx-flow-step span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: var(--gx-blue);
  color: #fff;
  font-weight: 700;
}

.gx-flow-arrow {
  color: var(--gx-blue);
  font-size: 1.4rem;
  font-weight: 700;
}

/* Example cards */
.gx-example-card {
  background: var(--gx-bg);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid var(--gx-border);
}

.gx-example-q {
  font-weight: 600;
  color: var(--gx-blue);
  font-size: 0.95rem;
}

.gx-example-q--rose { color: var(--gx-rose); }

.gx-example-a {
  color: var(--gx-text-muted);
  font-size: 0.9rem;
  padding-left: 28px;
}

/* Check items */
.gx-check-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: #f0fdf4;
  border-radius: 10px;
  border: 1px solid #bbf7d0;
}

.gx-check-icon {
  color: #059669;
  font-size: 1.3rem;
  font-weight: bold;
  min-width: 24px;
}

/* Pricing cards */
.gx-price-card {
  background: var(--gx-bg);
  border: 1px solid var(--gx-border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
}

.gx-price-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.gx-price-card--featured {
  border-color: var(--gx-blue);
  box-shadow: 0 4px 24px rgba(29,78,216,0.12);
  transform: scale(1.03);
}

.gx-price-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.gx-price-card__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gx-blue);
  color: #fff;
  padding: 4px 18px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.gx-price-card__price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gx-blue);
}

.gx-price-card__price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gx-text-light);
}

.gx-price-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.gx-price-card li {
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9rem;
  color: var(--gx-text-muted);
}

.gx-price-card li::before {
  content: '\2713';
  color: var(--gx-green);
  font-weight: 700;
  margin-right: 10px;
}

.gx-price-card li:last-child { border-bottom: none; }

/* FAQ */
.gx-faq-item {
  border-bottom: 1px solid var(--gx-border);
}

.gx-faq-item summary {
  padding: 20px 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--gx-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gx-faq-item summary::-webkit-details-marker { display: none; }

.gx-faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gx-blue);
  font-weight: 300;
  transition: transform 0.2s;
}

.gx-faq-item[open] summary::after {
  content: '\2212';
}

.gx-faq-item p {
  padding: 0 0 20px;
  color: var(--gx-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Final CTA (light) */
.gx-cta-light--blue {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.gx-cta-light--rose {
  background: linear-gradient(135deg, #fff1f2 0%, #fce7f3 100%);
}

/* ═════════════════════════════════════
   PLANS PAGE
   ═════════════════════════════════════ */

.gx-plans-guarantee {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 16px;
}

/* Addon items */
.gx-addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--gx-bg-alt);
  border-radius: 12px;
  border: 1px solid var(--gx-border);
  gap: 16px;
  flex-wrap: wrap;
}

.gx-addon-price {
  font-weight: 700;
  color: var(--gx-blue);
  font-size: 0.95rem;
  white-space: nowrap;
}

/* ═════════════════════════════════════
   ABOUT PAGE
   ═════════════════════════════════════ */

.gx-about-hero {
  background: linear-gradient(135deg, #eff6ff 0%, #ede9fe 100%);
}

.gx-founder-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--gx-border);
}

.gx-founder-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8, #7c3aed);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  flex-shrink: 0;
}

.gx-founder-role {
  color: var(--gx-blue);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Tech cards */
.gx-tech-card {
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gx-border);
}

.gx-tech-card h3 {
  color: var(--gx-blue);
  font-size: 1rem;
  margin-bottom: 8px;
}

.gx-tech-card p {
  color: var(--gx-text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

/* Agent case cards */
.gx-agent-case {
  padding: 28px 24px;
  background: var(--gx-bg-alt);
  border-radius: 14px;
  border: 1px solid var(--gx-border);
  text-align: center;
}

.gx-agent-case__icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.gx-about-cta {
  background: linear-gradient(135deg, #eff6ff 0%, #ede9fe 100%);
}

/* ═════════════════════════════════════
   CONTACT PAGE
   ═════════════════════════════════════ */

.gx-contact-hero {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.gx-contact-sidebar h3 {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.gx-contact-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--gx-border);
}

.gx-contact-info-item:last-child { border-bottom: none; }

.gx-contact-info-item span:first-child {
  font-size: 1.2rem;
}

/* ═════════════════════════════════════
   UPDATES / TIMELINE PAGE
   ═════════════════════════════════════ */

.gx-timeline-item {
  position: relative;
  padding-left: 32px;
  padding-bottom: 32px;
  border-left: 2px solid var(--gx-border);
}

.gx-timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gx-blue);
}

.gx-timeline-date {
  font-size: 0.82rem;
  color: var(--gx-text-light);
  font-weight: 600;
}

.gx-timeline-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
}

.gx-timeline-tag--feature { background: #dbeafe; color: #1d4ed8; }
.gx-timeline-tag--improvement { background: #d1fae5; color: #059669; }
.gx-timeline-tag--launch { background: #fef3c7; color: #d97706; }

/* ═════════════════════════════════════
   LEGAL PAGES (Privacy, Terms)
   ═════════════════════════════════════ */

.gx-legal-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.gx-legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--gx-text);
}

.gx-legal-content p,
.gx-legal-content ul {
  color: var(--gx-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.gx-legal-content ul {
  padding-left: 20px;
}

.gx-legal-content li {
  margin-bottom: 6px;
}

/* ═════════════════════════════════════
   AUTHENTICATED PAGES
   ═════════════════════════════════════ */

/* Account info bar */
.gx-info-bar {
  background: var(--gx-bg-alt);
  border: 1px solid var(--gx-border);
  border-radius: 12px;
  padding: 20px 24px;
}

/* Quota progress */
.gx-quota-bar {
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.gx-quota-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--gx-blue);
  transition: width 0.3s;
}

.gx-quota-fill--warning { background: var(--gx-orange); }
.gx-quota-fill--danger { background: #dc2626; }

/* Document upload zone */
.gx-upload-zone {
  border: 2px dashed var(--gx-blue);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  background: rgba(29,78,216,0.02);
  transition: background 0.2s;
  cursor: pointer;
}

.gx-upload-zone:hover {
  background: rgba(29,78,216,0.05);
}

/* Dashboard stat cards */
.gx-dash-stat {
  background: var(--gx-bg);
  border: 1px solid var(--gx-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.gx-dash-stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gx-blue);
}

.gx-dash-stat__lbl {
  font-size: 0.82rem;
  color: var(--gx-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═════════════════════════════════════
   RESPONSIVE OVERRIDES
   ═════════════════════════════════════ */

@media (max-width: 991.98px) {
  .gx-hero__title { font-size: 2.4rem; }
  .gx-section-header h2 { font-size: 1.6rem; }
  .gx-price-card--featured { transform: none; }
  .gx-price-card--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 767.98px) {
  .gx-hero { padding: 60px 0 48px; }
  .gx-hero__title { font-size: 2rem; }
  .gx-hero__sub { font-size: 1rem; }
  .gx-stat__num { font-size: 1.5rem; }
  .gx-cta-gradient h2 { font-size: 1.7rem; }
  .gx-law-card { flex-direction: column; gap: 4px; }
  .gx-law-card strong { min-width: auto; }
  .gx-flow-arrow { display: none; }
  .gx-addon-item { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575.98px) {
  .gx-hero__title { font-size: 1.65rem; }
  .gx-section-header h2 { font-size: 1.4rem; }
  .btn-gx-lg { width: 100%; max-width: 320px; }
}
