/* ============================================================
   GANTALECT — MODERN BLUE REFINEMENT
   Builds on the existing blue brand (#286dec).
   Light, clean, clearly communicates what the business does.
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --gc-blue:        #286dec;
  --gc-blue-lt:     #4A8DF5;
  --gc-blue-dk:     #1550BF;
  --gc-navy:        #0D1E3D;
  --gc-navy-lt:     #1A2B4A;
  --gc-bg:          #F7F9FC;
  --gc-white:       #FFFFFF;
  --gc-surface:     #EEF3FC;
  --gc-border:      #D8E4F9;
  --gc-border-lt:   #EAF0FC;
  --gc-text:        #1A2B4A;
  --gc-text-dim:    #5E718D;
  --gc-text-light:  #94A3BC;
  --gc-serif:       'DM Serif Display', Georgia, serif;
  --gc-sans:        'DM Sans', system-ui, sans-serif;
  --gc-mono:        'JetBrains Mono', monospace;
  --gc-ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gc-shadow-sm:   0 1px 3px rgba(13,30,61,0.08), 0 1px 2px rgba(13,30,61,0.06);
  --gc-shadow:      0 4px 16px rgba(13,30,61,0.10), 0 1px 4px rgba(13,30,61,0.06);
  --gc-shadow-lg:   0 12px 40px rgba(13,30,61,0.14);
}

/* ── Global ── */
body {
  background: var(--gc-bg) !important;
  color: var(--gc-text) !important;
  font-family: var(--gc-sans) !important;
}

.page-wrapper {
  background: var(--gc-bg) !important;
}

/* ── NAV ── */
.gc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gc-border);
  transition: box-shadow 0.3s var(--gc-ease);
}

.gc-nav.is-sticky {
  box-shadow: var(--gc-shadow);
}

.gc-nav__logo img {
  height: 34px;
  width: auto;
}

.gc-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gc-nav__links a {
  font-family: var(--gc-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--gc-text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.gc-nav__links a:hover,
.gc-nav__links a.nuxt-link-exact-active {
  color: var(--gc-blue);
}

.gc-nav__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--gc-blue);
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.gc-nav__cta-btn:hover {
  background: var(--gc-blue-dk) !important;
  transform: translateY(-1px);
  color: #fff !important;
  text-decoration: none;
}

.gc-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.gc-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gc-navy);
  border-radius: 2px;
  transition: 0.2s;
}

.gc-nav__mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--gc-white);
  border-bottom: 1px solid var(--gc-border);
  box-shadow: var(--gc-shadow);
  padding: 28px 48px;
  z-index: 9998;
}

.gc-nav__mobile.is-open { display: block; }

.gc-nav__mobile ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gc-nav__mobile ul a {
  font-size: 17px;
  font-weight: 500;
  color: var(--gc-text);
  text-decoration: none;
  transition: color 0.2s;
}

.gc-nav__mobile ul a:hover { color: var(--gc-blue); }

/* ── HERO ── */
.gc-hero {
  position: relative;
  padding: 130px 0 80px;
  background: var(--gc-white);
  overflow: hidden;
}

/* Soft blue gradient background */
.gc-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(40,109,236,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.gc-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(40,109,236,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.gc-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gc-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 8px;
  background: rgba(40,109,236,0.08);
  border: 1px solid rgba(40,109,236,0.18);
  border-radius: 99px;
  font-family: var(--gc-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gc-blue);
  margin-bottom: 24px;
}

.gc-hero__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gc-blue);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.gc-hero__headline {
  font-family: var(--gc-serif) !important;
  font-size: clamp(40px, 5vw, 72px) !important;
  font-weight: 400 !important;
  line-height: 1.08 !important;
  color: var(--gc-navy) !important;
  letter-spacing: -0.02em;
  margin-bottom: 24px !important;
}

.gc-hero__headline span {
  color: var(--gc-blue);
  font-style: italic;
}

.gc-hero__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gc-text-dim);
  margin-bottom: 40px;
  max-width: 480px;
}

.gc-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.gc-btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--gc-blue);
  color: #fff !important;
  font-family: var(--gc-sans);
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(40,109,236,0.30);
}

.gc-btn--primary:hover {
  background: var(--gc-blue-dk) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(40,109,236,0.38);
  color: #fff !important;
  text-decoration: none;
}

.gc-btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid var(--gc-border);
  color: var(--gc-text) !important;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
}

.gc-btn--ghost:hover {
  border-color: var(--gc-blue);
  color: var(--gc-blue) !important;
  text-decoration: none;
}

/* Hero proof bar */
.gc-hero__proof {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gc-border-lt);
}

.gc-proof-item__num {
  font-family: var(--gc-serif);
  font-size: 30px;
  color: var(--gc-navy);
  line-height: 1;
  margin-bottom: 2px;
}

.gc-proof-item__num sup {
  font-size: 16px;
  vertical-align: super;
}

.gc-proof-item__label {
  font-size: 12px;
  color: var(--gc-text-light);
  letter-spacing: 0.03em;
}

/* Hero right: service snapshot */
.gc-hero__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gc-hero-service {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--gc-white);
  border: 1px solid var(--gc-border);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: var(--gc-shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.gc-hero-service::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gc-blue);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s var(--gc-ease);
}

.gc-hero-service:hover {
  transform: translateX(4px);
  box-shadow: var(--gc-shadow);
  border-color: rgba(40,109,236,0.25);
  text-decoration: none;
}

.gc-hero-service:hover::before {
  transform: scaleY(1);
}

.gc-hero-service__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(40,109,236,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--gc-blue);
  transition: background 0.2s;
}

.gc-hero-service:hover .gc-hero-service__icon {
  background: rgba(40,109,236,0.14);
}

.gc-hero-service__text { flex: 1; }

.gc-hero-service__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gc-navy) !important;
  margin: 0 0 2px !important;
  line-height: 1.3;
}

.gc-hero-service__desc {
  font-size: 12px;
  color: var(--gc-text-dim);
  line-height: 1.4;
  margin: 0;
}

.gc-hero-service__arrow {
  font-size: 16px;
  color: var(--gc-text-light);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}

.gc-hero-service:hover .gc-hero-service__arrow {
  color: var(--gc-blue);
  transform: translateX(2px);
}

/* ── SECTION COMMONS ── */
.gc-section {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}

.gc-section--alt {
  background: var(--gc-bg);
}

.gc-section--white {
  background: var(--gc-white);
}

.gc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.gc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: var(--gc-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gc-blue);
}

.gc-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gc-blue);
  border-radius: 2px;
}

.gc-heading {
  font-family: var(--gc-serif) !important;
  font-size: clamp(28px, 3.5vw, 46px) !important;
  font-weight: 400 !important;
  line-height: 1.18 !important;
  color: var(--gc-navy) !important;
  letter-spacing: -0.01em;
}

.gc-heading em {
  font-style: italic;
  color: var(--gc-blue);
}

/* ── SERVICES ── */
.gc-services {
  padding: 96px 0;
  background: var(--gc-bg);
  position: relative;
  z-index: 1;
}

.gc-services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.gc-services__desc {
  font-size: 16px;
  line-height: 1.72;
  color: var(--gc-text-dim);
}

.gc-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gc-service-card {
  display: block;
  background: var(--gc-white);
  border: 1px solid var(--gc-border);
  border-radius: 12px;
  padding: 32px 28px 28px;
  text-decoration: none;
  box-shadow: var(--gc-shadow-sm);
  transition: transform 0.25s var(--gc-ease), box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.gc-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gc-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--gc-ease);
  border-radius: 12px 12px 0 0;
}

.gc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gc-shadow-lg);
  border-color: rgba(40,109,236,0.2);
  text-decoration: none;
}

.gc-service-card:hover::after {
  transform: scaleX(1);
}

.gc-service-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(40,109,236,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--gc-blue);
  transition: background 0.2s;
}

.gc-service-card:hover .gc-service-card__icon-wrap {
  background: rgba(40,109,236,0.14);
}

.gc-service-card__title {
  font-family: var(--gc-sans) !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  color: var(--gc-navy) !important;
  margin: 0 0 10px !important;
  line-height: 1.3 !important;
}

.gc-service-card__desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--gc-text-dim);
  margin: 0 0 20px !important;
}

.gc-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gc-blue);
  letter-spacing: 0.03em;
  transition: gap 0.2s;
}

.gc-service-card:hover .gc-service-card__link {
  gap: 8px;
}

/* ── ABOUT ── */
.gc-about {
  padding: 96px 0;
  background: var(--gc-white);
  position: relative;
  z-index: 1;
}

.gc-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.gc-about__img-wrap {
  position: relative;
}

.gc-about__img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: var(--gc-shadow-lg);
}

.gc-about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 108px;
  height: 108px;
  background: var(--gc-blue);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--gc-shadow-lg);
}

.gc-about__badge-num {
  font-family: var(--gc-serif);
  font-size: 30px;
  color: #fff;
  line-height: 1;
}

.gc-about__badge-label {
  font-family: var(--gc-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.gc-about__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gc-text-dim);
  margin: 20px 0 28px;
}

.gc-about__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gc-about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gc-text-dim);
  line-height: 1.5;
}

.gc-about__list li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(40,109,236,0.10);
  border: 1.5px solid rgba(40,109,236,0.25);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23286dec' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* ── AGENCY / TABS ── */
.gc-agency {
  padding: 96px 0;
  background: var(--gc-bg);
  position: relative;
  z-index: 1;
}

.gc-agency__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.gc-tabs { margin-top: 36px; }

.gc-tabs__triggers {
  display: flex;
  gap: 4px;
  background: var(--gc-white);
  border: 1px solid var(--gc-border);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 24px;
}

.gc-tabs__trigger {
  flex: 1;
  padding: 9px 12px;
  font-family: var(--gc-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--gc-text-dim);
  cursor: pointer;
  border-radius: 6px;
  background: none;
  border: none;
  transition: background 0.2s, color 0.2s;
  text-align: center;
  user-select: none;
}

.gc-tabs__trigger:hover { color: var(--gc-navy); }

.gc-tabs__trigger.is-active {
  background: var(--gc-blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(40,109,236,0.25);
}

.gc-tabs__panel {
  display: none;
  font-size: 16px;
  line-height: 1.75;
  color: var(--gc-text-dim);
  animation: fadeTab 0.3s var(--gc-ease);
}

.gc-tabs__panel.is-active { display: block; }

@keyframes fadeTab {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gc-agency__quote {
  font-size: 15px;
  font-style: italic;
  color: var(--gc-text-dim);
  padding: 16px 20px;
  border-left: 3px solid var(--gc-blue);
  background: rgba(40,109,236,0.04);
  border-radius: 0 6px 6px 0;
  margin-bottom: 24px;
  line-height: 1.6;
}

.gc-agency__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 28px;
  display: block;
  box-shadow: var(--gc-shadow);
}

.gc-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gc-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gc-navy);
}

.gc-features-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gc-blue);
  flex-shrink: 0;
}

.gc-agency__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gc-text-dim);
}

/* ── CTA ── */
.gc-cta {
  padding: 80px 0;
  background: var(--gc-white);
  position: relative;
  z-index: 1;
}

.gc-cta__inner {
  background: linear-gradient(135deg, #0D1E3D 0%, #1a3a8a 100%);
  border-radius: 16px;
  padding: 64px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--gc-shadow-lg);
}

.gc-cta__inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(40,109,236,0.3);
  filter: blur(60px);
  pointer-events: none;
}

.gc-cta__inner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(74,141,245,0.15);
  filter: blur(50px);
  pointer-events: none;
}

.gc-cta__heading {
  font-family: var(--gc-serif) !important;
  font-size: clamp(26px, 3vw, 42px) !important;
  font-weight: 400 !important;
  color: #fff !important;
  line-height: 1.2 !important;
  position: relative;
  z-index: 1;
  margin: 0 !important;
}

.gc-cta__heading em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}

.gc-cta__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.gc-cta__actions {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.gc-btn--white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #fff;
  color: #0D1E3D !important;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.gc-btn--white:hover {
  background: var(--gc-surface);
  transform: translateY(-1px);
  color: #0D1E3D !important;
  text-decoration: none;
}

/* ── FOOTER ── */
.gc-footer {
  background: #0D1E3D !important;
  padding: 72px 0 0;
  position: relative;
  z-index: 1;
}

.gc-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gc-footer__logo-img {
  height: 30px;
  width: auto;
  margin-bottom: 18px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.gc-footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  max-width: 240px;
}

.gc-footer__social {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gc-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.gc-footer__social a:hover {
  background: var(--gc-blue);
  border-color: var(--gc-blue);
  color: #fff;
}

.gc-footer__col-label {
  font-family: var(--gc-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

.gc-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gc-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.gc-footer__links a:hover {
  color: rgba(255,255,255,0.9);
}

.gc-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
  line-height: 1.5;
}

.gc-footer__contact-item:hover {
  color: rgba(255,255,255,0.9);
}

.gc-footer__contact-item i {
  color: var(--gc-blue-lt);
  margin-top: 2px;
  flex-shrink: 0;
}

.gc-footer__credits a {
  display: block;
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  margin-bottom: 6px;
  line-height: 1.5;
  transition: color 0.2s;
}

.gc-footer__credits a:hover {
  color: rgba(255,255,255,0.6);
}

.gc-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.gc-footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  font-family: var(--gc-mono);
  letter-spacing: 0.04em;
}

.gc-footer__made {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  font-family: var(--gc-mono);
}

.gc-footer__made span {
  color: var(--gc-blue-lt);
}

/* ── SCROLL TO TOP ── */
.scroll-to-top {
  background: var(--gc-blue) !important;
  border-color: var(--gc-blue) !important;
  color: #fff !important;
  border-radius: 8px !important;
  width: 42px !important;
  height: 42px !important;
  line-height: 42px !important;
  box-shadow: 0 4px 12px rgba(40,109,236,0.35) !important;
}

.scroll-to-top:hover {
  background: var(--gc-blue-dk) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .gc-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gc-hero__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gc-services__header { grid-template-columns: 1fr; gap: 20px; }

  .gc-services__grid { grid-template-columns: repeat(2, 1fr); }

  .gc-about__inner,
  .gc-agency__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gc-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .gc-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 48px 36px;
  }
}

@media (max-width: 768px) {
  .gc-nav { padding: 0 20px; }
  .gc-nav__links { display: none; }
  .gc-nav__hamburger { display: flex; }

  .gc-hero__inner { padding: 0 20px; }
  .gc-hero__right { grid-template-columns: 1fr; }
  .gc-container { padding: 0 20px; }

  .gc-services__grid { grid-template-columns: 1fr; }
  .gc-footer__inner { grid-template-columns: 1fr; }
  .gc-features-list { grid-template-columns: 1fr; }
  .gc-nav__mobile { padding: 20px; }
  .gc-about__badge { width: 88px; height: 88px; bottom: -12px; right: -12px; }
}

/* ── ENTRANCE ANIMATIONS ── */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gc-hero__tag      { animation: revealUp 0.5s var(--gc-ease) 0.1s both; }
.gc-hero__headline { animation: revealUp 0.6s var(--gc-ease) 0.2s both; }
.gc-hero__sub      { animation: revealUp 0.6s var(--gc-ease) 0.35s both; }
.gc-hero__actions  { animation: revealUp 0.6s var(--gc-ease) 0.5s both; }
.gc-hero__proof    { animation: revealUp 0.6s var(--gc-ease) 0.6s both; }
.gc-hero__right    { animation: revealUp 0.7s var(--gc-ease) 0.4s both; }

/* ============================================================
   DARK MODE — data-theme="dark" on <html>
   ============================================================ */
html[data-theme="dark"] {
  --gc-bg:          #0B0F1E;
  --gc-white:       #111827;
  --gc-surface:     #0F1523;
  --gc-card:        #141D30;
  --gc-border:      #1E2D47;
  --gc-border-lt:   #182038;
  --gc-text:        #DCE5F5;
  --gc-text-dim:    #7B8DAD;
  --gc-text-light:  #4A5C7A;
  --gc-navy:        #DCE5F5;
  --gc-navy-lt:     #B8CAE8;
  --gc-shadow-sm:   0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --gc-shadow:      0 4px 16px rgba(0,0,0,0.45);
  --gc-shadow-lg:   0 12px 40px rgba(0,0,0,0.55);
}

/* Nav */
html[data-theme="dark"] .gc-nav {
  background: rgba(11, 15, 30, 0.92);
  border-bottom-color: var(--gc-border);
}

html[data-theme="dark"] .gc-nav__mobile {
  background: #111827;
  border-bottom-color: var(--gc-border);
}

/* Hero */
html[data-theme="dark"] .gc-hero {
  background: var(--gc-bg);
}

html[data-theme="dark"] .gc-hero::before {
  background: radial-gradient(circle, rgba(40,109,236,0.14) 0%, transparent 65%);
}

html[data-theme="dark"] .gc-hero-service {
  background: var(--gc-white);
  border-color: var(--gc-border);
}

html[data-theme="dark"] .gc-hero-service:hover {
  background: var(--gc-card);
  border-color: rgba(40,109,236,0.35);
}

html[data-theme="dark"] .gc-hero-service__title {
  color: var(--gc-text) !important;
}

/* Services */
html[data-theme="dark"] .gc-services {
  background: var(--gc-surface);
}

html[data-theme="dark"] .gc-service-card {
  background: var(--gc-white);
  border-color: var(--gc-border);
}

html[data-theme="dark"] .gc-service-card:hover {
  background: var(--gc-card);
}

html[data-theme="dark"] .gc-service-card__title {
  color: var(--gc-text) !important;
}

/* About */
html[data-theme="dark"] .gc-about {
  background: var(--gc-bg);
}

/* Agency */
html[data-theme="dark"] .gc-agency {
  background: var(--gc-surface);
}

html[data-theme="dark"] .gc-tabs__triggers {
  background: var(--gc-bg);
  border-color: var(--gc-border);
}

html[data-theme="dark"] .gc-tabs__trigger:hover {
  color: var(--gc-text);
}

html[data-theme="dark"] .gc-agency__quote {
  background: rgba(40,109,236,0.06);
}

/* CTA — keep gradient dark (can't use --gc-navy which is now a light text colour) */
html[data-theme="dark"] .gc-cta {
  background: var(--gc-bg);
}

html[data-theme="dark"] .gc-cta__inner {
  background: linear-gradient(135deg, #07101F 0%, #0E2260 100%);
}

html[data-theme="dark"] .gc-btn--white {
  background: rgba(255,255,255,0.08);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: none;
}

html[data-theme="dark"] .gc-btn--white:hover {
  background: rgba(255,255,255,0.14);
  color: #fff !important;
  transform: translateY(-1px);
}

/* Footer — hardcode the navy so it never goes pale */
html[data-theme="dark"] .gc-footer {
  background: #060E1C !important;
  border-top-color: rgba(255,255,255,0.05);
}

/* ── OLD TEMPLATE SECTIONS — dark mode overrides ──────────────────
   These components still use style.css class names with hardcoded
   white/light backgrounds. Override them all here.
   ──────────────────────────────────────────────────────────────── */

/* ── Global section backgrounds ── */
html[data-theme="dark"] .discover-section,
html[data-theme="dark"] .about-section,
html[data-theme="dark"] .live-section,
html[data-theme="dark"] .we-do-section,
html[data-theme="dark"] .we-work-section,
html[data-theme="dark"] .team-section,
html[data-theme="dark"] .service-details,
html[data-theme="dark"] .services-page-section {
  background: var(--gc-bg) !important;
}

html[data-theme="dark"] .testimonials-section,
html[data-theme="dark"] .sponsors-section-two,
html[data-theme="dark"] .faq-section,
html[data-theme="dark"] .contact-section,
html[data-theme="dark"] .map-section {
  background: var(--gc-surface) !important;
  border-top-color: var(--gc-border) !important;
}

/* ── Section title headings ── */
html[data-theme="dark"] .sec-title h2,
html[data-theme="dark"] .sec-title h3 {
  color: var(--gc-text) !important;
}

html[data-theme="dark"] .sec-title .lower-text,
html[data-theme="dark"] .sec-title .upper-text {
  color: var(--gc-text-dim) !important;
}

/* ── Discover section caption boxes ── */
html[data-theme="dark"] .discover-block .cap-inner h5 {
  color: #fff !important;
}

/* ── Testimonials ── */
html[data-theme="dark"] .testi-block .inner {
  background: var(--gc-card) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35) !important;
  border: 1px solid var(--gc-border) !important;
}

html[data-theme="dark"] .testi-block .text {
  color: var(--gc-text-dim) !important;
}

html[data-theme="dark"] .testi-block .info .name {
  color: var(--gc-text) !important;
}

html[data-theme="dark"] .testi-block .info .designation {
  color: var(--gc-text-dim) !important;
}

html[data-theme="dark"] .testi-block:hover .inner {
  background: var(--gc-blue) !important;
}

html[data-theme="dark"] .testi-block:hover .icon {
  color: rgba(255,255,255,0.4) !important;
}

html[data-theme="dark"] .testi-block:hover .text {
  color: rgba(255,255,255,0.9) !important;
}

html[data-theme="dark"] .testi-block:hover .info .name {
  color: #fff !important;
}

html[data-theme="dark"] .testi-block:hover .info .designation {
  color: rgba(255,255,255,0.7) !important;
}

/* ── Tech stack / sponsors logos ── */

/* Light mode: the template sets opacity 0.2 (barely visible) — override to legible */
.sponsors-section-two .image-box img {
  opacity: 0.75 !important;
}
.sponsors-section-two .image-box img:hover {
  opacity: 1 !important;
}

/* Dark mode: mix-blend-mode: screen removes white backgrounds naturally
   without flattening logos to a solid white block */
html[data-theme="dark"] .sponsors-section-two .image-box img {
  mix-blend-mode: screen;
  filter: brightness(1.6) saturate(0.7);
  opacity: 0.75 !important;
}

html[data-theme="dark"] .sponsors-section-two .image-box img:hover {
  opacity: 1 !important;
  filter: brightness(2) saturate(1);
}

/* ── About section (old template) ── */
html[data-theme="dark"] .about-section .text-column .lower-text,
html[data-theme="dark"] .about-section .text-column .text p {
  color: var(--gc-text-dim) !important;
}

html[data-theme="dark"] .about-section .text-column ul li {
  color: var(--gc-text-dim) !important;
  border-color: var(--gc-border) !important;
}

html[data-theme="dark"] .about-section .text-column .since .txt {
  color: var(--gc-text) !important;
}

/* ── Page header banner (inner pages) ── */
/* Already dark (black bg + image overlay) but shapes may be white */
html[data-theme="dark"] .page-banner .shape-1,
html[data-theme="dark"] .page-banner .shape-2 {
  opacity: 0.08;
}

/* ── Call to action variants (old template) ── */
html[data-theme="dark"] .call-to-section,
html[data-theme="dark"] .call-to-section-two {
  background: #07101F !important;
}

/* ── Service blocks (inner service pages) ── */
html[data-theme="dark"] .service-block .inner-box {
  background: var(--gc-card) !important;
  border-color: var(--gc-border) !important;
}

html[data-theme="dark"] .service-block .inner-box h6,
html[data-theme="dark"] .service-block .inner-box h6 a {
  color: var(--gc-text) !important;
}

/* ── FAQ section ── */
html[data-theme="dark"] .accordion-box .block {
  background: var(--gc-card) !important;
  border-color: var(--gc-border) !important;
}

html[data-theme="dark"] .accordion-box .block .acc-btn {
  color: var(--gc-text) !important;
  background: var(--gc-card) !important;
}

html[data-theme="dark"] .accordion-box .block .acc-content .content-text {
  color: var(--gc-text-dim) !important;
}

/* ── Contact form ── */
html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea,
html[data-theme="dark"] .contact-form select {
  background: var(--gc-card) !important;
  border-color: var(--gc-border) !important;
  color: var(--gc-text) !important;
}

html[data-theme="dark"] .contact-form input::placeholder,
html[data-theme="dark"] .contact-form textarea::placeholder {
  color: var(--gc-text-light) !important;
}

/* ── General body text in old template sections ── */
html[data-theme="dark"] .text-column p,
html[data-theme="dark"] .content-column p {
  color: var(--gc-text-dim) !important;
}

html[data-theme="dark"] h1, html[data-theme="dark"] h2,
html[data-theme="dark"] h3, html[data-theme="dark"] h4,
html[data-theme="dark"] h5, html[data-theme="dark"] h6 {
  color: var(--gc-text);
}

/* ── Parallax section text ── */
html[data-theme="dark"] .parallax-section h2,
html[data-theme="dark"] .parallax-section h3 {
  color: #fff !important;
}

/* Brands/sponsors area */
html[data-theme="dark"] .sponsors-section,
html[data-theme="dark"] .brands-section {
  background: var(--gc-surface) !important;
  border-color: var(--gc-border) !important;
}

/* Page wrapper */
html[data-theme="dark"] body {
  background: var(--gc-bg) !important;
}

html[data-theme="dark"] .page-wrapper {
  background: var(--gc-bg) !important;
}

/* Transition for smooth theme switch */
html.gc-theme-transition,
html.gc-theme-transition *,
html.gc-theme-transition *::before,
html.gc-theme-transition *::after {
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.2s ease,
    box-shadow 0.3s ease !important;
}

/* ── DARK MODE TOGGLE BUTTON ── */
.gc-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1.5px solid var(--gc-border);
  background: transparent;
  cursor: pointer;
  color: var(--gc-text-dim);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}

.gc-theme-toggle:hover {
  background: var(--gc-surface);
  border-color: var(--gc-blue);
  color: var(--gc-blue);
}

.gc-theme-toggle svg { display: block; }

/* ── SCROLL PROGRESS BAR ── */
.gc-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gc-blue) 0%, var(--gc-blue-lt) 100%);
  z-index: 10000;
  transition: width 0.1s linear;
  transform-origin: left;
}

/* ── FLOATING QUOTE BUTTON ── */
.gc-float-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--gc-blue);
  color: #fff !important;
  font-family: var(--gc-sans);
  font-size: 14px;
  font-weight: 500;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(40,109,236,0.40);
  transition: transform 0.2s var(--gc-ease), box-shadow 0.2s, opacity 0.3s;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.gc-float-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.gc-float-btn:hover {
  background: var(--gc-blue-dk) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(40,109,236,0.50);
  color: #fff !important;
  text-decoration: none;
}

/* ── PAGE TRANSITIONS ── */
.gc-page-enter-active,
.gc-page-leave-active {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gc-page-enter,
.gc-page-leave-to {
  opacity: 0;
  transform: translateY(10px);
}

/* ── ANIMATED HAMBURGER ── */
.gc-nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gc-nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.gc-nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE TOUCH TARGETS ── */
@media (max-width: 768px) {
  .gc-nav__links a,
  .gc-nav__mobile ul a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .gc-footer__links a {
    min-height: 36px;
    display: flex;
    align-items: center;
  }

  .gc-btn--primary,
  .gc-btn--ghost,
  .gc-btn--white {
    min-height: 48px;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .gc-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gc-cta__inner {
    padding: 36px 24px;
  }

  .gc-hero {
    padding: 100px 0 60px;
  }

  .gc-services,
  .gc-about,
  .gc-agency,
  .gc-cta {
    padding: 64px 0;
  }

  .gc-float-btn span.gc-float-btn__label {
    display: none;
  }

  .gc-float-btn {
    padding: 14px;
    border-radius: 50%;
    bottom: 24px;
    right: 24px;
  }
}

/* ── PRODUCTS SECTION ── */
.gc-products {
  padding: 96px 0;
  background: var(--gc-surface);
  position: relative;
}

.gc-products__eyebrow {
  display: inline-block;
  font-family: var(--gc-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gc-blue);
  background: rgba(40,109,236,0.08);
  border: 1px solid rgba(40,109,236,0.18);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.gc-products__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}

.gc-products__headline {
  font-family: var(--gc-serif);
  font-size: 42px;
  line-height: 1.1;
  color: var(--gc-text);
  margin: 0;
}

.gc-products__sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gc-text-dim);
  margin: 0;
  max-width: 480px;
}

.gc-products__card {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  background: var(--gc-white);
  border: 1px solid var(--gc-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--gc-shadow-lg);
}

.gc-products__card-body {
  padding: 52px 48px;
}

.gc-products__card-top {
  margin-bottom: 16px;
}

.gc-products__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gc-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #059669;
  background: rgba(5,150,105,0.08);
  border: 1px solid rgba(5,150,105,0.2);
  border-radius: 20px;
  padding: 3px 12px;
}

.gc-products__badge--soon {
  color: #D97706;
  background: rgba(217,119,6,0.08);
  border-color: rgba(217,119,6,0.2);
}

.gc-products__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  animation: gc-dot-pulse 1.8s ease-in-out infinite;
}

@keyframes gc-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.gc-products__launch-note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--gc-text-light);
}

.gc-products__launch-note a {
  color: var(--gc-blue);
  font-weight: 500;
}

.gc-products__launch-note a:hover {
  text-decoration: underline;
}

.gc-products__visual-stat--launch {
  background: rgba(255,193,7,0.12) !important;
  border-color: rgba(255,193,7,0.25) !important;
}

.gc-products__visual-stat--launch .gc-products__visual-num {
  color: #FCD34D;
}

.gc-kopa__launch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gc-mono);
  font-size: 12px;
  color: #D97706;
  background: rgba(217,119,6,0.08);
  border: 1px solid rgba(217,119,6,0.2);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

.gc-kopa__launch-pill a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

.gc-kopa__cta-countdown {
  display: inline-block;
  font-family: var(--gc-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FCD34D;
  background: rgba(252,211,77,0.1);
  border: 1px solid rgba(252,211,77,0.2);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.gc-products__name {
  font-family: var(--gc-serif);
  font-size: 36px;
  color: var(--gc-text);
  margin: 0 0 12px;
  line-height: 1.1;
}

.gc-products__tagline {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gc-text-dim);
  margin: 0 0 32px;
  max-width: 520px;
}

.gc-products__features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.gc-products__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gc-text-dim);
  line-height: 1.4;
}

.gc-products__features li svg {
  flex-shrink: 0;
}

.gc-products__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.gc-products__card-visual {
  background: linear-gradient(145deg, #0D1E3D 0%, #1a3a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}

.gc-products__card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(40,109,236,0.3) 0%, transparent 70%);
}

.gc-products__visual-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gc-products__visual-label {
  font-family: var(--gc-serif);
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}

.gc-products__visual-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
}

.gc-products__visual-num {
  font-family: var(--gc-mono);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
}

.gc-products__visual-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.gc-products__visual-logo {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.gc-products__visual-wordmark {
  font-family: var(--gc-serif);
  font-size: 26px;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.01em;
}

/* Products — dark mode */
html[data-theme="dark"] .gc-products {
  background: var(--gc-bg);
}

html[data-theme="dark"] .gc-products__card {
  background: var(--gc-card);
  border-color: var(--gc-border);
}

/* ── KOPA PAGE ── */
.gc-kopa__hero {
  padding: 80px 0;
  background: var(--gc-bg);
}

.gc-kopa__hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.gc-kopa__hero-title {
  font-family: var(--gc-serif);
  font-size: 56px;
  line-height: 1.05;
  color: var(--gc-text);
  margin: 8px 0 20px;
}

.gc-kopa__hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gc-text-dim);
  max-width: 600px;
  margin: 0 0 32px;
}

.gc-kopa__hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.gc-kopa__hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  background: var(--gc-surface);
  border: 1px solid var(--gc-border);
  border-radius: 16px;
  min-width: 180px;
}

.gc-kopa__hero-wordmark {
  font-family: var(--gc-serif);
  font-size: 28px;
  color: var(--gc-text);
  letter-spacing: -0.01em;
}

.gc-kopa__features {
  padding: 80px 0;
  background: var(--gc-surface);
}

.gc-section-head {
  margin-bottom: 48px;
}

.gc-section-head.centered {
  text-align: center;
}

.gc-section-head h2 {
  font-family: var(--gc-serif);
  font-size: 36px;
  color: var(--gc-text);
  margin: 8px 0 0;
}

.gc-kopa__feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gc-kopa__feature-card {
  background: var(--gc-white);
  border: 1px solid var(--gc-border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow 0.25s var(--gc-ease), transform 0.25s var(--gc-ease);
}

.gc-kopa__feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gc-shadow-lg);
}

.gc-kopa__feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(40,109,236,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.gc-kopa__feature-card h4 {
  font-family: var(--gc-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--gc-text);
  margin: 0 0 10px;
}

.gc-kopa__feature-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gc-text-dim);
  margin: 0;
}

.gc-kopa__audience {
  padding: 80px 0;
  background: var(--gc-bg);
}

.gc-kopa__audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gc-kopa__audience-card {
  background: var(--gc-surface);
  border: 1px solid var(--gc-border);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
}

.gc-kopa__audience-icon {
  width: 64px;
  height: 64px;
  background: rgba(40,109,236,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.gc-kopa__audience-card h4 {
  font-family: var(--gc-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--gc-text);
  margin: 0 0 10px;
}

.gc-kopa__audience-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gc-text-dim);
  margin: 0;
}

.gc-kopa__screenshots {
  padding: 80px 0;
  background: var(--gc-surface);
}

.gc-kopa__screens-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 20px;
}

.gc-kopa__screen--wide {
  grid-column: 1 / -1;
}

.gc-kopa__screen-inner {
  background: var(--gc-white);
  border: 2px dashed var(--gc-border);
  border-radius: 12px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-kopa__screen--wide .gc-kopa__screen-inner {
  min-height: 280px;
}

.gc-kopa__screen-label {
  font-family: var(--gc-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gc-text-light);
  text-transform: uppercase;
}

.gc-kopa__screens-note {
  text-align: center;
  font-size: 13px;
  color: var(--gc-text-light);
  margin: 0;
}

.gc-kopa__cta {
  padding: 80px 0;
  background: var(--gc-bg);
}

.gc-kopa__cta-inner {
  background: linear-gradient(135deg, #0D1E3D 0%, #1a3a8a 100%);
  border-radius: 16px;
  padding: 64px 48px;
  text-align: center;
}

.gc-kopa__cta-inner h2 {
  font-family: var(--gc-serif);
  font-size: 36px;
  color: #fff;
  margin: 0 0 16px;
}

.gc-kopa__cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 32px;
}

/* Kopa — dark mode */
html[data-theme="dark"] .gc-kopa__feature-card {
  background: var(--gc-card);
  border-color: var(--gc-border);
}

html[data-theme="dark"] .gc-kopa__audience-card {
  background: var(--gc-card);
  border-color: var(--gc-border);
}

html[data-theme="dark"] .gc-kopa__screen-inner {
  background: var(--gc-card);
  border-color: var(--gc-border);
}

html[data-theme="dark"] .gc-kopa__hero-badge {
  background: var(--gc-card);
  border-color: var(--gc-border);
}

html[data-theme="dark"] .gc-kopa__cta {
  background: var(--gc-surface);
}

/* Products + Kopa responsive */
@media (max-width: 991px) {
  .gc-products__header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gc-products__card {
    grid-template-columns: 1fr;
  }

  .gc-products__card-visual {
    padding: 40px 36px;
  }

  .gc-products__visual-inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .gc-products__visual-logo {
    display: none;
  }

  .gc-kopa__hero-inner {
    grid-template-columns: 1fr;
  }

  .gc-kopa__hero-badge {
    display: none;
  }

  .gc-kopa__feature-grid,
  .gc-kopa__audience-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .gc-products__features {
    grid-template-columns: 1fr;
  }

  .gc-products__card-body {
    padding: 36px 24px;
  }

  .gc-kopa__feature-grid,
  .gc-kopa__audience-grid {
    grid-template-columns: 1fr;
  }

  .gc-kopa__screens-grid {
    grid-template-columns: 1fr;
  }

  .gc-kopa__screen--wide {
    grid-column: auto;
  }

  .gc-kopa__cta-inner {
    padding: 40px 24px;
  }
}

/* ── SERVICE INNER PAGES — DARK MODE ── */
html[data-theme="dark"] .sidebar-page-container {
  background: var(--gc-bg) !important;
}

html[data-theme="dark"] .service-details {
  background: var(--gc-bg) !important;
}

html[data-theme="dark"] .service-details h3,
html[data-theme="dark"] .service-details h4,
html[data-theme="dark"] .service-details h5 {
  color: var(--gc-text) !important;
}

html[data-theme="dark"] .service-details p,
html[data-theme="dark"] .service-details .text-content p {
  color: var(--gc-text-dim) !important;
}

html[data-theme="dark"] .sidebar-widget .widget-inner {
  background: var(--gc-card) !important;
  border-color: var(--gc-border) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35) !important;
}

html[data-theme="dark"] .sidebar-title h4 {
  color: var(--gc-text) !important;
}

html[data-theme="dark"] .sidebar .services ul li a {
  color: var(--gc-text-dim) !important;
}

/* Override the white ::before hover highlight with a dark blue tint */
html[data-theme="dark"] .sidebar .services ul li:before {
  background: rgba(40, 109, 236, 0.15) !important;
}

html[data-theme="dark"] .sidebar .services ul li:hover a,
html[data-theme="dark"] .sidebar .services ul li.active a {
  color: var(--gc-text) !important;
}

html[data-theme="dark"] .sidebar-widget.call-up .widget-inner {
  background: linear-gradient(135deg, #0D2255 0%, #1a3a8a 100%) !important;
  border-color: rgba(40,109,236,0.3) !important;
}

html[data-theme="dark"] .sidebar-widget.call-up .sidebar-title h4,
html[data-theme="dark"] .sidebar-widget.call-up .text,
html[data-theme="dark"] .sidebar-widget.call-up .phone a {
  color: rgba(255,255,255,0.9) !important;
}

html[data-theme="dark"] .services-section-three {
  background: var(--gc-surface) !important;
}

html[data-theme="dark"] .service-block-two .inner-box {
  background: var(--gc-card) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
  border-color: var(--gc-border) !important;
}

html[data-theme="dark"] .service-block-two .inner-box h5 a,
html[data-theme="dark"] .service-block-two .inner-box h4 a,
html[data-theme="dark"] .service-block-two h5,
html[data-theme="dark"] .service-block-two h4 {
  color: var(--gc-text) !important;
}

html[data-theme="dark"] .service-block-two .text,
html[data-theme="dark"] .service-block-two p {
  color: var(--gc-text-dim) !important;
}

html[data-theme="dark"] .service-block-two .icon-box {
  background: rgba(40,109,236,0.12) !important;
  border-color: rgba(40,109,236,0.2) !important;
}

html[data-theme="dark"] .service-block-two .inner-box:hover {
  background: var(--gc-blue) !important;
}

html[data-theme="dark"] .service-block-two .inner-box:hover h5 a,
html[data-theme="dark"] .service-block-two .inner-box:hover h4 a,
html[data-theme="dark"] .service-block-two .inner-box:hover .text,
html[data-theme="dark"] .service-block-two .inner-box:hover p {
  color: #fff !important;
}

/* ServicesPage (services listing page) */
html[data-theme="dark"] .services-section-three.padd-top {
  background: var(--gc-surface) !important;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .gc-hero__tag,
  .gc-hero__headline,
  .gc-hero__sub,
  .gc-hero__actions,
  .gc-hero__proof,
  .gc-hero__right {
    animation: none !important;
  }

  .gc-page-enter-active,
  .gc-page-leave-active {
    transition: opacity 0.1s !important;
  }
}
