/* CSS/main.css - Consolidated styles for GCX Asset Management System */
/* Merged from index_styles.css + products.css */

:root{
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #334155;
  --border: rgba(15, 23, 42, 0.10);
  --shadow: 0 12px 30px rgba(2, 6, 23, 0.10);
  --shadow-soft: 0 10px 24px rgba(2, 6, 23, 0.08);
  --emerald: #059669;
  --emerald-700: #047857;
  --emerald-50: #ecfdf5;
  --overlay: rgba(2, 6, 23, 0.60);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
}
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.container{
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

/* ─── Navigation ─────────────────────────────────────────────────────────── */

/* Top accent strip */
.gcx-nav-topbar {
  height: 3px;
  background: linear-gradient(90deg, #047857, #10b981, #34d399, #10b981, #047857);
}

/* Main header */
.gcx-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #022c22;
  transition: background .4s, box-shadow .4s;
}
.gcx-nav.scrolled {
  background: #064e3b;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.gcx-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  transition: height .35s;
}
.gcx-nav.scrolled .gcx-nav-inner {
  height: 56px;
}

/* Logo */
.gcx-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.gcx-nav-logo img {
  height: 34px;
  width: auto;
  transition: height .35s;
  filter: brightness(0) invert(1);
}
.gcx-nav.scrolled .gcx-nav-logo img {
  height: 28px;
}
.gcx-nav-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  transition: font-size .35s;
}
.gcx-nav.scrolled .gcx-nav-logo-text {
  font-size: 16px;
}

/* Desktop Links */
.gcx-nav-links {
  display: none;
  align-items: center;
  gap: 2px;
}
@media (min-width: 768px) {
  .gcx-nav-links { display: flex; }
}

.gcx-nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  transition: color .2s;
  letter-spacing: 0.01em;
}
.gcx-nav-link:hover {
  color: #fff;
}
/* Animated underline */
.gcx-nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #34d399;
  border-radius: 2px;
  transition: width .25s ease, left .25s ease;
}
.gcx-nav-link:hover::after {
  width: calc(100% - 32px);
  left: 16px;
}
.gcx-nav-link.active {
  color: #fff;
}
.gcx-nav-link.active::after {
  width: calc(100% - 32px);
  left: 16px;
  background: #34d399;
}

/* Desktop CTAs */
.gcx-nav-actions {
  display: none;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .gcx-nav-actions { display: flex; }
}

.gcx-btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
}
.gcx-btn-demo:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}

.gcx-btn-order {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #022c22;
  background: #34d399;
  border: 1.5px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 2px 12px rgba(52,211,153,0.3);
}
.gcx-btn-order:hover {
  background: #6ee7b7;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(52,211,153,0.4);
}

/* Mobile Hamburger */
.gcx-nav-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  transition: background .2s;
}
@media (min-width: 768px) {
  .gcx-nav-toggle { display: none; }
}
.gcx-nav-toggle:hover {
  background: rgba(255,255,255,0.1);
}

.gcx-nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .25s ease, background .25s;
  transform-origin: center;
}
.gcx-nav-toggle .bar + .bar {
  margin-top: 5px;
}

/* Hamburger → X */
.gcx-nav-toggle.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.gcx-nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.gcx-nav-toggle.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile slide-in panel */
.gcx-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.gcx-mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.gcx-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  width: min(340px, 85vw);
  background: #022c22;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.gcx-mobile-panel.open {
  transform: translateX(0);
}

.gcx-mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.gcx-mobile-panel-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gcx-mobile-panel-logo img {
  height: 28px;
  filter: brightness(0) invert(1);
}
.gcx-mobile-panel-logo span {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.gcx-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;
  transition: background .2s;
}
.gcx-mobile-close:hover {
  background: rgba(255,255,255,0.15);
}

.gcx-mobile-nav {
  flex: 1;
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gcx-mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-radius: 12px;
  transition: background .2s, color .2s;
  transform: translateX(30px);
  opacity: 0;
}
.gcx-mobile-panel.open .gcx-mobile-link {
  transform: translateX(0);
  opacity: 1;
}
/* Staggered animation */
.gcx-mobile-panel.open .gcx-mobile-link:nth-child(1) { transition-delay: .08s; }
.gcx-mobile-panel.open .gcx-mobile-link:nth-child(2) { transition-delay: .12s; }
.gcx-mobile-panel.open .gcx-mobile-link:nth-child(3) { transition-delay: .16s; }
.gcx-mobile-panel.open .gcx-mobile-link:nth-child(4) { transition-delay: .20s; }
.gcx-mobile-panel.open .gcx-mobile-link:nth-child(5) { transition-delay: .24s; }
.gcx-mobile-panel.open .gcx-mobile-link:nth-child(6) { transition-delay: .28s; }

.gcx-mobile-link:hover,
.gcx-mobile-link:active {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.gcx-mobile-link.active {
  background: rgba(52,211,153,0.12);
  color: #34d399;
  font-weight: 700;
}
.gcx-mobile-link-icon {
  width: 20px;
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}
.gcx-mobile-link.active .gcx-mobile-link-icon {
  opacity: 1;
}

.gcx-mobile-cta {
  padding: 16px 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gcx-mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  transition: all .2s;
}
.gcx-mob-demo {
  color: #022c22;
  background: #34d399;
  box-shadow: 0 4px 16px rgba(52,211,153,0.3);
}
.gcx-mob-demo:hover {
  background: #6ee7b7;
  transform: translateY(-1px);
}
.gcx-mob-order {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.gcx-mob-order:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
}

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
  user-select: none;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--emerald);
  color: #fff;
  box-shadow: 0 10px 20px rgba(5, 150, 105, 0.25);
}
.btn-primary:hover{ background: var(--emerald-700); }

.btn-ghost{
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover{ background: rgba(15, 23, 42, 0.04); }

.btn-invert{
  background: #fff;
  color: var(--emerald-700);
}
.btn-invert:hover{ background: rgba(255,255,255,0.92); }

/* ─── Page Banner ──────────────────────────────────────────────────────── */
.page-banner {
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: #fff;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 78, 59, 0.78);
}
.banner-content {
  position: relative;
  padding: 76px 0;
}
.banner-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
}
.banner-title {
  margin: 14px 0 0;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.02em;
}
.banner-subtitle {
  margin: 10px 0 0;
  max-width: 820px;
  color: rgba(236, 253, 245, 0.95);
  font-size: 16px;
  line-height: 1.55;
}

/* ─── Main Carousel ────────────────────────────────────────────────────── */
.main-carousel-slide {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

/* ─── Mini Gallery ─────────────────────────────────────────────────────── */
.mini-gallery-slide {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out;
}

.mini-gallery-slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* ─── Carousel Dots ────────────────────────────────────────────────────── */
.dot, .mini-dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 4px;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.mini-dot {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.10);
}
.mini-dot.active {
  background: rgba(255,255,255,0.95);
  transform: scale(1.06);
}

/* ─── Range Slider ─────────────────────────────────────────────────────── */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: #059669;
  cursor: pointer;
  margin-top: -8px;
  transition: background 0.3s;
}
input[type=range]::-moz-range-thumb {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: #059669;
  cursor: pointer;
  transition: background 0.3s;
}
input[type=range]:focus::-webkit-slider-thumb { background: #047857; }
input[type=range]:focus::-moz-range-thumb { background: #047857; }

/* ─── Program Card ─────────────────────────────────────────────────────── */
.program-card{
  position: relative;
  background: linear-gradient(135deg, #003502, #01ad1b);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
  color: #fff;
  overflow: hidden;
}
.program-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url("../Photos/web/golf-ball-texture.jpg") center / cover no-repeat;
  opacity: 0.5;
  z-index: 0;
}
.program-card > *{ position: relative; z-index: 1; }

.program-left .tag{
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.16);
}
.program-left h2{ margin: 12px 0 6px; font-size: 24px; letter-spacing: -0.02em; }
.program-left p{ margin: 0; color: rgba(236, 253, 245, 0.95); line-height: 1.55; }

.program-actions{ display: flex; flex-wrap: wrap; gap: 10px; }
@media (min-width: 800px){
  .program-card{ grid-template-columns: 1fr auto; align-items: center; }
}

/* ─── Products Grid ────────────────────────────────────────────────────── */
.products-grid{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px){
  .products-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 980px){
  .products-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1200px){
  .products-grid{ grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* ─── Product Card ─────────────────────────────────────────────────────── */
.product-card{
  background: var(--card);
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 10px 18px rgba(2,6,23,0.05);
  overflow: hidden;
  transition: transform .14s ease, box-shadow .14s ease;
  cursor: pointer;
}
.product-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(2,6,23,0.10);
}

.product-media{
  position: relative;
  aspect-ratio: 4 / 3;
  background: white;
  overflow: hidden;
}
.product-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity .22s ease, transform .22s ease;
}
.product-slide img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-slide.active{
  opacity: 1;
  transform: translateX(0);
}

.product-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(2, 6, 23, 0.45);
  color: #fff;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .14s ease, background .14s ease;
}
.product-card:hover .product-arrow{ opacity: 1; }
.product-arrow:hover{ background: rgba(2, 6, 23, 0.62); }
.product-prev{ left: 10px; }
.product-next{ right: 10px; }

.product-dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  gap: 7px;
  justify-content: center;
  padding: 0 10px;
}
.product-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: transform .12s ease, background .12s ease;
}
.product-dot.active{
  background: rgba(255,255,255,0.95);
  transform: scale(1.08);
}

.product-body{ padding: 12px 12px 14px; }
.product-badge{
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--emerald-50);
  color: var(--emerald-700);
  border: 1px solid rgba(5,150,105,0.18);
}
.product-title{ margin: 10px 0 4px; font-size: 14px; letter-spacing: -0.01em; }
.product-snippet{ margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.45; }

/* ─── Section Layout ───────────────────────────────────────────────────── */
.section{ padding: 34px 0; }
.section-tight{ padding-top: 18px; }
.section-head{ margin-bottom: 18px; }
.section-title{ margin: 0; font-size: 28px; letter-spacing: -0.02em; }
.section-desc{ margin: 8px 0 0; color: var(--muted); max-width: 820px; }

/* ─── Shared Modal (products page) ─────────────────────────────────────── */
.modal{
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.modal.hidden{ display: none; }

.modal-overlay{
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,0.72);
  backdrop-filter: blur(2px);
}

.modal-panel{
  position: relative;
  width: min(1120px, calc(100% - 28px));
  margin: 0;
  max-height: calc(100vh - 36px);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,0.35);
  transform: translateY(8px);
  opacity: 0;
  animation: modalIn 170ms ease-out forwards;
}

@keyframes modalIn{ to{ transform: translateY(0); opacity: 1; } }

.modal-close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  z-index: 2;
}
.modal-close:hover{ background: #fff; }

.modal-grid{ display: grid; grid-template-columns: 1fr; }
@media (min-width: 920px){
  .modal-grid{ grid-template-columns: 1.05fr 1fr; }
}

.modal-left{ background: #0b1220; padding: 16px; }

.modal-carousel{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

.modal-slides{ position: absolute; inset: 0; }
.modal-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .22s ease, transform .22s ease;
}
.modal-slide img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal-slide.active{ opacity: 1; transform: translateX(0); }

.modal-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(2, 6, 23, 0.55);
  color: #fff;
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}
.modal-arrow:hover{ background: rgba(2,6,23,0.72); }
.modal-prev{ left: 12px; }
.modal-next{ right: 12px; }

.modal-dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
}
.modal-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.12);
  cursor: pointer;
}
.modal-dot.active{ background: rgba(255,255,255,0.95); }

.modal-right{ padding: 18px; }
.modal-meta{ margin-top: 4px; }
.modal-badge{
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--emerald-50);
  color: var(--emerald-700);
  border: 1px solid rgba(5,150,105,0.18);
}
.modal-title{ margin: 12px 0 6px; font-size: 22px; letter-spacing: -0.02em; }
.modal-text{ margin: 0; color: #334155; line-height: 1.6; }
.modal-actions{ margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px; }
body.modal-open{ overflow: hidden; }

/* ─── Video Modal (videos page) ─────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
}
.modal-backdrop.hidden { display: none; }

/* ─── Site Footer ───────────────────────────────────────────────────────── */
.site-footer{
  margin-top: 0;
  background: #022c22;
  color: rgba(255,255,255,0.70);
  padding: 0;
}
.footer-inner{ text-align: center; }

.gcx-footer {
  background: #022c22;
  color: rgba(255,255,255,0.70);
}
.gcx-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 0;
}
.gcx-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px) {
  .gcx-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .gcx-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}

/* Footer brand column */
.gcx-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gcx-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gcx-footer-logo img {
  height: 30px;
  filter: brightness(0) invert(1);
}
.gcx-footer-logo span {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.gcx-footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
}
.gcx-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.gcx-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  transition: background .2s, color .2s;
}
.gcx-footer-social a:hover {
  background: rgba(52,211,153,0.15);
  color: #34d399;
}

/* Footer columns */
.gcx-footer-col h4 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.gcx-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gcx-footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color .2s;
}
.gcx-footer-col a:hover {
  color: #34d399;
}

/* Footer bottom bar */
.gcx-footer-bottom {
  margin-top: 48px;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
@media (min-width: 640px) {
  .gcx-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.gcx-footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
}
.gcx-footer-legal {
  display: flex;
  gap: 20px;
}
.gcx-footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  transition: color .2s;
}
.gcx-footer-legal a:hover {
  color: rgba(255,255,255,0.70);
}

/* ─── Background Utilities ──────────────────────────────────────────────── */
.sparkle-bg {
  background-image:
    radial-gradient(circle at 20% 20%, rgb(255, 255, 255), transparent 35%),
    radial-gradient(circle at 80% 35%, rgb(255, 255, 255), transparent 30%),
    radial-gradient(circle at 30% 80%, rgb(255, 255, 255), transparent 35%),
    radial-gradient(circle at 70% 85%, rgb(255, 255, 255), transparent 30%);
}

.gcx-bg-tile {
  position: relative;
  overflow: hidden;
}
.gcx-bg-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../Photos/web/tools.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  pointer-events: none;
}
.gcx-bg-tile > * { position: relative; z-index: 1; }

/* ─── HubSpot Form ──────────────────────────────────────────────────────── */
.hubspot-embed-frame { width: 100%; }
.hubspot-iframe {
  width: 100%;
  border: 0;
  display: block;
  min-height: 720px;
}

/* ─── Video Cards (videos page) ─────────────────────────────────────────── */
.video-card {
  border-radius: 12px;
}

/* ─── Focus Styles for Accessibility ────────────────────────────────────── */
:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 2px;
}
