/* ════════════════════════════════════════════════════════════════════════
   GEMS Design System — Shared base for all pages
   Purple / Indigo palette · Inter font · Minimalist futuristic
   ════════════════════════════════════════════════════════════════════════ */

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

:root {
  --bg:           #04050f;
  --bg-2:         #08071a;
  --surface:      rgba(255,255,255,0.03);
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(139,92,246,0.35);

  --purple:       #8b5cf6;
  --purple-dim:   rgba(139,92,246,0.12);
  --purple-glow:  rgba(139,92,246,0.28);
  --purple-light: #a78bfa;
  --indigo:       #6366f1;
  --indigo-dim:   rgba(99,102,241,0.12);

  --text:   #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #475569;

  --r:    14px;
  --r-lg: 20px;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  /* Custom Premium Cursor: Arrowhead with GEMS multicolor dot */
  cursor: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%238b5cf6' /%3E%3Cstop offset='50%25' stop-color='%23ec4899' /%3E%3Cstop offset='100%25' stop-color='%2306b6d4' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M8 8 L24 14 L16 16 L14 24 Z' fill='rgba(8,7,26,0.95)' stroke='rgba(139,92,246,0.8)' stroke-width='1.5' stroke-linejoin='round'/%3E%3Ccircle cx='14.5' cy='14.5' r='2' fill='url(%23g1)'/%3E%3C/svg%3E") 8 8, auto;
}

/* Custom Cursor for hovering over cards (Applies to card and all its text/children) */
.g-card, .g-card p, .g-card div, .g-card span, .g-card h3, .g-card i, .g-card img {
  cursor: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%238b5cf6' /%3E%3Cstop offset='50%25' stop-color='%23ec4899' /%3E%3Cstop offset='100%25' stop-color='%2306b6d4' /%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='24' cy='24' r='20' fill='rgba(139,92,246,0.05)' stroke='rgba(139,92,246,0.3)' stroke-width='1.5'/%3E%3Ccircle cx='24' cy='24' r='4' fill='url(%23g1)'/%3E%3C/svg%3E") 24 24, auto !important;
}

/* Custom Cursor for clickable elements */
a, button, .btn, .hub-faq-question, .g-nav__hamburger, .g-team-dot {
  cursor: url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%238b5cf6' /%3E%3Cstop offset='50%25' stop-color='%23ec4899' /%3E%3Cstop offset='100%25' stop-color='%2306b6d4' /%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='18' cy='18' r='14' fill='rgba(139,92,246,0.2)' stroke='url(%23g1)' stroke-width='2'/%3E%3Ccircle cx='18' cy='18' r='5' fill='%23ffffff'/%3E%3C/svg%3E") 18 18, pointer !important;
}
a *, button *, .btn * {
  cursor: inherit !important;
}

::selection { background: var(--purple-dim); color: var(--purple-light); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 4px; }

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

/* ── LAYOUT ──────────────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.section    { padding: 120px 0; }
.section--alt { background: var(--bg-2); }

/* ── NAVBAR ──────────────────────────────────────────────────────────────── */
.g-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.g-nav.scrolled {
  background: rgba(4,5,15,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.g-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.g-nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 17px; color: var(--text);
  letter-spacing: -0.3px; text-decoration: none;
}
.g-nav__logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.g-nav__logo-img {
  width: 34px; height: 34px;
  object-fit: contain; border-radius: 8px;
  flex-shrink: 0;
  mix-blend-mode: screen;
}
.g-nav__links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.g-nav__links a {
  font-size: 13px; font-weight: 500; color: var(--text-2);
  text-decoration: none; transition: color 0.2s;
  position: relative;
}
.g-nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--purple);
  transition: width 0.25s var(--ease);
}
.g-nav__links a:hover { color: var(--text); }
.g-nav__links a:hover::after { width: 100%; }
.g-nav__links a.active { color: var(--purple-light); }
.g-nav__links a.active::after { width: 100%; }
.g-nav__cta {
  display: flex; align-items: center; gap: 10px;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 9px;
  font-size: 13px; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; border: none;
  transition: all 0.2s var(--ease);
  text-decoration: none;
}
.btn-ghost {
  background: transparent; color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--border-hover); color: var(--purple-light);
  background: var(--purple-dim);
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #ffffff; font-weight: 700;
  box-shadow: 0 0 28px var(--purple-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(139,92,246,0.45);
  filter: brightness(1.08);
}
.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 11px; }
.btn-sm { padding: 9px 16px;  font-size: 12px; border-radius: 8px; }
.btn-wa {
  background: #16a34a; color: #fff;
  box-shadow: 0 0 20px rgba(22,163,74,0.25);
}
.btn-wa:hover {
  transform: translateY(-2px);
  background: #15803d;
  box-shadow: 0 0 30px rgba(22,163,74,0.35);
}

/* ── SECTION HEADER ──────────────────────────────────────────────────────── */
.sh { margin-bottom: 60px; }
.sh.center { text-align: center; }
.sh.center .sh-sub { margin: 0 auto; }
.sh-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--purple-light); margin-bottom: 14px;
}
.sh-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1px; color: var(--text); margin-bottom: 16px;
}
.sh-sub {
  font-size: 16px; color: var(--text-2);
  line-height: 1.75; max-width: 520px;
}

/* ── HERO BASE ───────────────────────────────────────────────────────────── */
.g-hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.g-hero-blob-1 {
  position: absolute; top: -200px; left: 50%;
  transform: translateX(-20%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.g-hero-blob-2 {
  position: absolute; bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.11) 0%, transparent 65%);
  pointer-events: none;
}
.g-hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}
.g-hero-inner {
  text-align: center; max-width: 860px; margin: 0 auto;
  position: relative; z-index: 1;
}
.g-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.22);
  border-radius: 50px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--purple-light);
  margin-bottom: 36px;
}
.g-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.3; transform: scale(0.7); }
}
.g-hero-title {
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -3px; color: var(--text); margin-bottom: 28px;
}
.g-hero-title .accent {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 50%, var(--indigo) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.g-hero-sub {
  font-size: 18px; line-height: 1.75; color: var(--text-2);
  max-width: 560px; margin: 0 auto 44px; font-weight: 400;
}
.g-hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 64px;
}
.g-hero-proof {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.g-proof-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-3);
}
.g-proof-item i { color: var(--purple-light); font-size: 12px; }

/* Stats strip */
.g-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; margin-top: 72px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.g-stat { background: var(--bg); padding: 28px 24px; text-align: center; }
.g-stat-number {
  font-size: 40px; font-weight: 900; letter-spacing: -2px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 6px;
}
.g-stat-label { font-size: 12px; color: var(--text-3); font-weight: 500; }

/* ── MARQUEE STRIP ───────────────────────────────────────────────────────── */
.g-marquee {
  padding: 48px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-2); overflow: hidden; position: relative;
}
.g-marquee::before,
.g-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.g-marquee::before { left: 0;  background: linear-gradient(90deg,  var(--bg-2), transparent); }
.g-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }
.g-marquee-track {
  display: flex; gap: 40px;
  animation: marquee 28s linear infinite; width: max-content;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.g-marquee-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--text-3);
  white-space: nowrap; padding: 0 8px;
}

/* ── GLASS CARDS ─────────────────────────────────────────────────────────── */
.g-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.g-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.g-card:hover {
  border-color: var(--border-hover);
  background: rgba(139,92,246,0.04);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(139,92,246,0.08);
}
.g-card:hover::before { opacity: 1; }

/* ── SERVICE CARDS (2-col grid) ──────────────────────────────────────────── */
.g-services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.g-service-card {
  padding: 36px 32px; cursor: pointer;
}
.g-service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--purple-dim);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--purple-light);
  margin-bottom: 20px; transition: all 0.3s;
}
.g-card:hover .g-service-icon {
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff; box-shadow: 0 0 20px var(--purple-glow);
}
.g-service-name { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.g-service-desc { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.g-service-arrow {
  position: absolute; bottom: 24px; right: 28px;
  font-size: 13px; color: var(--text-3); transition: all 0.25s;
}
.g-card:hover .g-service-arrow { color: var(--purple-light); transform: translate(3px,-3px); }

/* ── PRODUCT CARDS (3-col grid) ──────────────────────────────────────────── */
.g-products-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.g-product-card {
  padding: 32px 28px;
  display: flex; flex-direction: column;
}
.g-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.35), 0 0 0 1px rgba(139,92,246,0.1);
}
.g-product-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 10px;
  border-radius: 50px; border: 1px solid; margin-bottom: 20px; width: fit-content;
}
.tag-purple { color: var(--purple-light); border-color: rgba(139,92,246,0.3); background: rgba(139,92,246,0.08); }
.tag-indigo { color: #a5b4fc;            border-color: rgba(99,102,241,0.3);  background: rgba(99,102,241,0.08); }
.tag-violet { color: #d8b4fe;            border-color: rgba(168,85,247,0.3);  background: rgba(168,85,247,0.08); }

.g-product-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
  transition: transform 0.3s var(--ease);
}
.g-product-card:hover .g-product-icon { transform: scale(1.08) translateY(-4px); }
.icon-purple { background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(99,102,241,0.06)); border: 1px solid rgba(139,92,246,0.25); }
.icon-indigo  { background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(99,102,241,0.05)); border: 1px solid rgba(99,102,241,0.25); }
.icon-violet  { background: linear-gradient(135deg, rgba(168,85,247,0.15), rgba(168,85,247,0.05)); border: 1px solid rgba(168,85,247,0.25); }

.g-product-name { font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; margin-bottom: 10px; }
.g-product-desc { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.g-product-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.g-product-feature { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); }
.g-product-feature i { color: var(--purple-light); font-size: 10px; }
.g-product-actions { display: flex; gap: 8px; }

/* ── MARKETING GRID ──────────────────────────────────────────────────────── */
.g-marketing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.g-marketing-card {
  padding: 32px 28px;
}
.g-marketing-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--purple-dim); border: 1px solid rgba(139,92,246,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--purple-light);
  margin-bottom: 18px; transition: all 0.3s;
}
.g-card:hover .g-marketing-icon {
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff; box-shadow: 0 0 16px var(--purple-glow);
}
.g-marketing-name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.g-marketing-desc { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ── TEAM SECTION ────────────────────────────────────────────────────────── */
.g-team-section { padding: 120px 0; }
.g-team-desc {
  text-align: center; font-size: 16px; color: var(--text-2);
  max-width: 580px; margin: 0 auto 60px; line-height: 1.75;
}
.g-team-carousel-wrap {
  position: relative; max-width: 900px; margin: 0 auto;
}
.g-team-carousel { overflow: hidden; }
.g-team-slide { display: none; }
.g-team-slide.active { display: flex; }
.g-team-member {
  width: 100%;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 44px 48px;
  display: flex; gap: 48px; align-items: flex-start;
}
.g-team-avatar-wrap { flex-shrink: 0; }
.g-team-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(139,92,246,0.35);
  box-shadow: 0 0 24px rgba(139,92,246,0.2);
}
.g-team-avatar-placeholder {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-dim), var(--indigo-dim));
  border: 2px solid rgba(139,92,246,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--purple-light);
}
.g-team-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--purple-light);
  margin-bottom: 6px;
}
.g-team-name { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.3px; margin-bottom: 4px; }
.g-team-role { font-size: 14px; color: var(--text-2); margin-bottom: 4px; }
.g-team-title {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--purple-light);
  background: var(--purple-dim); border: 1px solid rgba(139,92,246,0.2);
  padding: 3px 10px; border-radius: 50px; margin-bottom: 20px;
}
.g-team-quote {
  font-size: 15px; color: var(--text-2); line-height: 1.8;
  font-style: italic; margin-bottom: 20px;
}
.g-team-social { display: flex; gap: 8px; list-style: none; }
.g-team-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 13px; text-decoration: none;
  transition: all 0.2s;
}
.g-team-social a:hover {
  border-color: var(--border-hover); color: var(--purple-light);
  background: var(--purple-dim);
}
.g-team-controls {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 32px;
}
.g-team-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-2); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.g-team-btn:hover {
  border-color: var(--border-hover); color: var(--purple-light); background: var(--purple-dim);
}
.g-team-dots { display: flex; gap: 8px; }
.g-team-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-3); border: none; cursor: pointer;
  transition: all 0.2s; padding: 0;
}
.g-team-dot.active { background: var(--purple); transform: scale(1.3); }

/* ── TECHNOLOGIES ────────────────────────────────────────────────────────── */
.g-tech-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.g-tech-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: all 0.2s; cursor: default;
}
.g-tech-item:hover {
  border-color: var(--border-hover); background: var(--purple-dim);
  transform: translateY(-3px);
}
.g-tech-item img { width: 36px; height: 36px; object-fit: contain; }
.g-tech-item p { font-size: 12px; color: var(--text-3); font-weight: 500; }

/* ── CTA SECTION ─────────────────────────────────────────────────────────── */
.g-cta {
  text-align: center; position: relative; overflow: hidden;
}
.g-cta-blob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.11) 0%, transparent 65%);
  pointer-events: none;
}
.g-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.g-cta-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.08;
  color: var(--text); margin-bottom: 20px;
}
.g-cta-sub { font-size: 17px; color: var(--text-2); line-height: 1.7; margin-bottom: 40px; }
.g-cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.g-footer {
  background: var(--bg-2); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.g-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.g-footer-brand-name { font-size: 18px; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 14px; }
.g-footer-brand-desc { font-size: 14px; color: var(--text-2); line-height: 1.7; max-width: 300px; margin-bottom: 20px; }
.g-footer-socials { display: flex; gap: 10px; }
.g-social-link {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 14px; text-decoration: none; transition: all 0.2s;
}
.g-social-link:hover {
  border-color: var(--border-hover); color: var(--purple-light); background: var(--purple-dim);
}
.g-footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 18px;
}
.g-footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.g-footer-links a { font-size: 14px; color: var(--text-2); text-decoration: none; transition: color 0.2s; }
.g-footer-links a:hover { color: var(--text); }
.g-footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.g-footer-bottom p { font-size: 13px; color: var(--text-3); }
.g-footer-bottom span { color: var(--purple-light); }

/* ── FLOATING ACTION BUTTONS ─────────────────────────────────────────────── */
.g-fab-group {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}

/* WhatsApp FAB */
.g-wa-fab {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.35);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  color: #22c55e; font-size: 22px;
  box-shadow: 0 0 20px rgba(34,197,94,0.2);
  text-decoration: none; transition: all 0.25s var(--ease);
  cursor: pointer;
}
.g-wa-fab:hover {
  background: rgba(34,197,94,0.2);
  box-shadow: 0 0 32px rgba(34,197,94,0.4);
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(34,197,94,0.6);
}

/* Scroll to top FAB */
.g-scroll-top {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.35);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--purple-light); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(139,92,246,0.2);
  opacity: 0; transform: translateY(10px);
  transition: all 0.3s var(--ease);
}
.g-scroll-top.visible { opacity: 1; transform: translateY(0); }
.g-scroll-top:hover {
  background: rgba(139,92,246,0.22);
  box-shadow: 0 0 32px rgba(139,92,246,0.4);
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(139,92,246,0.6);
}

/* ── SCROLL REVEAL ───────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── MOBILE MENU TOGGLE ──────────────────────────────────────────────────── */
.g-nav__hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px;
  transition: all 0.2s;
}
.g-nav__hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--text-2); border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.g-nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.g-nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.g-nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.g-nav__mobile {
  display: none;
  position: fixed; top: 69px; left: 0; right: 0;
  background: rgba(4,5,15,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px 28px; z-index: 99;
  flex-direction: column; gap: 8px;
}
.g-nav__mobile.open { display: flex; }
.g-nav__mobile a {
  font-size: 15px; font-weight: 500; color: var(--text-2);
  text-decoration: none; padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.g-nav__mobile a:last-child { border-bottom: none; }
.g-nav__mobile a:hover { color: var(--purple-light); }
.g-nav__mobile-cta {
  display: flex; flex-direction: column; gap: 10px; margin-top: 16px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .g-products-grid  { grid-template-columns: repeat(2, 1fr); }
  .g-tech-grid      { grid-template-columns: repeat(4, 1fr); }
  .g-marketing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  /* Navbar mobile */
  .g-nav__links     { display: none; }
  .g-nav__cta       { display: none; }
  .g-nav__hamburger { display: flex; }

  /* Layout */
  .container        { padding: 0 20px; }
  .section          { padding: 72px 0; }

  /* Grids */
  .g-services-grid  { grid-template-columns: 1fr; gap: 14px; }
  .g-products-grid  { grid-template-columns: 1fr; }
  .g-marketing-grid { grid-template-columns: 1fr; gap: 14px; }
  .g-tech-grid      { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .g-footer-grid    { grid-template-columns: 1fr; gap: 32px; }

  /* Stats: 3 columns side by side on tablet */
  .g-stats          { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .g-stat-number    { font-size: 32px; }

  /* Hero */
  .g-hero-title     { letter-spacing: -1.5px; }
  .g-hero-sub       { font-size: 16px; }
  .g-hero-actions   { flex-direction: column; gap: 12px; }
  .g-hero-actions .btn { width: 100%; justify-content: center; }
  .g-hero-proof     { flex-wrap: wrap; gap: 10px; justify-content: center; }

  /* Team */
  .g-team-member    { flex-direction: column; padding: 28px 24px; }

  /* Footer */
  .g-footer-bottom  { flex-direction: column; gap: 12px; text-align: center; }

  /* Product cards: make actions row */
  .g-product-actions { flex-direction: row; }
}
@media (max-width: 480px) {
  .container        { padding: 0 16px; }
  .section          { padding: 56px 0; }

  /* Hero */
  .g-hero-title     { font-size: clamp(30px, 9vw, 44px); letter-spacing: -1px; }
  .g-hero-sub       { font-size: 15px; }

  /* Stats stacked on tiny screens */
  .g-stats          { grid-template-columns: 1fr; gap: 10px; }
  .g-stat           { padding: 20px; display: flex; align-items: center; justify-content: space-between; }
  .g-stat-number    { font-size: 36px; }

  /* Tech grid */
  .g-tech-grid      { grid-template-columns: repeat(2, 1fr); }

  /* Nav logo — hide text on very small screens */
  .g-nav__logo-name { display: none; }

  /* CTA section */
  .g-cta-actions    { flex-direction: column; }
  .g-cta-actions .btn { width: 100%; justify-content: center; }

  /* Section header */
  .sh-eyebrow       { font-size: 10px; }
}
