/* ============================================================
   ROOT & RESET
============================================================ */
:root {
  --bg: #EBEBEB;
  --bg-white: #FFFFFF;
  --bg-light: #F4F4F4;
  --bg-dark: #1A1A1A;
  --text: #0A0A0A;
  --text-2: #555555;
  --text-3: #999999;
  --gold: #B8952A;
  --gold-d: #8A6C1F;
  --border: rgba(0, 0, 0, 0.10);
  --border-g: rgba(184, 149, 42, 0.35);
  --radius: 6px;
  --radius-lg: 28px;
  --trans: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--gold);
  color: #fff;
}

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

a {
  text-decoration: none;
  color: inherit;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-white);
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  display: block;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 40px;
  transition: var(--trans);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 40px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--text);
}

.nav-brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  filter: brightness(0.9);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  position: relative;
  transition: var(--trans);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--text);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 9px 22px;
  border: 1.5px solid var(--text);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  transition: var(--trans);
}

.nav-cta:hover {
  background: var(--text);
  color: #fff;
}

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

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:hover {
  color: var(--text);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background: var(--bg);
  overflow: hidden;
}

/* Flowing wave background */
.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-wave {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.75;
}

.hw1 {
  width: 90%;
  height: 90%;
  top: -20%;
  left: -5%;
  background: rgba(255, 255, 255, 0.7);
  transform: rotate(-12deg);
}

.hw2 {
  width: 60%;
  height: 110%;
  top: -10%;
  right: -15%;
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(8deg);
}

.hw3 {
  width: 50%;
  height: 70%;
  bottom: -15%;
  left: 20%;
  background: rgba(255, 255, 255, 0.55);
  transform: rotate(-5deg);
}

/* Giant display name — CENTERED */
.hero-name-block {
  position: absolute;
  top: max(76px, 10vh);
  left: 0;
  right: 0;
  padding: 0 24px;
  text-align: center;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.hn-line {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--text);
  letter-spacing: 0.03em;
  line-height: 0.88;
}

.hn-1 {
  font-size: clamp(55px, 15vw, 218px);
}

.hn-2 {
  font-size: clamp(55px, 15vw, 218px);
}

/* Tagline between name lines */
.hn-tagline {
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 6px 0 3px;
  line-height: 1.4;
}

/* ============================================================
   3D MARKETING VISUAL
============================================================ */
.hero-mktg {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 13%;
  transform: translateX(-50%);
  width: 480px;
  height: 290px;
  perspective: 1100px;
}

.mktg-scene {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: sceneFloat 7s ease-in-out infinite;
}

@keyframes sceneFloat {

  0%,
  100% {
    transform: rotateX(6deg) rotateY(-4deg) translateY(0);
  }

  33% {
    transform: rotateX(3deg) rotateY(6deg) translateY(-8px);
  }

  66% {
    transform: rotateX(8deg) rotateY(-7deg) translateY(-4px);
  }
}

/* Purple glow behind card */
.mktg-glow {
  position: absolute;
  width: 280px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(139, 47, 232, 0.28) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  filter: blur(20px);
  z-index: 0;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.18);
  }
}

/* Main dashboard card */
.mktg-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  background: linear-gradient(145deg, #16102a 0%, #1e1535 50%, #0f0d1e 100%);
  border-radius: 20px;
  padding: 18px 20px 16px;
  border: 1px solid rgba(139, 47, 232, 0.3);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 2;
}

/* Mac-style dots + label + live badge */
.mktg-card-header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
}

.mktg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.d1 {
  background: #ff5f57;
}

.d2 {
  background: #febc2e;
}

.d3 {
  background: #28c840;
}

.mktg-card-lbl {
  margin-left: 7px;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  flex: 1;
}

.mktg-live {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  color: #28c840;
  letter-spacing: 0.06em;
}

.mktg-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28c840;
  animation: livePulse 1.8s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.5);
  }

  50% {
    opacity: 0.6;
    box-shadow: 0 0 0 4px rgba(40, 200, 64, 0);
  }
}

/* Bar chart */
.mktg-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 62px;
  margin-bottom: 10px;
}

.mktg-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(to top, #6D22B8, #A855F7, #C084FC);
  border-radius: 3px 3px 0 0;
  opacity: 0.85;
  transform-origin: bottom;
  animation: barRise 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: var(--d);
}

@keyframes barRise {
  from {
    transform: scaleY(0);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 0.85;
  }
}

/* Trend line */
.mktg-trend {
  height: 44px;
  margin-bottom: 12px;
}

.mktg-trend svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Bottom metrics row */
.mktg-metrics {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 10px;
}

.mktg-m {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mktg-mv {
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.1;
}

.mktg-mv.up {
  color: #A855F7;
}

.mktg-ml {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Floating stat chips */
.mktg-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  padding: 9px 13px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14), 0 2px 6px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  white-space: nowrap;
}

.mktg-chip-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.mktg-chip-ico svg {
  width: 18px;
  height: 18px;
}

.mktg-chip-v {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0A0A0A;
  line-height: 1.1;
}

.mktg-chip-l {
  font-size: 0.6rem;
  color: #888;
  letter-spacing: 0.04em;
}

.mktg-chip-1 {
  top: 0;
  left: -10px;
  animation: chipFloat1 5s ease-in-out infinite;
}

.mktg-chip-2 {
  top: 14px;
  right: -18px;
  animation: chipFloat2 6.5s ease-in-out infinite;
}

.mktg-chip-3 {
  bottom: 12px;
  left: -4px;
  animation: chipFloat3 4.5s ease-in-out infinite;
}

@keyframes chipFloat1 {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes chipFloat2 {

  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-13px) rotate(-1.5deg);
  }
}

@keyframes chipFloat3 {

  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

/* 3D orbit rings */
.mktg-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139, 47, 232, 0.18);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: 1;
  animation: orbitSpin linear infinite;
}

.mktg-orbit-1 {
  width: 360px;
  height: 160px;
  margin: -80px 0 0 -180px;
  animation-duration: 18s;
}

.mktg-orbit-2 {
  width: 460px;
  height: 200px;
  margin: -100px 0 0 -230px;
  animation-duration: 28s;
  animation-direction: reverse;
  border-color: rgba(139, 47, 232, 0.09);
}

@keyframes orbitSpin {
  from {
    transform: rotateX(72deg) rotate(0deg);
  }

  to {
    transform: rotateX(72deg) rotate(360deg);
  }
}

/* Bottom row */
.hero-foot {
  position: absolute;
  z-index: 5;
  bottom: 5%;
  left: 0;
  right: 0;
  padding: 0 32px 0 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-caption {
  font-size: clamp(10px, 0.85vw, 13px);
  color: var(--text-2);
  line-height: 1.65;
  max-width: 260px;
}

.hero-scroll-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.22);
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  flex-shrink: 0;
}

.hero-scroll-btn:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.hero-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hs-link {
  color: var(--text-2);
  transition: var(--trans);
  display: flex;
  align-items: center;
}

.hs-link:hover {
  color: var(--text);
}

/* ============================================================
   ABOUT
============================================================ */
.about-section {
  background: var(--bg-white);
  padding: 100px 32px 80px;
  max-width: 1160px;
  margin: 0 auto;
}

.about-head {
  text-align: center;
  margin-bottom: 48px;
}

.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 10px;
}

.about-sub {
  font-size: 0.9rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.about-body p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.85;
  text-align: center;
}

/* Gallery row */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.ag-item {
  display: flex;
  flex-direction: column;
}

.ag-visual {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-dark);
}

.ag-pattern {
  position: absolute;
  inset: 0;
}

.ag-v1 .ag-pattern {
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(255, 255, 255, 0.04) 40px),
    repeating-linear-gradient(180deg, transparent 0, transparent 39px, rgba(255, 255, 255, 0.04) 40px);
}

.ag-v2 .ag-pattern {
  background: radial-gradient(circle at 50% 50%, rgba(184, 149, 42, 0.12) 0%, transparent 65%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.ag-v3 .ag-pattern {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(184, 149, 42, 0.08) 100%);
}

.ag-stat-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ag-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.90);
  letter-spacing: 0.02em;
}

.ag-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ag-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px 0;
}

.ag-num {
  font-size: 0.72rem;
  color: var(--text-3);
  font-weight: 600;
}

.ag-label {
  font-size: 0.78rem;
  color: var(--text-2);
  font-weight: 500;
}

/* ============================================================
   SERVICES CAROUSEL (Pill container)
============================================================ */
.svc-section {
  background: var(--bg);
  padding: 80px 0 80px;
}

.svc-header {
  text-align: center;
  margin-bottom: 48px;
}

.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.svc-eyebrow::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  display: block;
}

.svc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0.04em;
  color: var(--text);
}

.svc-pill {
  max-width: 1100px;
  margin: 0 auto;
  background: #DCDCDC;
  border-radius: 40px;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.svc-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1.5px solid rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--trans);
  padding: 0;
}

.svc-nav:hover {
  background: var(--text);
  border-color: var(--text);
}

.svc-nav:hover .svc-nav-arrow {
  color: #fff;
}

.svc-nav-label {
  display: none;
}

.svc-nav-arrow {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text);
  transition: var(--trans);
}

.svc-track-outer {
  flex: 1;
  overflow: hidden;
}

.svc-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: var(--trans);
}

/* Side cards */
.svc-card {
  background: #FFFFFF;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 28px 24px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.svc-card.svc-side {
  flex: 0 0 210px;
  min-height: 240px;
  opacity: 0.55;
  transform: scale(0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.svc-card.svc-side:hover {
  opacity: 0.75;
}

.svc-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: auto;
  padding: 14px;
  border-radius: 14px;
  color: rgba(184, 149, 42, 0.12);
  background: currentColor;
}

.svc-card-icon svg {
  width: 1em;
  height: 1em;
  color: var(--gold);
}

.svc-card-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.svc-card-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-top: 6px;
}

/* Main/center card — dark */
.svc-card.svc-main {
  flex: 0 0 340px;
  min-height: 340px;
  background: var(--bg-dark);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
}

.svc-card.svc-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.svc-card.svc-main::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 149, 42, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.svc-main-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin-bottom: auto;
  padding: 16px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  color: rgba(184, 149, 42, 0.18);
  background: currentColor;
}

.svc-main-icon svg {
  width: 1em;
  height: 1em;
  color: var(--gold);
}

.svc-main-name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.svc-main-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* Dots indicator below carousel */
.svc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.svc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  border: none;
  cursor: pointer;
  transition: var(--trans);
  padding: 0;
}

.svc-dot.active {
  background: var(--text);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   CLIENTS
============================================================ */
.clients-section {
  background: var(--bg-white);
  padding: 80px 32px 90px;
}

.clients-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.clients-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.clients-eyebrow::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  display: block;
}

.clients-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 12px;
}

.clients-sub {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.7;
}

.clients-panel {
  max-width: 1100px;
  margin: 0 auto;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.clients-logo-btn {
  width: 152px;
  height: 96px;
  padding: 12px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  overflow: hidden;
}

.clients-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.clients-logo-btn img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 128px;
  max-height: 72px;
  object-fit: contain;
  object-position: center;
}

.clients-logo-btn:hover {
  border-color: var(--border-g);
}

.clients-logo-btn.active {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(184, 149, 42, 0.14);
}

.clients-detail {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 400px;
}

.clients-nav {
  width: 48px;
  align-self: center;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1.5px solid rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--trans);
  padding: 0;
}

.clients-nav:hover {
  background: var(--text);
  border-color: var(--text);
}

.clients-nav:hover .clients-nav-arrow {
  color: #fff;
}

.clients-nav-arrow {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text);
  transition: var(--trans);
}

.clients-card {
  flex: 1;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: stretch;
  background: var(--bg-dark);
  border-radius: 28px;
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
  height: 400px;
  min-height: 400px;
  max-height: 400px;
  box-sizing: border-box;
}

.clients-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.clients-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 149, 42, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.clients-card-logo-wrap {
  position: relative;
  z-index: 1;
  background: var(--bg-white);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 240px;
  min-height: 240px;
  max-height: 240px;
  box-sizing: border-box;
  align-self: center;
  flex-shrink: 0;
}

.clients-logo--black {
  filter: brightness(0);
}

.clients-card-logo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.clients-card-body {
  position: relative;
  z-index: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clients-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.clients-card-name {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.clients-card-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
  max-width: 62ch;
}

.clients-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.clients-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--trans);
}

.clients-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

/* ============================================================
   RESULTS / COLLECTION SECTION
============================================================ */
.results-section {
  background: var(--bg);
  padding: 0;
  min-height: 520px;
}

.rs-wrap {
  display: flex;
  align-items: stretch;
  min-height: 520px;
  width: 100%;
}

.rs-left {
  flex: 0 0 45%;
  padding: 80px 60px 80px 80px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rs-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 80px);
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 14px;
}

.rs-sub {
  font-size: 0.82rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rs-right {
  flex: 1;
  padding: 80px 80px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.rs-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
}

.rs-stat {}

.rs-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.01em;
  color: var(--text);
  line-height: 1;
}

.rs-lbl {
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.rs-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 500;
}

.rs-pg-active {
  color: var(--text);
  font-weight: 700;
}

.rs-pg-line {
  flex: 1;
  height: 1px;
  background: var(--text);
  max-width: 100px;
  margin: 0 4px;
}

.rs-socials {
  display: flex;
  gap: 20px;
}

.rs-socials a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-2);
  transition: var(--trans);
}

.rs-socials a:hover {
  color: var(--text);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-section {
  background: var(--bg-white);
  padding: 100px 0;
}

.testi-head {
  text-align: center;
  margin-bottom: 56px;
}

.testi-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0.05em;
  color: var(--text);
  margin-top: 10px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: stretch;
}

.testimonial-card {
  min-width: calc(50% - 10px);
  width: calc(50% - 10px);
  background: var(--bg-light);
  border-radius: 20px;
  padding: 36px 28px 28px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.testimonial-quote {
  font-size: 2.2rem;
  color: var(--text-3);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 2px;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.72rem;
  color: var(--gold);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.slider-btn:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CCC;
  cursor: pointer;
  border: none;
  transition: var(--trans);
}

.slider-dot.active {
  background: var(--text);
  width: 22px;
  border-radius: 4px;
}

/* ============================================================
   CONTACT
======================
====================================== */
.contact-section {
  background: var(--bg);
  padding: 100px 0;
}

.cs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.cs-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--text);
  margin: 14px 0 16px;
}

.cs-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 32px;
}

.cs-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: var(--trans);
}

.cs-link:hover {
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateX(4px);
}

.cs-link-icon {
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: rgba(0, 0, 0, 0.06);
  background: currentColor;
  flex-shrink: 0;
}

.cs-link-icon svg {
  width: 18px;
  height: 18px;
  color: var(--text);
}

.cs-link-label {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-bottom: 2px;
}

.cs-link-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.cs-qr {
  background: var(--bg-white);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 48px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.cs-qr::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(99, 102, 241, 0.08), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(16, 185, 129, 0.08), transparent 50%);
  pointer-events: none;
}

.cs-qr > * {
  position: relative;
  z-index: 1;
}

.cs-qr-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: rgba(184, 149, 42, 0.14);
  background: currentColor;
  border: 1px solid var(--border-g);
  margin-bottom: 4px;
}

.cs-qr-icon svg {
  width: 30px;
  height: 30px;
  color: var(--gold-d);
}

.cs-qr-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-d);
  background: rgba(184, 149, 42, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-g);
}

.cs-qr-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 4px 0 0;
  color: var(--text);
}

.cs-qr-sub {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-3, #6b7280);
  max-width: 320px;
  margin: 0 0 8px;
}

.cs-qr-frame {
  position: relative;
  padding: 22px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.18);
  margin: 6px 0 4px;
}

.cs-qr-img {
  display: block;
  width: 260px;
  height: 260px;
  border-radius: 8px;
}

.cs-qr-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 3px solid var(--text, #111);
  border-radius: 4px;
}

.cs-qr-corner.tl {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.cs-qr-corner.tr {
  top: 10px;
  right: 10px;
  border-left: none;
  border-bottom: none;
}

.cs-qr-corner.bl {
  bottom: 10px;
  left: 10px;
  border-right: none;
  border-top: none;
}

.cs-qr-corner.br {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

.cs-qr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  padding: 14px 28px;
  background: var(--text, #111);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  transition: var(--trans, all 0.2s ease);
}

.cs-qr-btn:hover {
  background: var(--gold-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(138, 108, 31, 0.45);
}

.cs-qr-foot {
  font-size: 0.8rem;
  color: var(--text-3, #6b7280);
  margin: 4px 0 0;
}

.cs-form {
  background: var(--bg-white);
  border-radius: 24px;
  border: 1px solid var(--border);
  padding: 36px;
  position: relative;
}

.cs-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.form-sub {
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.88rem;
  color: var(--text);
  font-family: inherit;
  outline: none;
  resize: none;
  transition: var(--trans);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 42, 0.08);
}

.form-group select option {
  background: var(--bg-white);
}

.form-group textarea {
  min-height: 110px;
}

.cs-submit {
  width: 100%;
  padding: 13px;
  border-radius: 50px;
  background: var(--text);
  color: #fff;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: var(--trans);
  margin-top: 4px;
}

.cs-submit:hover {
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  /* background: var(--bg); */
  border-top: 1px solid var(--border);
  padding: 36px 0;
}

.sf-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.sf-copy {
  font-size: 0.78rem;
  color: var(--text-3);
}

.sf-links {
  display: flex;
  gap: 28px;
}

.sf-links a {
  font-size: 0.78rem;
  color: var(--text-3);
  transition: var(--trans);
}

.sf-links a:hover {
  color: var(--text);
}

.sf-social {
  display: flex;
  gap: 10px;
}

.sf-soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-2);
  transition: var(--trans);
}

.sf-soc-btn:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

/* ============================================================
   TOAST
============================================================ */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: var(--trans);
  max-width: 300px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #22c55e;
}

.toast-icon svg {
  width: 22px;
  height: 22px;
}

.toast-title {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.toast-sub {
  font-size: 0.78rem;
  color: var(--text-3);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .svc-card.svc-side {
    flex: 0 0 160px;
  }

  .svc-card.svc-main {
    flex: 0 0 280px;
  }

  .rs-left {
    padding: 60px 40px;
  }

  .rs-right {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero — switch from all-absolute to flex column */
  .hero {
    height: auto;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 72px;
  }

  .hero-name-block {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    padding: 24px 20px 16px;
    text-align: center;
    width: 100%;
    pointer-events: auto;
  }

  .hn-1 {
    font-size: clamp(36px, 13vw, 72px);
  }

  .hn-2 {
    font-size: clamp(52px, 20vw, 120px);
  }

  .hn-tagline {
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .hero-mktg {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    perspective: 1100px;
    width: 280px;
    height: 200px;
    margin: 8px auto 0;
    flex-shrink: 0;
  }

  .mktg-card {
    width: 210px;
    padding: 14px 16px 12px;
  }

  .mktg-bars {
    height: 44px;
  }

  .mktg-chip-1 {
    top: -8px;
    left: -14px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .mktg-chip-2 {
    display: none;
  }

  .mktg-chip-3 {
    bottom: 0;
    left: -8px;
    padding: 7px 10px;
    font-size: 0.82rem;
  }

  .mktg-chip-ico {
    font-size: 0.9rem;
  }

  .hero-foot {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 24px 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
  }

  .hero-caption {
    font-size: 0.72rem;
    max-width: 160px;
    line-height: 1.55;
  }

  .hero-socials {
    gap: 14px;
  }

  /* About */
  .about-section {
    padding: 70px 20px 60px;
  }

  .about-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .about-gallery .ag-item:last-child {
    grid-column: span 2;
  }

  /* Services */
  .svc-pill {
    border-radius: 28px;
    padding: 24px 12px;
    gap: 8px;
  }

  .svc-nav {
    width: 38px;
    height: 38px;
  }

  .svc-card.svc-side {
    flex: 0 0 110px;
    min-height: 160px;
    padding: 20px 14px;
  }

  .svc-card.svc-main {
    flex: 0 0 210px;
    min-height: 260px;
    padding: 28px 20px;
  }

  .svc-card.svc-main .svc-main-icon {
    font-size: 2rem;
    padding-bottom: 16px;
  }

  .svc-card.svc-main .svc-main-name {
    font-size: 1rem;
  }

  /* Clients */
  .clients-section {
    padding: 70px 20px 72px;
  }

  .clients-logo-btn {
    width: calc(50% - 6px);
    max-width: 160px;
    height: 80px;
    padding: 10px;
  }

  .clients-logo-btn img {
    max-width: 100%;
    max-height: 60px;
  }

  .clients-detail {
    flex-direction: column;
    gap: 16px;
    min-height: auto;
  }

  .clients-nav {
    display: none;
  }

  .clients-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px;
    text-align: center;
    height: auto;
    min-height: 520px;
    max-height: none;
  }

  .clients-card-logo-wrap {
    max-width: 280px;
    width: 100%;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    margin: 0 auto;
  }

  .clients-card-body {
    overflow-y: visible;
    justify-content: flex-start;
  }

  .clients-card-desc {
    max-width: none;
  }

  /* Results */
  .rs-wrap {
    flex-direction: column;
    min-height: auto;
  }

  .rs-left {
    flex: none;
    padding: 48px 24px 28px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .rs-right {
    padding: 28px 24px 48px;
    gap: 28px;
  }

  .rs-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Testimonials */
  .testimonial-card {
    min-width: 100%;
    width: 100%;
  }

  /* Contact */
  .cs-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .sf-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-gallery .ag-item:last-child {
    grid-column: auto;
  }

  .hero-socials {
    gap: 12px;
  }

  .rs-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}