/*
Theme Name: Galaktika Child
Template: blankslate
Version: 2.0.0
Description: Redesigned based on Figma mockup - Modern product UI
*/

/* ===============================
   CSS Variables (Design Tokens)
   =============================== */
:root {
  /* Colors */
  --gg-purple-950: #2B0633;
  --gg-purple-900: #3D1045;
  --gg-purple-800: #4A1854;
  --gg-yellow: #FFC700;
  --gg-yellow-hover: #FFD633;
  
  /* Text */
  --gg-text: #F5F5F7;
  --gg-text-muted: rgba(245, 245, 247, 0.7);
  --gg-text-dim: rgba(245, 245, 247, 0.5);
  
  /* Surfaces */
  --gg-border: rgba(255, 255, 255, 0.1);
  --gg-border-hover: rgba(255, 255, 255, 0.2);
  --gg-glass: rgba(255, 255, 255, 0.08);
  --gg-glass-hover: rgba(255, 255, 255, 0.12);
  --gg-surface: rgba(255, 255, 255, 0.05);
  
  /* Spacing */
  --gg-header-h: 80px;
  --gg-container: 1140px;
  --gg-radius-sm: 10px;
  --gg-radius-md: 16px;
  --gg-radius-lg: 24px;
  --gg-radius-xl: 32px;
}

/* ===============================
   Base Styles
   =============================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--gg-purple-950);
  color: var(--gg-text);
  line-height: 1.5;
  margin: 0;
}

/* ===============================
   Utility: Glass Effect
   =============================== */
.glass {
  background: var(--gg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gg-border);
  border-radius: var(--gg-radius-lg);
}

/* ===============================
   Layout
   =============================== */
.gg-main {
  padding-top: calc(var(--gg-header-h) + 32px);
  min-height: 100vh;
}

.gg-container {
  max-width: var(--gg-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===============================
   Header (Navigation)
   =============================== */
.gg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 12px 24px;
  background: rgba(43, 6, 51, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gg-border);
  transition: transform 0.22s ease;
}

.gg-header.is-hidden {
  transform: translateY(-110%);
}

.gg-header__inner {
  max-width: var(--gg-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

/* Brand / Logo */
.gg-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}

.gg-brand__logo {
  height: 48px;
  width: auto;
  display: block;
}

.gg-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.gg-brand__top {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.gg-brand__bottom {
  font-size: 16px;
  font-weight: 700;
  color: var(--gg-yellow);
  text-transform: uppercase;
  margin-top: -2px;
}

/* Navigation */
.gg-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gg-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--gg-radius-sm);
  text-decoration: none;
  color: var(--gg-text);
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.2s ease;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.gg-nav__link:hover {
  color: var(--gg-yellow);
  background: var(--gg-glass);
}

/* Dropdown */
.gg-dropdown {
  position: relative;
}

.gg-dropdown__btn {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.gg-caret {
  opacity: 0.7;
  font-size: 10px;
  transition: transform 0.2s ease;
}

.gg-dropdown.is-open .gg-caret {
  transform: rotate(180deg);
}

.gg-dropdown__menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 200px;
  padding: 8px;
  border-radius: var(--gg-radius-md);
  border: 1px solid var(--gg-border);
  background: rgba(43, 6, 51, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.gg-dropdown.is-open .gg-dropdown__menu {
  display: block;
}

.gg-dropdown__item {
  display: block;
  padding: 10px 12px;
  border-radius: var(--gg-radius-sm);
  text-decoration: none;
  color: var(--gg-text-muted);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.15s ease;
}

.gg-dropdown__item:hover {
  background: var(--gg-glass);
  color: var(--gg-yellow);
}

/* Header CTA Button */
.gg-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 40px;
  border-radius: var(--gg-radius-sm);
  background: var(--gg-yellow);
  color: var(--gg-purple-950);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(255, 199, 0, 0.25);
  transition: all 0.2s ease;
}

.gg-header__cta:hover {
  background: var(--gg-yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 199, 0, 0.35);
}

/* Burger (Mobile) */
.gg-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--gg-radius-sm);
  border: 1px solid var(--gg-border);
  background: var(--gg-glass);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.gg-mobile {
  display: none;
  position: fixed;
  top: calc(var(--gg-header-h));
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gg-purple-950);
  padding: 24px;
  overflow-y: auto;
  z-index: 9998;
}

.gg-mobile a {
  display: block;
  padding: 16px 12px;
  border-radius: var(--gg-radius-sm);
  text-decoration: none;
  color: var(--gg-text);
  font-weight: 600;
  font-size: 16px;
  transition: all 0.15s ease;
}

.gg-mobile a:hover {
  background: var(--gg-glass);
  color: var(--gg-yellow);
}

.gg-mobile__sep {
  height: 1px;
  background: var(--gg-border);
  margin: 16px 0;
}

.gg-mobile .gg-btn--primary {
  margin-top: 16px;
  width: 100%;
}

/* Mobile Responsive */
@media (max-width: 980px) {
  .gg-nav,
  .gg-header__cta {
    display: none;
  }
  
  .gg-burger {
    display: inline-flex;
  }
  
  .gg-mobile[hidden="false"],
  .gg-mobile:not([hidden]) {
    display: block;
  }
  
  .gg-main {
    padding-top: calc(var(--gg-header-h) + 8px);
  }
}

.gg-nav-open {
  overflow: hidden;
}

/* ===============================
   Footer
   =============================== */
.gg-footer {
  border-top: 1px solid var(--gg-border);
  padding: 48px 0;
  background: rgba(26, 4, 31, 0.8);
}

.gg-footer__inner {
  max-width: var(--gg-container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 40px;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

@media (max-width: 980px) {
  .gg-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .gg-footer__inner {
    grid-template-columns: 1fr;
  }
}

.gg-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.gg-footer__logo {
  height: 40px;
  width: auto;
  display: block;
}

.gg-footer__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.gg-footer__top {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.gg-footer__bottom {
  font-size: 14px;
  font-weight: 700;
  color: var(--gg-yellow);
  text-transform: uppercase;
  margin-top: -1px;
}

.gg-footer__desc {
  color: var(--gg-text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.gg-footer__copy {
  color: var(--gg-text-dim);
  font-size: 12px;
}

.gg-footer__title {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--gg-text);
}

.gg-footer__col a {
  display: block;
  color: var(--gg-text-muted);
  text-decoration: none;
  padding: 6px 0;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s ease;
}

.gg-footer__col a:hover {
  color: var(--gg-yellow);
}

.gg-footer__contact {
  color: var(--gg-text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}

.gg-footer__contact-label {
  display: block;
  color: var(--gg-text-dim);
  font-size: 12px;
  margin-bottom: 2px;
}

.gg-footer__contact a {
  color: var(--gg-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.gg-footer__contact a:hover {
  color: var(--gg-yellow);
}

.gg-footer__address {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--gg-text-dim);
  font-size: 13px;
}

/* ===============================
   Buttons
   =============================== */
.gg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--gg-radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--gg-border);
  background: var(--gg-glass);
  color: var(--gg-text);
  transition: all 0.2s ease;
}

.gg-btn:hover {
  transform: translateY(-1px);
  border-color: var(--gg-border-hover);
  background: var(--gg-glass-hover);
}

.gg-btn--primary {
  background: var(--gg-yellow);
  color: var(--gg-purple-950);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(255, 199, 0, 0.25);
}

.gg-btn--primary:hover {
  background: var(--gg-yellow-hover);
  box-shadow: 0 6px 24px rgba(255, 199, 0, 0.35);
}

.gg-btn--ghost {
  background: transparent;
  border: 1px solid var(--gg-border-hover);
}

.gg-btn--ghost:hover {
  background: var(--gg-glass);
  border-color: var(--gg-yellow);
  color: var(--gg-yellow);
}

.gg-btn--full {
  width: 100%;
}

.gg-btn--lg {
  padding: 14px 28px;
  font-size: 16px;
  height: 56px;
}

/* ===============================
   Hero Section
   =============================== */
.gg-hero {
  position: relative;
  padding: 48px 24px 80px;
  overflow: hidden;
}

/* Background Image */
.gg-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.1;
}

/* Purple Overlay */
.gg-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(74, 24, 84, 0.9) 0%, rgba(43, 6, 51, 0.95) 50%, rgba(26, 4, 32, 0.9) 100%),
    radial-gradient(circle at 20% 50%, rgba(255, 199, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 199, 0, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.gg-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--gg-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 980px) {
  .gg-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Hero Left (Content) */
.gg-hero__left {
  min-width: 0;
}

.gg-hero__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.gg-hero__title .highlight {
  color: var(--gg-yellow);
}

.gg-hero__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gg-text-muted);
  margin: 0 0 32px;
  max-width: 600px;
}

/* Founder Story Block */
.gg-founder {
  padding: 24px;
  border-radius: var(--gg-radius-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gg-border);
  display: flex;
  gap: 20px;
  backdrop-filter: blur(10px);
}

.gg-founder__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 199, 0, 0.3);
  flex-shrink: 0;
}

.gg-founder__content {
  flex: 1;
  min-width: 0;
}

.gg-founder__quote {
  color: var(--gg-text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.gg-founder__signature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gg-founder__line {
  width: 32px;
  height: 1px;
  background: rgba(255, 199, 0, 0.5);
}

.gg-founder__name {
  color: rgba(255, 199, 0, 0.9);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 600px) {
  .gg-founder {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .gg-founder__signature {
    justify-content: center;
  }
}

/* Hero Right (Form) */
.gg-hero__right {
  min-width: 0;
}

.gg-hero__formcard {
  padding: 32px;
  border-radius: var(--gg-radius-xl);
  background: var(--gg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gg-border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.gg-hero__formcard-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
}

.gg-hero__formcard-text {
  font-size: 14px;
  color: var(--gg-text-muted);
  margin: 0 0 24px;
}

/* ===============================
   Forms (CF7 Integration)
   =============================== */
.gg-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gg-form label {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: var(--gg-text-muted);
  margin-bottom: 8px;
}

.gg-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .gg-form__grid {
    grid-template-columns: 1fr;
  }
}

.gg-form p {
  display: contents;
  margin: 0;
}

.gg-form br {
  display: none;
}

.gg-form__full {
  grid-column: 1 / -1;
}

/* Input Styles */
.gg-form input[type="text"],
.gg-form input[type="tel"],
.gg-form input[type="email"],
.gg-form select,
.gg-form textarea {
  width: 100%;
  padding: 12px 16px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--gg-border);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.gg-form textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.gg-form input::placeholder,
.gg-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.gg-form input:focus,
.gg-form select:focus,
.gg-form textarea:focus {
  border-color: rgba(255, 199, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 199, 0, 0.15);
}

/* Select Arrow */
.gg-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(255,255,255,0.5)' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* File Input */
.gg-form input[type="file"] {
  width: 100%;
  padding: 10px 16px;
  height: 48px;
  border-radius: 12px;
  border: 1px dashed var(--gg-border-hover);
  background: rgba(0, 0, 0, 0.15);
  color: var(--gg-text-muted);
  cursor: pointer;
}

.gg-form input[type="file"]::file-selector-button,
.gg-form input[type="file"]::-webkit-file-upload-button {
  margin-right: 12px;
  padding: 8px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--gg-yellow);
  color: var(--gg-purple-950);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}

/* Submit Button */
.gg-form input[type="submit"] {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 12px;
  padding: 14px 24px;
  background: var(--gg-yellow);
  color: var(--gg-purple-950);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 199, 0, 0.25);
  transition: all 0.2s ease;
}

.gg-form input[type="submit"]:hover {
  background: var(--gg-yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 199, 0, 0.35);
}

/* Consent Checkbox */
.gg-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  color: var(--gg-text);
}

.gg-form__consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.gg-form__consent a {
  color: var(--gg-yellow);
  text-decoration: none;
}

.gg-form__consent a:hover {
  text-decoration: underline;
}

/* CF7 Messages */
.wpcf7 form .wpcf7-response-output {
  border-radius: 12px;
  border-color: var(--gg-border) !important;
  color: #fff;
  padding: 16px;
  margin: 16px 0 0;
}

.wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-weight: 600;
  font-size: 12px;
  margin-top: 4px;
}

/* ===============================
   Choices.js (Select Dropdown)
   =============================== */
.gg-choices,
.choices {
  width: 100%;
}

.gg-choices .choices__inner,
.choices__inner {
  min-height: 48px;
  padding: 10px 44px 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--gg-border);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.gg-choices.is-focused .choices__inner,
.gg-choices.is-open .choices__inner,
.choices.is-focused .choices__inner,
.choices.is-open .choices__inner {
  border-color: rgba(255, 199, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 199, 0, 0.15);
}

.gg-choices .choices__list--single,
.choices__list--single {
  padding: 0;
}

.gg-choices .choices__item,
.choices__item {
  font-weight: 500;
  color: #fff;
}

/* Dropdown arrow */
.gg-choices[data-type*="select-one"]::after,
.choices[data-type*="select-one"]::after {
  border-color: rgba(255, 255, 255, 0.5) transparent transparent transparent;
  right: 16px;
}

/* Dropdown menu */
.gg-choices .choices__list--dropdown,
.gg-choices .choices__list[aria-expanded],
.choices__list--dropdown,
.choices__list[aria-expanded] {
  border-radius: 12px;
  border: 1px solid var(--gg-border);
  background: rgba(43, 6, 51, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  margin-top: 4px;
}

.gg-choices .choices__list--dropdown .choices__item,
.choices__list--dropdown .choices__item {
  padding: 12px 16px;
  font-weight: 500;
  color: var(--gg-text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gg-choices .choices__list--dropdown .choices__item:last-child,
.choices__list--dropdown .choices__item:last-child {
  border-bottom: 0;
}

.gg-choices .choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background: var(--gg-yellow) !important;
  color: var(--gg-purple-950) !important;
}

.gg-choices .choices__list--dropdown .choices__item.is-selected,
.choices__list--dropdown .choices__item.is-selected {
  background: rgba(255, 199, 0, 0.1);
}

/* ===============================
   Metrics Bar Section
   =============================== */
.gg-section--metrics {
  padding: 48px 0;
  background: var(--gg-purple-900);
}

.gg-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

@media (max-width: 980px) {
  .gg-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .gg-metrics-grid {
    grid-template-columns: 1fr;
  }
}

.gg-metric {
  padding: 0;
}

.gg-metric__value {
  font-size: 48px;
  font-weight: 800;
  color: var(--gg-yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.gg-metric__label {
  font-size: 14px;
  color: var(--gg-text-muted);
}

/* ===============================
   Section Styles
   =============================== */
.gg-section {
  padding: 80px 0;
}

.gg-section--alt {
  background: rgba(61, 16, 69, 0.3);
}

.gg-section__head {
  text-align: center;
  margin-bottom: 48px;
}

.gg-section__kicker {
  display: inline-block;
  color: var(--gg-yellow);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.gg-section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.gg-section__text {
  font-size: 16px;
  color: var(--gg-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===============================
   Categories Grid
   =============================== */
.gg-section--categories {
  padding: 80px 0;
}

.gg-cats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .gg-cats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gg-cats__grid {
    grid-template-columns: 1fr;
  }
}

.gg-cat {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 24px;
  border-radius: var(--gg-radius-md);
  border: 1px solid var(--gg-border);
  background: var(--gg-surface);
  transition: all 0.3s ease;
}

.gg-cat:hover {
  transform: translateY(-4px);
  border-color: var(--gg-border-hover);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.gg-cat__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 199, 0, 0.1);
  border: 1px solid rgba(255, 199, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.gg-cat__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.gg-cat:hover .gg-cat__icon {
  background: rgba(255, 199, 0, 0.15);
  transform: scale(1.05);
}

.gg-cat__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gg-text);
  margin-bottom: 8px;
}

.gg-cat__text {
  font-size: 14px;
  color: var(--gg-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ===============================
   Process (How It Works)
   =============================== */
.gg-section--process {
  padding: 80px 0;
  background: rgba(61, 16, 69, 0.3);
}

.gg-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

/* Connection line */
.gg-process::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255, 199, 0, 0.3), transparent);
}

@media (max-width: 980px) {
  .gg-process {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .gg-process::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .gg-process {
    grid-template-columns: 1fr;
  }
}

.gg-process__item {
  text-align: center;
  position: relative;
}

.gg-process__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gg-yellow);
  color: var(--gg-purple-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.gg-process__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 199, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.gg-process__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--gg-text);
}

.gg-process__text {
  font-size: 14px;
  color: var(--gg-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ===============================
   Benefits Section (Product UI)
   =============================== */
.gg-section--benefits {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--gg-purple-950);
}

.gg-benefits-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.gg-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Visual Column / Pattern */
.gg-benefits__visual {
  position: relative;
  height: 480px;
  width: 100%;
}

.gg-ui-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  /* Soft fade mask for edges - expanded for more clarity */
  mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 90%);
}

.gg-ui-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Subtle Dots Grid - increased opacity */
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 0);
  background-size: 32px 32px;
}

.gg-ui-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Network / Constellation Texture - increased opacity */
  background-image: url("data:image/svg+xml,%3Csvg width='240' height='240' viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg stroke='%23ffffff' stroke-opacity='0.1' stroke-width='0.5'%3E%3Cpath d='M40 40l160 40-40 120-120-40L40 40z'/%3E%3Cpath d='M40 40l120 120M200 80l-120 40'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Ccircle cx='40' cy='40' r='1.5'/%3E%3Ccircle cx='200' cy='80' r='1.5'/%3E%3Ccircle cx='160' cy='200' r='1.5'/%3E%3Ccircle cx='40' cy='160' r='1.5'/%3E%3C/g%3E%3Cg fill='%23FFC700' fill-opacity='0.3'%3E%3Ccircle cx='160' cy='120' r='1.2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 240px 240px;
}

/* Ghost UI Shapes */
.gg-ui-pattern-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
}

.gg-ui-pattern-shapes::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 10%;
  width: 200px;
  height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
  transform: rotate(-8deg);
}

.gg-benefit-v2 {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.gg-benefit-v2__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--gg-yellow);
  color: var(--gg-purple-950);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(255, 199, 0, 0.2);
}

.gg-benefit-v2__icon svg {
  width: 18px;
  height: 18px;
}

.gg-benefit-v2__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}

.gg-benefit-v2__text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

@media (max-width: 1024px) {
  .gg-benefits-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .gg-benefits__visual {
    height: 320px;
    order: 2;
  }
}

@media (max-width: 640px) {
  .gg-section--benefits {
    padding: 80px 0;
  }
}

/* ===============================
   CTA Section
   =============================== */
.gg-section--cta {
  padding: 32px 0 64px;
}

.gg-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  align-items: stretch;
  border-radius: var(--gg-radius-lg);
  background: var(--gg-purple-900);
  border: 1px solid var(--gg-border);
  overflow: hidden;
  max-width: var(--gg-container);
  margin: 0 auto;
}

@media (max-width: 980px) {
  .gg-cta {
    grid-template-columns: 1fr;
  }
}

.gg-cta__content {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gg-cta__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.2;
}

.gg-cta__text {
  font-size: 14px;
  color: var(--gg-text-muted);
  margin: 0 0 20px;
  line-height: 1.6;
}

.gg-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gg-cta__image {
  width: 220px;
  position: relative;
  overflow: hidden;
}

.gg-cta__image-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.gg-cta__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent, var(--gg-purple-900));
}

@media (max-width: 980px) {
  .gg-cta__image {
    display: none;
  }
  
  .gg-cta__content {
    padding: 24px;
  }
}

/* ===============================
   Stats Overlap Section (Legacy)
   =============================== */
.gg-section--stats-overlap {
  padding: 48px 0;
  background: var(--gg-purple-900);
}

.gg-section--stats-overlap .gg-container {
  max-width: var(--gg-container);
  margin: 0 auto;
  padding: 0 24px;
}

.gg-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

@media (max-width: 980px) {
  .gg-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .gg-stats {
    grid-template-columns: 1fr;
  }
}

.gg-stat {
  padding: 0;
  background: transparent;
  border: 0;
}

.gg-stat__value {
  font-size: 48px;
  font-weight: 800;
  color: var(--gg-yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.gg-stat__label {
  font-size: 14px;
  color: var(--gg-text-muted);
}

/* ===============================
   Testimonials
   =============================== */
.gg-section--testimonials {
  padding: 80px 0;
  background: rgba(61, 16, 69, 0.2);
}

.gg-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 980px) {
  .gg-testimonials {
    grid-template-columns: 1fr;
  }
}

.gg-testimonial {
  padding: 24px;
  border-radius: var(--gg-radius-md);
  background: var(--gg-surface);
  border: 1px solid var(--gg-border);
  transition: all 0.3s ease;
}

.gg-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.gg-testimonial__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gg-text);
  margin: 0 0 20px;
  font-style: italic;
}

.gg-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gg-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gg-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.gg-testimonial__name {
  font-weight: 700;
  color: var(--gg-text);
  font-size: 14px;
}

.gg-testimonial__role {
  font-size: 12px;
  color: var(--gg-text-muted);
  margin-top: 2px;
}

/* ===============================
   FAQ Section
   =============================== */
.gg-section--faq {
  padding: 80px 0;
}

.gg-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gg-acc {
  border: 1px solid var(--gg-border);
  background: var(--gg-surface);
  border-radius: var(--gg-radius-md);
  padding: 0;
  overflow: hidden;
}

.gg-acc__sum {
  padding: 20px 24px;
  cursor: pointer;
  color: var(--gg-text);
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s ease;
}

.gg-acc__sum::-webkit-details-marker {
  display: none;
}

.gg-acc__sum::after {
  content: '+';
  font-size: 20px;
  color: var(--gg-yellow);
  font-weight: 400;
}

.gg-acc[open] .gg-acc__sum::after {
  content: '−';
}

.gg-acc__sum:hover {
  background: var(--gg-glass);
}

.gg-acc__body {
  padding: 0 24px 20px;
  color: var(--gg-text-muted);
  line-height: 1.6;
  font-size: 14px;
}

/* ===============================
   Grid Utilities
   =============================== */
.gg-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 980px) {
  .gg-grid2 {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   Cards
   =============================== */
.gg-card {
  padding: 24px;
  border-radius: var(--gg-radius-md);
  background: var(--gg-surface);
  border: 1px solid var(--gg-border);
  transition: all 0.3s ease;
}

.gg-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.gg-card__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.gg-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--gg-text);
}

/* ===============================
   Icon Placeholder
   =============================== */
.gg-icon-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 199, 0, 0.1);
  border: 1px solid rgba(255, 199, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* ===============================
   Image Placeholder
   =============================== */
.gg-image-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gg-surface);
  border: 1px dashed var(--gg-border);
  border-radius: var(--gg-radius-md);
  min-height: 200px;
}

.gg-image-placeholder__icon {
  font-size: 48px;
  opacity: 0.4;
}

/* ===============================
   Modal
   =============================== */
.gg-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.gg-modal.is-open {
  display: block;
}

.gg-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gg-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100% - 32px));
  margin: 40px auto;
  border-radius: var(--gg-radius-xl);
  border: 1px solid var(--gg-border);
  background: #1e0424;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
}

.gg-modal__content {
  padding: 48px 32px 32px;
  overflow-y: auto;
  flex: 1;
}

.gg-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.gg-modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Modal-specific overrides */
.gg-modal .gg-form label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8) !important;
}

.gg-modal .gg-form__grid {
  gap: 12px !important;
}

@media (max-width: 500px) {
  .gg-modal__dialog {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    max-height: 100vh;
  }
  .gg-modal .gg-form__grid {
    grid-template-columns: 1fr !important;
  }
  .gg-modal__content {
    padding: 60px 20px 32px;
  }
}

.gg-modal .gg-form input:not([type="submit"]),
.gg-modal .gg-form select,
.gg-modal .gg-form textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.gg-modal .gg-form input:focus {
  border-color: var(--gg-yellow) !important;
}

/* ===============================
   Internal Page Elements
   =============================== */
.gg-hero__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.gg-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.gg-feature-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 199, 0, 0.1);
  border: 1px solid rgba(255, 199, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gg-yellow);
}

.gg-feature-item__text strong {
  display: block;
  font-size: 15px;
  color: var(--gg-text);
  margin-bottom: 2px;
}

.gg-feature-item__text span {
  font-size: 13px;
  color: var(--gg-text-muted);
}

/* Internal Page Cards */
.gg-infocard {
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gg-infocard__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 199, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gg-yellow);
}

.gg-infocard__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Packages Grid */
.gg-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .gg-packages {
    grid-template-columns: 1fr;
  }
}

.gg-pkg {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.gg-pkg:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 199, 0, 0.3);
}

.gg-pkg.is-featured {
  border-color: var(--gg-yellow);
  background: rgba(255, 199, 0, 0.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gg-pkg__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gg-yellow);
  color: var(--gg-purple-950);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.gg-pkg__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.gg-pkg__title {
  font-size: 20px;
  font-weight: 700;
}

.gg-pkg__price {
  font-size: 32px;
  font-weight: 800;
  color: var(--gg-yellow);
}

.gg-pkg__meta {
  font-size: 13px;
  color: var(--gg-text-muted);
  margin-bottom: 20px;
}

.gg-pkg__desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 32px;
  flex: 1;
}

/* ===============================
   Notes
   =============================== */
.gg-note {
  padding: 16px 20px;
  border-radius: var(--gg-radius-md);
  background: var(--gg-surface);
  border: 1px dashed var(--gg-border);
  font-size: 14px;
  color: var(--gg-text-muted);
  margin-top: 24px;
}

.gg-note b {
  color: var(--gg-text);
}

/* ===============================
   Lists
   =============================== */
.gg-list {
  margin: 0;
  padding-left: 20px;
  color: var(--gg-text-muted);
  line-height: 1.6;
  font-size: 14px;
}

.gg-list li {
  margin: 8px 0;
}

/* ===============================
   Page Hero
   =============================== */
.gg-pagehero {
  padding: calc(var(--gg-header-h) + 32px) 0 32px;
}

.gg-pagehero .gg-container {
  padding: 32px;
  border-radius: var(--gg-radius-lg);
  background: var(--gg-surface);
  border: 1px solid var(--gg-border);
}

.gg-pagehero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gg-glass);
  border: 1px solid var(--gg-border);
  font-size: 13px;
  color: var(--gg-text-muted);
  margin-bottom: 16px;
}

.gg-pagehero__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
}

.gg-pagehero__text {
  font-size: 16px;
  color: var(--gg-text-muted);
  max-width: 700px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.gg-pagehero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gg-pagehero__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

@media (max-width: 980px) {
  .gg-pagehero__badges {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   Contact Page
   =============================== */
.page-template-page-contact-us-php .gg-main {
  padding-top: 0;
}

/* ===============================
   Override for internal pages with hero
   =============================== */
body:has(.gg-hero) .gg-main {
  padding-top: var(--gg-header-h) !important;
}

/* ===============================
   Pills (Legacy)
   =============================== */
.gg-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.gg-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gg-glass);
  border: 1px solid var(--gg-border);
  font-size: 12px;
  font-weight: 600;
  color: var(--gg-text);
}

/* ===============================
   Legacy Hero Actions/Metrics
   =============================== */
.gg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.gg-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--gg-radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
}

.gg-hero__btn--primary {
  background: var(--gg-yellow);
  color: var(--gg-purple-950);
  box-shadow: 0 4px 20px rgba(255, 199, 0, 0.25);
}

.gg-hero__btn--primary:hover {
  background: var(--gg-yellow-hover);
  transform: translateY(-1px);
}

.gg-hero__btn--ghost {
  background: var(--gg-glass);
  border: 1px solid var(--gg-border);
  color: var(--gg-text);
}

.gg-hero__btn--ghost:hover {
  background: var(--gg-glass-hover);
}

.gg-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 980px) {
  .gg-metrics {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   Scrolled Header State
   =============================== */
.gg-header.is-scrolled {
  background: rgba(43, 6, 51, 0.95);
}

/* ===============================
   Background Pattern (Figma Style)
   =============================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFC700' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.5;
}

/* ===============================
   Category Table (Detailed)
   =============================== */
.gg-cattable {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 1100px) {
  .gg-cattable {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gg-cattable {
    grid-template-columns: 1fr;
  }
}

.gg-cattable__item {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--gg-radius-md);
  border: 1px solid var(--gg-border);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gg-cattable__item:hover {
  border-color: rgba(255, 199, 0, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 199, 0, 0.05);
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
}

.gg-cattable__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 199, 0, 0.1);
  border: 1px solid rgba(255, 199, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gg-yellow);
}

.gg-cattable__icon svg {
  width: 24px;
  height: 24px;
}

.gg-cattable__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--gg-text);
}

.gg-cattable__desc {
  font-size: 14px;
  color: var(--gg-text-muted);
  line-height: 1.5;
  margin: 0 0 16px;
}

.gg-cattable__platforms {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  flex: 1;
}

.gg-cattable__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gg-text-muted);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.gg-cattable__platforms a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 4px 0;
  display: block;
}

.gg-cattable__platforms a:hover {
  color: var(--gg-yellow);
  transform: translateX(4px);
}

.gg-cattable__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  margin-top: auto;
  padding: 8px 8px 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
}

.gg-cattable__link:hover {
  background: rgba(255, 199, 0, 0.1);
  border-color: var(--gg-yellow);
  color: var(--gg-yellow);
}

.gg-cattable__link:active {
  transform: scale(0.98);
}

.gg-cattable__link::after {
  content: '→';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s ease;
}

.gg-cattable__link:hover::after {
  background: var(--gg-yellow);
  color: var(--gg-purple-950);
  transform: rotate(-45deg);
}

/* ===============================
   SVG Icons in Process & Benefits
   =============================== */
.gg-process__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 199, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gg-yellow);
}

.gg-process__icon svg {
  width: 24px;
  height: 24px;
}

.gg-benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 199, 0, 0.1);
  border: 1px solid rgba(255, 199, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gg-yellow);
}

.gg-benefit__icon svg {
  width: 24px;
  height: 24px;
}
