﻿/* ==========================================================================
   GAMMA Digital â€” Premium IT / Software Agency Theme
   Inspired by Seventech + TechUp Elementor kits
   ========================================================================== */

:root {
  /* Brand palette â€” Gama Theme WEBSITE (React) */
  --gd-bg: #ffffff;
  --gd-bg-deep: #0B1526;
  --gd-bg-deep-2: #0F1E33;
  --gd-bg-deep-3: #16273F;
  --gd-surface: #ffffff;
  --gd-mist: #F5F8FC;
  --gd-ink: #0B1526;
  --gd-ink-soft: #0F1E33;
  --gd-muted: rgba(11, 21, 38, 0.6);
  --gd-line: rgba(11, 21, 38, 0.1);
  --gd-line-strong: rgba(11, 21, 38, 0.15);

  /* Accents */
  --gd-accent: #00A6FB;
  --gd-accent-2: #38BDFF;
  --gd-accent-600: #0090DB;
  --gd-accent-soft: rgba(0, 166, 251, 0.12);
  --gd-accent-glow: rgba(0, 166, 251, 0.45);
  --gd-cyan-soft: rgba(56, 189, 255, 0.16);
  --gd-warm: #fbbf24;
  --gd-warm-soft: rgba(251, 191, 36, 0.14);

  /* Typography */
  --gd-font: "Inter", system-ui, -apple-system, sans-serif;
  --gd-display: "Sora", system-ui, sans-serif;

  /* Layout */
  --gd-container: 1140px;
  --gd-gutter: clamp(1rem, 4vw, 1.5rem);
  --gd-header-h: 72px;
  --gd-radius: 1rem;
  --gd-radius-sm: 0.75rem;
  --gd-radius-xs: 0.5rem;
  --gd-radius-full: 999px;

  /* Elevation */
  --gd-shadow-sm: 0 1px 2px rgba(11, 21, 38, 0.04);
  --gd-shadow: 0 1px 2px rgba(11, 21, 38, 0.04), 0 12px 32px -12px rgba(11, 21, 38, 0.18);
  --gd-shadow-lg: 0 20px 60px -20px rgba(0, 166, 251, 0.45);
  --gd-shadow-accent: 0 20px 60px -20px rgba(0, 166, 251, 0.45);

  /* Motion */
  --gd-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gd-duration: 0.35s;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.gd-theme {
  margin: 0;
  font-family: var(--gd-font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gd-ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

::selection {
  background: var(--gd-accent);
  color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gd-accent);
  text-decoration: none;
  transition: color var(--gd-duration) var(--gd-ease);
}

a:hover {
  color: var(--gd-accent-2);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gd-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gd-ink);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

ul, ol {
  margin: 0;
  padding: 0;
}

/* --------------------------------------------------------------------------
   Accessibility
   -------------------------------------------------------------------------- */

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background: var(--gd-surface);
  border-radius: var(--gd-radius-xs);
  box-shadow: var(--gd-shadow);
  clip: auto !important;
  clip-path: none;
  color: var(--gd-ink);
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  height: auto;
  left: 0.75rem;
  line-height: normal;
  padding: 0.75rem 1rem;
  text-decoration: none;
  top: 0.75rem;
  width: auto;
  z-index: 100000;
}

.gd-skip-link {
  position: absolute;
  top: -100%;
  left: 0.75rem;
  z-index: 100001;
  padding: 0.75rem 1.25rem;
  background: var(--gd-accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 0 0 var(--gd-radius-xs) var(--gd-radius-xs);
  transition: top var(--gd-duration) var(--gd-ease);
}

.gd-skip-link:focus {
  top: 0;
  outline: 2px solid var(--gd-warm);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.gd-container {
  width: min(var(--gd-container), calc(100% - var(--gd-gutter) * 2));
  margin-inline: auto;
}

.gd-main {
  min-height: 50vh;
}

.gd-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.gd-section--dark {
  background: var(--gd-bg-deep);
  color: rgba(255, 255, 255, 0.88);
}

.gd-section--dark h1,
.gd-section--dark h2,
.gd-section--dark h3,
.gd-section--dark h4 {
  color: #fff;
}

.gd-section--dark .gd-section-desc,
.gd-section--dark .gd-hero__desc,
.gd-section--dark .gd-page-header__desc,
.gd-section--dark .gd-cta__desc {
  color: rgba(255, 255, 255, 0.72);
}

/* --------------------------------------------------------------------------
   Typography blocks
   -------------------------------------------------------------------------- */

.gd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gd-accent);
}

.gd-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gd-accent), var(--gd-accent-2));
  border-radius: 2px;
}

.gd-section--dark .gd-eyebrow {
  color: var(--gd-accent-2);
}

.gd-section--mist {
  background: #F5F8FC;
  border-block: 1px solid rgba(11, 21, 38, 0.1);
}

.gd-section-heading {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.gd-section-heading--center {
  text-align: center;
  margin-inline: auto;
}

.gd-section-title {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.gd-section-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--gd-muted);
  max-width: 620px;
}

.gd-section-heading--center .gd-section-desc {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.gd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.65rem;
  font-family: var(--gd-font);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--gd-duration) var(--gd-ease),
    color var(--gd-duration) var(--gd-ease),
    border-color var(--gd-duration) var(--gd-ease),
    box-shadow var(--gd-duration) var(--gd-ease),
    transform var(--gd-duration) var(--gd-ease);
}

.gd-btn--primary {
  background: var(--gd-accent);
  color: var(--gd-ink);
  box-shadow: none;
  font-weight: 600;
}

.gd-btn--primary:hover {
  color: var(--gd-ink);
  background: var(--gd-accent-2);
  transform: translateY(-1px);
  box-shadow: var(--gd-shadow-accent);
}

.gd-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.gd-btn--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.35);
}

.gd-section:not(.gd-section--dark) .gd-btn--ghost {
  color: var(--gd-ink);
  border-color: var(--gd-line-strong);
  background: transparent;
}

.gd-section:not(.gd-section--dark) .gd-btn--ghost:hover {
  color: var(--gd-ink);
  border-color: var(--gd-line-strong);
  background: var(--gd-mist);
}

/* --------------------------------------------------------------------------
   Site header — glass nav matching Gama Theme WEBSITE (beat Elementor link colors)
   -------------------------------------------------------------------------- */

.gd-site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  background: rgba(11, 21, 38, 0.4);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body.admin-bar .gd-site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .gd-site-header {
    top: 46px;
  }
}

.gd-site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(11, 21, 38, 0.1);
  box-shadow: 0 8px 30px -12px rgba(11, 21, 38, 0.25);
}

.gd-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  height: var(--gd-header-h);
}

.gd-site-header a.gd-brand,
.gd-site-header .gd-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #fff !important;
  text-decoration: none !important;
  flex-shrink: 0;
}

.gd-site-header a.gd-brand:hover,
.gd-site-header .gd-brand:hover {
  color: #fff !important;
}

.gd-site-header.is-scrolled a.gd-brand,
.gd-site-header.is-scrolled .gd-brand {
  color: #0B1526 !important;
}

.gd-site-header.is-scrolled a.gd-brand:hover,
.gd-site-header.is-scrolled .gd-brand:hover {
  color: #0B1526 !important;
}

.gd-brand__mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: #0B1526;
  color: #00A6FB;
  font-family: var(--gd-display);
  font-size: 1.125rem;
  font-weight: 800;
  box-shadow: 0 0 0 1px rgba(0, 166, 251, 0.3);
}

.gd-brand__mark::after {
  content: "";
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: #00A6FB;
  box-shadow: 0 0 10px rgba(0, 166, 251, 0.9);
}

.gd-brand__lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.gd-brand__name {
  font-family: var(--gd-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: inherit;
}

.gd-brand__sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.gd-site-header.is-scrolled .gd-brand__sub {
  color: rgba(11, 21, 38, 0.45);
}

.gd-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gd-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gd-nav__list a {
  display: block;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  transition: color 0.2s ease, background 0.2s ease;
  background: transparent;
}

.gd-nav__list a:hover,
.gd-nav__list .current-menu-item > a,
.gd-nav__list .current_page_item > a {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
}

.gd-site-header.is-scrolled .gd-nav__list a {
  color: rgba(11, 21, 38, 0.7) !important;
}

.gd-site-header.is-scrolled .gd-nav__list a:hover,
.gd-site-header.is-scrolled .gd-nav__list .current-menu-item > a,
.gd-site-header.is-scrolled .gd-nav__list .current_page_item > a {
  color: #0B1526 !important;
  background: rgba(11, 21, 38, 0.05);
}

.gd-site-header a.gd-nav__cta,
.gd-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  background: #00A6FB !important;
  color: #0B1526 !important;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease;
  box-shadow: none;
}

.gd-site-header a.gd-nav__cta:hover,
.gd-nav__cta:hover {
  background: #38BDFF !important;
  color: #0B1526 !important;
}

.gd-site-header.is-scrolled a.gd-nav__cta,
.gd-site-header.is-scrolled .gd-nav__cta {
  background: #0B1526 !important;
  color: #fff !important;
}

.gd-site-header.is-scrolled a.gd-nav__cta:hover,
.gd-site-header.is-scrolled .gd-nav__cta:hover {
  background: #0F1E33 !important;
  color: #fff !important;
}

.gd-nav__cta-icon {
  flex-shrink: 0;
  color: inherit;
}

.gd-site-header.is-scrolled .gd-nav__cta-icon {
  color: #00A6FB;
}

.gd-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
}

.gd-nav-toggle__bars {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}

.gd-nav-toggle__bars i {
  position: absolute;
  left: 0;
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: #fff;
  transition:
    transform 0.3s var(--gd-ease),
    opacity 0.2s ease,
    background 0.2s ease;
  transform-origin: center;
}

.gd-nav-toggle__bars i:nth-child(1) {
  top: 0;
}

.gd-nav-toggle__bars i:nth-child(2) {
  top: 6px;
}

.gd-nav-toggle__bars i:nth-child(3) {
  top: 12px;
}

.gd-nav-toggle[aria-expanded="true"] .gd-nav-toggle__bars i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.gd-nav-toggle[aria-expanded="true"] .gd-nav-toggle__bars i:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.gd-nav-toggle[aria-expanded="true"] .gd-nav-toggle__bars i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.gd-site-header.is-scrolled .gd-nav-toggle__bars i {
  background: #0B1526;
}

.gd-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.gd-site-header.is-scrolled .gd-nav-toggle:hover {
  background: rgba(11, 21, 38, 0.05);
}

/* Offset fixed header for page content that isn't Elementor full-bleed */
body.gd-theme {
  padding-top: 0;
}

/* --------------------------------------------------------------------------
   Hero â€” Gama Theme WEBSITE
   -------------------------------------------------------------------------- */

.gd-hero {
  position: relative;
  min-height: auto;
  display: block;
  overflow: hidden;
  padding: 7rem 0 5rem;
  background: #0B1526;
  color: #fff;
}

@media (min-width: 1024px) {
  .gd-hero {
    padding: 9rem 0 7rem;
  }
}

.gd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black, transparent 75%);
  pointer-events: none;
  animation: none;
}

.gd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(600px circle at 80% 10%, rgba(0, 166, 251, 0.28), transparent 60%);
  pointer-events: none;
}

.gd-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .gd-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.gd-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.gd-hero__title {
  margin: 1.25rem 0 0;
  font-family: var(--gd-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: none;
}

.gd-hero__title .gd-text-azure,
.gd-hero__title span {
  color: #00A6FB;
  font-style: normal;
}

.gd-hero__desc {
  margin: 1.25rem 0 0;
  max-width: 32rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.gd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.gd-hero__actions .gd-btn--primary {
  background: #00A6FB;
  color: #0B1526;
  box-shadow: none;
}

.gd-hero__actions .gd-btn--primary:hover {
  background: #38BDFF;
  color: #0B1526;
}

.gd-hero__actions .gd-btn--ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: transparent;
}

.gd-hero__actions .gd-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.gd-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}

.gd-hero__proof li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.gd-hero__proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.35rem;
  border-left: 2px solid #00A6FB;
  border-bottom: 2px solid #00A6FB;
  transform: rotate(-45deg);
}

.gd-hero__proof li::after {
  display: none;
}

.gd-hero__visual {
  position: relative;
  min-height: 0;
  border-radius: 1rem;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  animation: none;
}

.gd-hero__visual-frame {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px -20px rgba(0, 166, 251, 0.45);
}

.gd-hero__orb {
  display: none;
}

.gd-hero__img {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 1;
  mix-blend-mode: normal;
}

.gd-hero__chip {
  position: absolute;
  left: -1rem;
  bottom: -1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 30, 51, 0.8);
  backdrop-filter: blur(12px);
  color: #fff;
}

.gd-hero__chip strong {
  display: block;
  font-family: var(--gd-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.gd-hero__chip span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.gd-hero__chip--top {
  left: auto;
  right: -0.75rem;
  bottom: auto;
  top: 1.5rem;
}

.gd-hero__chip--top strong {
  font-size: 1.125rem;
  color: #00A6FB;
}


/* --------------------------------------------------------------------------
   Features
   -------------------------------------------------------------------------- */

.gd-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gd-feature {
  padding: 2rem 1.75rem;
  background: var(--gd-surface);
  border: 1px solid var(--gd-line);
  border-radius: var(--gd-radius);
  box-shadow: var(--gd-shadow-sm);
  transition:
    transform var(--gd-duration) var(--gd-ease),
    box-shadow var(--gd-duration) var(--gd-ease),
    border-color var(--gd-duration) var(--gd-ease);
}

.gd-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--gd-shadow);
  border-color: rgba(14, 165, 233, 0.25);
}

.gd-feature__icon {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: var(--gd-accent-soft);
  color: var(--gd-accent);
  font-size: 1.35rem;
}

.gd-feature__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.gd-feature__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.gd-feature__text {
  font-size: 0.9375rem;
  color: var(--gd-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.gd-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.gd-about__grid--reverse {
  direction: rtl;
}

.gd-about__grid--reverse > * {
  direction: ltr;
}

.gd-about__body {
  color: var(--gd-ink-soft);
  margin-bottom: 1.5rem;
}

.gd-about__body p:last-child {
  margin-bottom: 0;
}

.gd-about__points {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
}

.gd-about__points li {
  position: relative;
  padding-left: 1.75rem;
  font-weight: 600;
  color: var(--gd-ink-soft);
}

.gd-about__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gd-accent), var(--gd-accent-2));
  box-shadow: 0 0 0 4px var(--gd-accent-soft);
}

.gd-about__media {
  position: relative;
  border-radius: var(--gd-radius);
  overflow: hidden;
}

.gd-about__media::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--gd-accent), var(--gd-accent-2), var(--gd-warm));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.gd-about__media img {
  width: 100%;
  border-radius: var(--gd-radius);
  box-shadow: var(--gd-shadow);
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */

.gd-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gd-service-card {
  display: block;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(11, 21, 38, 0.1);
  border-radius: 1rem;
  box-shadow: var(--gd-shadow-sm);
  color: inherit;
  transition:
    transform 0.35s var(--gd-ease),
    box-shadow 0.35s var(--gd-ease),
    border-color 0.35s var(--gd-ease);
}

.gd-service-card:hover {
  color: inherit;
  transform: translateY(-4px);
  box-shadow: var(--gd-shadow);
  border-color: rgba(0, 166, 251, 0.4);
}

.gd-service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  border-radius: 0.75rem;
  background: var(--gd-mist);
  color: var(--gd-ink);
  font-size: 1.25rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.gd-service-card:hover .gd-service-card__icon {
  background: var(--gd-ink);
  color: var(--gd-accent);
}

.gd-service-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
}

.gd-service-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.625rem;
}

.gd-service-card__text {
  font-size: 0.9375rem;
  color: var(--gd-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Mission
   -------------------------------------------------------------------------- */

.gd-mission__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gd-mission-card {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  background: var(--gd-surface);
  border: 1px solid var(--gd-line);
  border-radius: var(--gd-radius);
  box-shadow: var(--gd-shadow-sm);
}

.gd-mission-card__index {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  font-family: var(--gd-display);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(11, 21, 38, 0.04);
  pointer-events: none;
}

.gd-mission-card__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: #0B1526;
  color: #00A6FB;
  font-size: 1.35rem;
}

.gd-mission-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.gd-mission-card__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.gd-mission-card__text {
  font-size: 0.9375rem;
  color: var(--gd-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */

.gd-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gd-blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--gd-surface);
  border: 1px solid var(--gd-line);
  border-radius: var(--gd-radius);
  box-shadow: var(--gd-shadow-sm);
  color: inherit;
  text-decoration: none;
  transition:
    transform var(--gd-duration) var(--gd-ease),
    box-shadow var(--gd-duration) var(--gd-ease),
    border-color var(--gd-duration) var(--gd-ease);
}

.gd-blog-card:hover {
  color: inherit;
  transform: translateY(-6px);
  box-shadow: var(--gd-shadow-lg);
  border-color: rgba(0, 166, 251, 0.35);
}

.gd-blog-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.gd-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--gd-ease);
}

.gd-blog-card:hover .gd-blog-card__media img {
  transform: scale(1.05);
}

.gd-blog-card__category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(11, 21, 38, 0.8);
  color: #00A6FB;
  font-size: 0.6875rem;
  font-weight: 600;
}

.gd-blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.gd-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--gd-muted);
}

.gd-blog-card__title {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.125rem;
  line-height: 1.35;
}

.gd-blog-card__excerpt {
  flex: 1;
  margin: 0;
  font-size: 0.875rem;
  color: var(--gd-muted);
}

.gd-blog-card__link {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0B1526;
}

/* --------------------------------------------------------------------------
   Stats — light mist band (Gama Theme WEBSITE)
   -------------------------------------------------------------------------- */

.gd-stats {
  position: relative;
  overflow: hidden;
  background: var(--gd-mist);
  border-top: 1px solid rgba(11, 21, 38, 0.1);
  border-bottom: 1px solid rgba(11, 21, 38, 0.1);
  padding: 3.5rem 0;
}

.gd-stats::before {
  display: none;
}

.gd-stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.gd-stat {
  text-align: center;
}

@media (min-width: 640px) {
  .gd-stat {
    text-align: left;
  }
}

.gd-stat__value {
  margin: 0;
  font-family: var(--gd-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0B1526;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
}

.gd-stat__label {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(11, 21, 38, 0.55);
  letter-spacing: 0;
}

/* --------------------------------------------------------------------------
   Process
   -------------------------------------------------------------------------- */

.gd-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: gd-process;
}

.gd-process-step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--gd-surface);
  border: 1px solid var(--gd-line);
  border-radius: var(--gd-radius);
  transition: border-color var(--gd-duration) var(--gd-ease);
}

.gd-process-step:hover {
  border-color: rgba(14, 165, 233, 0.25);
}

.gd-process-step__num {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gd-accent), #0284c7);
  color: #fff;
  font-family: var(--gd-display);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.gd-process-step__title {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.gd-process-step__text {
  font-size: 0.9375rem;
  color: var(--gd-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Why Choose
   -------------------------------------------------------------------------- */

.gd-why-choose__highlight {
  display: inline;
  background: linear-gradient(135deg, var(--gd-accent), var(--gd-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gd-why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gd-why-card {
  padding: 2rem;
  background: var(--gd-surface);
  border: 1px solid var(--gd-line);
  border-radius: var(--gd-radius);
  box-shadow: var(--gd-shadow-sm);
  transition:
    transform var(--gd-duration) var(--gd-ease),
    box-shadow var(--gd-duration) var(--gd-ease);
}

.gd-why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--gd-shadow);
}

.gd-why-card__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--gd-warm-soft);
  color: var(--gd-warm);
  font-size: 1.25rem;
}

.gd-why-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.gd-why-card__title {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.gd-why-card__text {
  font-size: 0.9375rem;
  color: var(--gd-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Portfolio
   -------------------------------------------------------------------------- */

.gd-portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gd-portfolio-card {
  display: block;
  background: var(--gd-surface);
  border: 1px solid var(--gd-line);
  border-radius: var(--gd-radius);
  overflow: hidden;
  color: inherit;
  box-shadow: var(--gd-shadow-sm);
  transition:
    transform var(--gd-duration) var(--gd-ease),
    box-shadow var(--gd-duration) var(--gd-ease);
}

.gd-portfolio-card:hover {
  color: inherit;
  transform: translateY(-6px);
  box-shadow: var(--gd-shadow-lg);
}

.gd-portfolio-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.gd-portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--gd-ease);
}

.gd-portfolio-card:hover .gd-portfolio-card__media img {
  transform: scale(1.06);
}

.gd-portfolio-card__body {
  padding: 1.5rem;
}

.gd-portfolio-card__category {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gd-accent);
  background: var(--gd-accent-soft);
  border-radius: 999px;
}

.gd-portfolio-card__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.gd-portfolio-card__text {
  font-size: 0.9375rem;
  color: var(--gd-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Testimonials — dark centered carousel (Gama Theme WEBSITE)
   -------------------------------------------------------------------------- */

.gd-testimonials {
  background: #0B1526;
  color: #fff;
  overflow: hidden;
}

.gd-testimonials__wrap {
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
}

.gd-testimonials .gd-section-heading {
  position: relative;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 0;
}

.gd-testimonials .gd-eyebrow {
  color: #00A6FB;
  justify-content: center;
}

.gd-testimonials .gd-eyebrow::before {
  display: none;
}

.gd-testimonials .gd-section-title {
  color: #fff;
}

.gd-testimonials__carousel {
  position: relative;
  margin-top: 3rem;
}

.gd-testimonials__quote-icon {
  display: block;
  margin: 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(0, 166, 251, 0.4);
}

.gd-testimonials__stage {
  position: relative;
  margin-top: 0.5rem;
  min-height: 240px;
}

@media (min-width: 640px) {
  .gd-testimonials__stage {
    min-height: 210px;
  }
}

.gd-testimonials__slide {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gd-testimonials__slide.is-active {
  display: flex;
  animation: gd-testimonial-in 0.4s ease both;
}

@keyframes gd-testimonial-in {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gd-testimonials__stars {
  display: flex;
  gap: 0.125rem;
  color: #00A6FB;
}

.gd-testimonials__stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.gd-testimonials__text {
  margin: 1.25rem 0 0;
  max-width: 42rem;
  font-family: var(--gd-display);
  font-size: clamp(1.125rem, 2.4vw, 1.5rem);
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
}

.gd-testimonials__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  text-align: left;
}

.gd-testimonials__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(0, 166, 251, 0.15);
  color: #00A6FB;
  font-family: var(--gd-display);
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(0, 166, 251, 0.3);
  overflow: hidden;
  flex-shrink: 0;
}

.gd-testimonials__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gd-testimonials__name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

.gd-testimonials__role {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.gd-testimonials__controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.gd-testimonials__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gd-testimonials__nav:hover {
  border-color: rgba(0, 166, 251, 0.5);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.gd-testimonials__nav svg {
  width: 1.25rem;
  height: 1.25rem;
}

.gd-testimonials__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gd-testimonials__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.gd-testimonials__dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.gd-testimonials__dot.is-active {
  width: 1.5rem;
  background: #00A6FB;
}

/* --------------------------------------------------------------------------
   CTA — rounded dark band on white (Gama Theme WEBSITE)
   -------------------------------------------------------------------------- */

.gd-cta {
  position: relative;
  overflow: visible;
  background: #fff;
  padding: 0 0 5rem;
}

@media (min-width: 1024px) {
  .gd-cta {
    padding-bottom: 7rem;
  }
}

.gd-cta::before {
  display: none;
}

.gd-cta__box {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #0B1526;
  padding: 3.5rem 2rem;
  text-align: center;
}

@media (min-width: 640px) {
  .gd-cta__box {
    padding: 3.5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .gd-cta__box {
    padding: 5rem 3rem;
  }
}

.gd-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.45;
  pointer-events: none;
}

.gd-cta__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(11, 21, 38, 0.55) 45%, #0B1526 72%);
}

.gd-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.gd-cta__title {
  margin: 0;
  font-family: var(--gd-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.gd-cta__desc {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.gd-cta__btn,
.gd-cta .gd-btn--primary {
  margin-top: 2rem;
  padding: 0.875rem 1.75rem;
  background: #00A6FB;
  color: #0B1526;
  box-shadow: none;
  font-weight: 600;
  font-size: 0.875rem;
}

.gd-cta__btn:hover,
.gd-cta .gd-btn--primary:hover {
  background: #38BDFF;
  color: #0B1526;
  transform: none;
  box-shadow: none;
}

.gd-cta__btn-icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.gd-cta__btn:hover .gd-cta__btn-icon {
  transform: translateX(2px);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.gd-contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.gd-contact__info {
  padding: 2.25rem;
  background: var(--gd-bg-deep);
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--gd-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gd-contact__company {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.gd-contact__list {
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.gd-contact__list li span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gd-accent-2);
  margin-bottom: 0.25rem;
}

.gd-contact__list a {
  color: #fff;
  font-weight: 600;
}

.gd-contact__list a:hover {
  color: var(--gd-accent-2);
}

.gd-contact__list strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.gd-contact__form {
  padding: 2.25rem;
  background: var(--gd-surface);
  border: 1px solid var(--gd-line);
  border-radius: var(--gd-radius);
  box-shadow: var(--gd-shadow-sm);
}

.gd-contact__form-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.gd-form__row {
  margin-bottom: 1.25rem;
}

.gd-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gd-ink-soft);
}

.gd-form input,
.gd-form textarea,
.gd-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--gd-font);
  font-size: 0.9375rem;
  color: var(--gd-ink);
  background: var(--gd-bg);
  border: 1px solid var(--gd-line-strong);
  border-radius: var(--gd-radius-xs);
  transition:
    border-color var(--gd-duration) var(--gd-ease),
    box-shadow var(--gd-duration) var(--gd-ease);
}

.gd-form input:focus,
.gd-form textarea:focus,
.gd-form select:focus {
  outline: none;
  border-color: var(--gd-accent);
  box-shadow: 0 0 0 3px var(--gd-accent-soft);
}

.gd-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* --------------------------------------------------------------------------
   Page header — left-aligned with site header logo (same gd-container)
   -------------------------------------------------------------------------- */

.gd-page-header {
  padding: 7rem 0 4rem;
  text-align: left;
}

@media (min-width: 1024px) {
  .gd-page-header {
    padding: 9rem 0 5rem;
  }
}

.gd-page-header__inner {
  text-align: left;
}

.gd-page-header .gd-eyebrow {
  color: #00A6FB;
}

.gd-page-header__title {
  margin: 0.75rem 0 0;
  font-family: var(--gd-display);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.gd-page-header__desc {
  margin: 1rem 0 0;
  max-width: 42rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

/* --------------------------------------------------------------------------
   Legal / prose
   -------------------------------------------------------------------------- */

.gd-legal__inner {
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--gd-surface);
  border: 1px solid var(--gd-line);
  border-radius: var(--gd-radius);
  box-shadow: var(--gd-shadow-sm);
}

.gd-prose h2,
.gd-prose h3,
.gd-prose h4 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.gd-prose p,
.gd-prose li {
  color: var(--gd-ink-soft);
}

.gd-prose ul,
.gd-prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.gd-prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.gd-site-footer {
  background: var(--gd-bg-deep);
  color: rgba(255, 255, 255, 0.72);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.gd-site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.gd-site-footer .gd-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #fff;
  text-decoration: none;
}

.gd-site-footer .gd-brand:hover {
  color: #fff;
}

.gd-site-footer .gd-brand__name {
  color: #fff;
}

.gd-site-footer .gd-brand__sub {
  color: rgba(255, 255, 255, 0.5);
}

.gd-site-footer__brand p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 320px;
}

.gd-site-footer .gd-brand__text {
  color: #fff;
}

.gd-site-footer .gd-brand__sub {
  color: rgba(255, 255, 255, 0.5);
}

.gd-site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.gd-site-footer__bottom-inner p {
  margin: 0;
}

.gd-site-footer h4 {
  color: #fff;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.gd-footer-links {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.gd-footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  transition: color var(--gd-duration) var(--gd-ease);
}

.gd-footer-links a:hover {
  color: var(--gd-accent-2);
}

.gd-site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.gd-site-footer__bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* --------------------------------------------------------------------------
   Scroll reveal helpers
   -------------------------------------------------------------------------- */

.gd-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s var(--gd-ease),
    transform 0.6s var(--gd-ease);
}

.gd-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gd-reveal--delay-1 { transition-delay: 0.1s; }
.gd-reveal--delay-2 { transition-delay: 0.2s; }
.gd-reveal--delay-3 { transition-delay: 0.3s; }

/* --------------------------------------------------------------------------
   Keyframe animations
   -------------------------------------------------------------------------- */

@keyframes gd-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.04); }
}

@keyframes gd-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.25); }
  50% { box-shadow: 0 0 30px 4px rgba(14, 165, 233, 0.18); }
}

@keyframes gd-grid-drift {
  0% { transform: translateY(0); }
  100% { transform: translateY(56px); }
}

/* --------------------------------------------------------------------------
   Responsive — large tablet / small laptop (980px)
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
  .gd-hero__grid,
  .gd-about__grid,
  .gd-contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gd-about__grid--reverse {
    direction: ltr;
  }

  .gd-hero__visual {
    min-height: 280px;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }

  .gd-features__grid,
  .gd-services__grid,
  .gd-mission__grid,
  .gd-blog__grid,
  .gd-why-choose__grid,
  .gd-portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .gd-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .gd-process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .gd-site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .gd-site-footer__brand {
    grid-column: 1 / -1;
  }

  .gd-site-footer__brand p {
    max-width: 36rem;
  }

  .gd-nav-toggle {
    display: inline-flex;
  }

  .gd-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 1rem 1.25rem 1.25rem;
    background: white !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(11, 21, 38, 0.1);
    box-shadow: 0 16px 40px rgba(11, 21, 38, 0.12);
    transform: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
  }

  .gd-nav.is-open {
    display: flex;
  }

  .gd-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    width: 100%;
  }

  .gd-nav__list a {
    padding: 0.75rem 0.875rem;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    color: rgba(11, 21, 38, 0.8) !important;
    background: transparent !important;
  }

  .gd-nav__list a:hover {
    background: #F5F8FC !important;
    color: #0B1526 !important;
  }

  .gd-nav__list .current-menu-item > a,
  .gd-nav__list .current_page_item > a,
  .gd-nav__list .current-menu-ancestor > a,
  .gd-nav__list .current-menu-parent > a {
    color: #00A6FB !important;
    background: rgba(0, 166, 251, 0.1) !important;
    font-weight: 600;
  }

  .gd-nav__cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    min-height: 44px;
    background: #0B1526 !important;
    color: #fff !important;
  }

  .gd-nav__cta-icon {
    color: #00A6FB !important;
  }
}

/* --------------------------------------------------------------------------
   Responsive — mobile (640px)
   -------------------------------------------------------------------------- */

@media (max-width: 640px) {
  :root {
    --gd-header-h: 64px;
    --gd-gutter: 1rem;
  }

  .gd-section {
    padding: 3rem 0;
  }

  .gd-section-heading {
    max-width: none;
  }

  .gd-section-title {
    font-size: clamp(1.5rem, 6.5vw, 1.875rem);
  }

  .gd-hero {
    min-height: auto;
    padding: 5.5rem 0 3rem;
  }

  .gd-hero__grid {
    gap: 2rem;
  }

  .gd-hero__title {
    font-size: clamp(1.875rem, 8vw, 2.5rem);
  }

  .gd-hero__desc {
    font-size: 1rem;
  }

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

  .gd-hero__actions .gd-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .gd-hero__proof {
    margin-top: 1.5rem;
    gap: 0.625rem 1.25rem;
  }

  .gd-hero__chip,
  .gd-hero__chip--top {
    display: none;
  }

  .gd-page-header {
    padding: 5.5rem 0 2.75rem;
  }

  .gd-page-header__title {
    font-size: clamp(1.625rem, 7vw, 2.25rem);
  }

  .gd-page-header__desc {
    font-size: 1rem;
  }

  .gd-features__grid,
  .gd-services__grid,
  .gd-mission__grid,
  .gd-blog__grid,
  .gd-why-choose__grid,
  .gd-portfolio__grid,
  .gd-process__grid,
  .gd-stats__grid,
  .gd-site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gd-stats {
    padding: 2.5rem 0;
  }

  .gd-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1rem;
  }

  .gd-stat {
    text-align: center;
  }

  .gd-feature,
  .gd-service-card,
  .gd-why-card,
  .gd-process-step {
    padding: 1.5rem 1.25rem;
  }

  .gd-contact__info,
  .gd-contact__form {
    padding: 1.25rem;
  }

  .gd-contact__grid {
    gap: 1.25rem;
  }

  .gd-footer-links a,
  .gd-contact a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .gd-cta {
    padding-bottom: 3rem;
  }

  .gd-cta__box {
    border-radius: 1rem;
    padding: 2.5rem 1.25rem;
  }

  .gd-cta__fade {
    background: linear-gradient(180deg, rgba(11, 21, 38, 0.35) 0%, #0B1526 70%);
  }

  .gd-cta__btn,
  .gd-cta .gd-btn--primary {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .gd-testimonials__wrap {
    max-width: none;
  }

  .gd-testimonials__text {
    font-size: 1.125rem;
  }

  .gd-testimonials__stage {
    min-height: 280px;
  }

  .gd-testimonials__controls {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .gd-testimonials__nav {
    width: 2.75rem;
    height: 2.75rem;
  }

  .gd-site-footer__grid {
    gap: 2rem;
    padding-bottom: 2rem;
    text-align: left;
  }

  .gd-site-footer__brand {
    grid-column: auto;
  }

  .gd-site-footer__brand p {
    max-width: none;
  }

  .gd-site-footer__bottom {
    padding: 1.125rem 0;
  }

  .gd-site-footer__bottom-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .gd-site-footer__bottom-inner p {
    width: 100%;
    text-align: center;
    font-size: 0.8125rem;
    line-height: 1.55;
  }

  .gd-legal__inner {
    padding: 1.5rem 1.125rem;
    border-radius: var(--gd-radius-sm);
  }

  .gd-btn {
    min-height: 44px;
  }
}

/* --------------------------------------------------------------------------
   Responsive — small phones (400px)
   -------------------------------------------------------------------------- */

@media (max-width: 400px) {
  :root {
    --gd-gutter: 0.875rem;
  }

  .gd-stats__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gd-hero__title {
    font-size: 1.75rem;
  }

  .gd-page-header__title {
    font-size: 1.5rem;
  }

  .gd-testimonials__stage {
    min-height: 300px;
  }

  .gd-cta__title {
    font-size: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .gd-reveal {
    opacity: 1;
    transform: none;
  }

  .gd-hero::before {
    animation: none;
  }
}
