/* =====================================================================
   adsmedia.app — Creative Agency Website
   Master stylesheet
   Theme: Vibrant & colorful · Accent: Electric lime
   Built with Bootstrap 5 + custom CSS + jQuery
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Design tokens
--------------------------------------------------------------------- */
:root {
  /* Core surfaces */
  --ink:        #0e0e12;
  --ink-soft:   #17171f;
  --ink-card:   #1e1e29;
  --cream:      #f4f3ec;
  --white:      #ffffff;

  /* Brand + vibrant palette */
  --lime:       #cbff36;
  --lime-deep:  #a6e000;
  --violet:     #6c4cf0;
  --pink:       #ff5d8f;
  --cyan:       #28d9c6;
  --orange:     #ff8a3c;
  --blue:       #4f7bff;

  /* Text */
  --text-dark:  #14141a;
  --text-body:  #45454f;
  --text-muted: #9a9aa6;
  --text-light: rgba(255,255,255,.72);

  /* Lines */
  --line-dark:  rgba(255,255,255,.12);
  --line-light: rgba(20,20,26,.12);

  /* Type */
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;

  /* Misc */
  --radius:     22px;
  --radius-sm:  14px;
  --radius-pill: 100px;
  --shadow:     0 30px 70px -30px rgba(14,14,18,.45);
  --shadow-sm:  0 14px 36px -16px rgba(14,14,18,.30);
  --ease:       cubic-bezier(.22,.61,.36,1);
  --nav-h:      82px;
}

/* ---------------------------------------------------------------------
   2. Reset & base
--------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
section { position: relative; }

::selection { background: var(--lime); color: var(--ink); }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--lime-deep); border-radius: 10px; }

/* ---------------------------------------------------------------------
   3. Typography
--------------------------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--text-dark);
}

.display-xl { font-size: clamp(2.9rem, 8vw, 6.6rem); }
.display-lg { font-size: clamp(2.4rem, 5.4vw, 4.6rem); }
.display-md { font-size: clamp(2rem, 3.6vw, 3.2rem); }
.display-sm { font-size: clamp(1.55rem, 2.4vw, 2.15rem); }

.text-italic { font-style: italic; font-family: var(--font-body); font-weight: 400; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------------
   4. Utility helpers
--------------------------------------------------------------------- */
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

.section { padding: clamp(70px, 9vw, 130px) 0; }
.section-tight { padding: clamp(50px, 6vw, 90px) 0; }

.bg-ink   { background: var(--ink); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-lime  { background: var(--lime); }
.bg-violet{ background: var(--violet); }

.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark h5, .on-dark h6 { color: var(--white); }
.on-dark p { color: var(--text-light); }

.text-lime   { color: var(--lime-deep); }
.text-lime-bright { color: var(--lime); }
.text-violet { color: var(--violet); }
.text-pink   { color: var(--pink); }
.text-cyan   { color: var(--cyan); }
.text-orange { color: var(--orange); }

.fw-light { font-weight: 300; }

/* Eyebrow / kicker label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 8px 16px;
  border: 1.5px solid var(--line-light);
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime-deep);
}
.on-dark .eyebrow { color: var(--white); border-color: var(--line-dark); }
.on-dark .eyebrow::before { background: var(--lime); }

/* Section heading block */
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head p.lead { margin-top: 18px; font-size: 1.12rem; }

.highlight-mark {
  background: var(--lime);
  color: var(--ink);
  padding: 0 .12em;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ---------------------------------------------------------------------
   5. Buttons
--------------------------------------------------------------------- */
.btn-x {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: -.01em;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  border: 1.6px solid transparent;
  cursor: pointer;
  transition: transform .28s var(--ease), background .28s var(--ease), color .28s var(--ease), box-shadow .28s var(--ease);
  white-space: nowrap;
}
.btn-x:hover { transform: translateY(-3px); }
.btn-x .arrow { transition: transform .3s var(--ease); }
.btn-x:hover .arrow { transform: translate(3px,-3px); }

.btn-lime    { background: var(--lime); color: var(--ink); }
.btn-lime:hover { box-shadow: 0 16px 34px -12px rgba(166,224,0,.7); color: var(--ink); }

.btn-ink     { background: var(--ink); color: var(--white); }
.btn-ink:hover { color: var(--white); box-shadow: var(--shadow-sm); }

.btn-outline-dark { background: transparent; color: var(--text-dark); border-color: var(--line-light); }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn-outline-light { background: transparent; color: var(--white); border-color: var(--line-dark); }
.btn-outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn-white   { background: var(--white); color: var(--ink); }
.btn-white:hover { color: var(--ink); box-shadow: 0 16px 34px -16px rgba(0,0,0,.4); }

.btn-sm-x { padding: 12px 22px; font-size: .9rem; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 2px solid var(--lime);
  padding-bottom: 3px;
}
.link-arrow .arrow { transition: transform .3s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(5px); }
.on-dark .link-arrow { color: var(--white); }

/* ---------------------------------------------------------------------
   6. Navbar
--------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.site-nav.scrolled {
  background: rgba(14,14,18,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: 70px;
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.site-nav .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -.03em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 2px;
}
.brand .dot { color: var(--lime); }
.brand .brand-mark {
  width: 30px; height: 30px;
  margin-right: 9px;
  background: var(--lime);
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1.05rem;
  transform: rotate(-8deg);
  transition: transform .4s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(8deg) scale(1.08); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .98rem;
  color: rgba(255,255,255,.82);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active {
  color: var(--ink);
  background: var(--lime);
}

.nav-right { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 999;
  padding: 110px 28px 40px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--lime); }
.mobile-menu .mobile-cta { margin-top: 30px; }

/* ---------------------------------------------------------------------
   7. Hero (home)
--------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    linear-gradient(
      rgba(14,14,18,.72),
      rgba(14,14,18,.82)
    );

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  padding: calc(var(--nav-h) + 60px) 0 90px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 50px;
  align-items: center;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.9rem, 7.4vw, 6.4rem);
  margin-bottom: 26px;
}
.hero h1 .word-lime { color: var(--lime); }
.hero h1 .word-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--lime);
}
.hero-sub {
  color: var(--text-light);
  font-size: 1.18rem;
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 38px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-meta .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--lime);
  line-height: 1;
}
.hero-meta .lbl { color: var(--text-light); font-size: .92rem; margin-top: 6px; }

/* Hero visual collage */
.hero-visual { position: relative; height: 480px; }
.hero-blob {
  position: absolute;
  border-radius: 30px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  overflow: hidden;
}
.hero-blob span { position: relative; z-index: 2; }
.hb-1 {
  width: 62%; height: 56%;
  top: 0; right: 0;
  background: linear-gradient(150deg, var(--lime), var(--lime-deep));
  color: var(--ink);
}
.hb-2 {
  width: 50%; height: 46%;
  bottom: 0; left: 0;
  background: linear-gradient(150deg, var(--violet), #4a30c0);
  color: var(--white);
}
.hb-3 {
  width: 42%; height: 40%;
  bottom: 8%; right: 6%;
  background: linear-gradient(150deg, var(--pink), #e0376b);
  color: var(--white);
}
.hb-4 {
  width: 30%; height: 30%;
  top: 14%; left: 0;
  background: linear-gradient(150deg, var(--cyan), #15b3a3);
  color: var(--ink);
}
.hero-star {
  position: absolute;
  top: 40%; left: 44%;
  width: 78px; height: 78px;
  z-index: 5;
  animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-16px); }
}
.floaty { animation: float-y 6s var(--ease) infinite; }
.floaty.d1 { animation-delay: -2s; }
.floaty.d2 { animation-delay: -4s; }

/* ---------------------------------------------------------------------
   8. Marquee
--------------------------------------------------------------------- */
.marquee {
  background: var(--lime);
  padding: 20px 0;
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.marquee.ink { background: var(--ink); border-color: var(--lime); }
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
}
.marquee.ink .marquee-track .item { color: var(--white); }
.marquee-track .item .star { color: var(--violet); font-size: 1.1rem; }
.marquee.ink .marquee-track .item .star { color: var(--lime); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------------------------------------------------------------------
   9. Cards — services
--------------------------------------------------------------------- */
.service-card {
  background: var(--ink-card);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.service-card .num {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--text-muted);
}
.service-card .ic {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: 20px 0 22px;
  font-size: 1.7rem;
  color: var(--ink);
  transition: transform .4s var(--ease);
}
.service-card:hover .ic { transform: rotate(-8deg) scale(1.06); }
.service-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: .98rem; }
.service-card .tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px;
}
.service-card .tags span {
  font-size: .78rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-light);
  border: 1px solid var(--line-dark);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 4px; width: 0;
  transition: width .45s var(--ease);
}
.service-card:hover { transform: translateY(-8px); }
.service-card:hover::after { width: 100%; }

.ic-lime  { background: var(--lime); }
.ic-violet{ background: var(--violet); color: var(--white) !important; }
.ic-pink  { background: var(--pink); color: var(--white) !important; }
.ic-cyan  { background: var(--cyan); }
.ic-orange{ background: var(--orange); color: var(--white) !important; }
.ic-blue  { background: var(--blue); color: var(--white) !important; }

.after-lime::after  { background: var(--lime); }
.after-violet::after{ background: var(--violet); }
.after-pink::after  { background: var(--pink); }
.after-cyan::after  { background: var(--cyan); }
.after-orange::after{ background: var(--orange); }
.after-blue::after  { background: var(--blue); }

/* Light service card (services page detail) */
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 30px;
  align-items: start;
  padding: 44px 0;
  border-top: 1.5px solid var(--line-light);
  transition: padding-left .4s var(--ease);
}
.service-row:hover { padding-left: 14px; }
.service-row:last-child { border-bottom: 1.5px solid var(--line-light); }
.service-row .row-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-muted);
}
.service-row h3 { font-size: clamp(1.6rem,2.6vw,2.3rem); margin-bottom: 12px; }
.service-row .row-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.service-row .row-tags span {
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 500;
  background: var(--white);
  border: 1.5px solid var(--line-light);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}
.service-row .row-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.6rem; color: var(--ink);
}

/* ---------------------------------------------------------------------
   10. Project cards
--------------------------------------------------------------------- */
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
  height: 100%;
}
.project-thumb {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-thumb .thumb-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: -.02em;
  text-align: center;
  padding: 20px;
  mix-blend-mode: normal;
}
.project-thumb .corner-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .04em;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}
.project-thumb .view-btn {
  position: absolute;
  inset: 0;
  background: rgba(14,14,18,.78);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.project-card:hover .view-btn { opacity: 1; }
.project-meta { padding: 20px 4px 4px; }
.project-meta .cat {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lime-deep);
}
.project-meta h3 {
  font-size: 1.4rem;
  margin: 8px 0 4px;
}
.project-meta .yr { color: var(--text-muted); font-size: .9rem; }
.on-dark .project-meta h3 { color: var(--white); }

/* Portfolio filter buttons */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 46px;
}
.filter-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1.6px solid var(--line-light);
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--lime); border-color: var(--ink); }

.project-item { transition: opacity .4s var(--ease), transform .4s var(--ease); }
.project-item.hide {
  display: none;
}

/* ---------------------------------------------------------------------
   11. Stats / counters
--------------------------------------------------------------------- */
.stats-band { background: var(--lime); }
.stat-cell { text-align: center; padding: 14px; }
.stat-cell .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat-cell .stat-num .suffix { color: var(--violet); }
.stat-cell .stat-label {
  font-family: var(--font-display);
  font-weight: 500;
  margin-top: 10px;
  color: var(--ink);
}
.stat-divider { width: 1.5px; background: rgba(14,14,18,.18); }

/* ---------------------------------------------------------------------
   12. About / split media
--------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,80px); align-items: center; }

.media-stack { position: relative; }
.media-card {
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
}
.media-badge {
  position: absolute;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.media-badge .big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--lime);
  line-height: 1;
}
.media-badge .small { font-size: .85rem; color: var(--text-light); margin-top: 4px; }

/* feature list */
.feature-list { margin-top: 26px; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
}
.on-dark .feature-list li { border-color: var(--line-dark); }
.feature-list li .tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: .8rem;
  margin-top: 3px;
}
.feature-list li strong {
  font-family: var(--font-display);
  color: var(--text-dark);
}
.on-dark .feature-list li strong { color: var(--white); }

/* ---------------------------------------------------------------------
   13. Process / steps
--------------------------------------------------------------------- */
.process-step {
  border-top: 1.5px solid var(--line-dark);
  padding: 34px 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  transition: padding-left .4s var(--ease);
}
.process-step:hover { padding-left: 12px; }
.process-step:last-child { border-bottom: 1.5px solid var(--line-dark); }
.process-step .step-no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--lime);
  line-height: 1;
}
.process-step h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 8px; }
.process-step p { color: var(--text-light); max-width: 560px; }

/* on light bg */
.process-light .process-step { border-color: var(--line-light); }
.process-light .process-step .step-no { color: var(--lime-deep); }
.process-light .process-step h3 { color: var(--text-dark); }
.process-light .process-step p { color: var(--text-body); }

/* ---------------------------------------------------------------------
   14. Team cards
--------------------------------------------------------------------- */
.team-card { text-align: left; }
.team-photo {
  border-radius: var(--radius);
  aspect-ratio: 3/3.4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4rem;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease);
}
.team-card:hover .team-photo { transform: translateY(-6px); }
.team-photo .team-social {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(14,14,18,.86);
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 14px;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.team-card:hover .team-social { transform: translateY(0); }
.team-photo .team-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line-dark);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: .85rem;
}
.team-photo .team-social a:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.team-card .team-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 18px 0 2px;
  color: var(--text-dark);
}
.on-dark .team-card .team-name { color: var(--white); }
.team-card .team-role { color: var(--lime-deep); font-family: var(--font-display); font-weight: 500; font-size: .95rem; }

/* ---------------------------------------------------------------------
   15. Testimonials
--------------------------------------------------------------------- */
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 34px;
  height: 100%;
  border: 1px solid var(--line-light);
  transition: transform .4s var(--ease);
}
.testi-card:hover { transform: translateY(-6px); }
.testi-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: .6;
  color: var(--lime);
}
.testi-card .testi-text {
  font-size: 1.12rem;
  color: var(--text-dark);
  margin: 18px 0 26px;
  font-weight: 400;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}
.testi-author .who strong { font-family: var(--font-display); display: block; color: var(--text-dark); }
.testi-author .who span { font-size: .88rem; color: var(--text-muted); }
.stars { color: var(--orange); letter-spacing: 2px; font-size: .9rem; }

/* ---------------------------------------------------------------------
   16. Logo strip
--------------------------------------------------------------------- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 54px;
}
.logo-strip .client-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-muted);
  letter-spacing: -.02em;
  transition: color .3s var(--ease);
}
.on-dark .logo-strip .client-logo:hover { color: var(--lime); }
.logo-strip .client-logo:hover { color: var(--text-dark); }

/* ---------------------------------------------------------------------
   17. CTA band
--------------------------------------------------------------------- */
.cta-band {
  background: var(--lime);
  border-radius: clamp(24px,4vw,42px);
  padding: clamp(48px,7vw,90px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(2.2rem,5.4vw,4.4rem); margin-bottom: 22px; }
.cta-band p { max-width: 540px; margin: 0 auto 32px; color: var(--text-dark); font-size: 1.1rem; }
.cta-band .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-deco {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 700;
  opacity: .5;
}

/* ---------------------------------------------------------------------
   18. Page header (inner pages)
--------------------------------------------------------------------- */
.page-header {
  background: var(--ink);
  padding: calc(var(--nav-h) + 60px) 0 90px;
  position: relative;
  overflow: hidden;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  max-width: 14ch;
}
.page-header h1 em { font-style: normal; color: var(--lime); }
.page-header p { color: var(--text-light); max-width: 540px; margin-top: 20px; font-size: 1.12rem; }
.breadcrumb-x {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-display);
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.breadcrumb-x a:hover { color: var(--lime); }
.breadcrumb-x .sep { color: var(--lime); }
.page-header .header-deco {
  position: absolute;
  right: -40px; bottom: -60px;
  width: 280px; height: 280px;
  opacity: .9;
}

/* ---------------------------------------------------------------------
   19. Forms
--------------------------------------------------------------------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px,4vw,48px);
  border: 1px solid var(--line-light);
}
.field { margin-bottom: 20px; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-dark);
  display: block;
  margin-bottom: 8px;
}
.field label .req { color: var(--pink); }
.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.6px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--lime-deep);
  background: var(--white);
}
.field input.err,
.field textarea.err,
.field select.err { border-color: var(--pink); background: #fff4f7; }
.field .err-msg {
  display: none;
  color: var(--pink);
  font-size: .82rem;
  margin-top: 6px;
  font-weight: 500;
}
.field .err-msg.show { display: block; }

/* chips for budget/service select */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .9rem;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1.6px solid var(--line-light);
  background: var(--white);
  cursor: pointer;
  transition: all .2s var(--ease);
  user-select: none;
}
.chip:hover { border-color: var(--ink); }
.chip.selected { background: var(--lime); border-color: var(--lime); color: var(--ink); }
.chip-row .err-msg { flex-basis: 100%; margin-top: 2px; }

.form-success {
  display: none;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.form-success .ok-circle {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.form-success h3 { color: var(--white); margin-bottom: 10px; }
.form-success p { color: var(--text-light); }

/* Contact info card */
.info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-light);
  background: var(--white);
  transition: transform .35s var(--ease);
  height: 100%;
}
.info-card:hover { transform: translateY(-5px); }
.info-card .info-ic {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--ink);
}
.info-card h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 4px; }
.info-card p { font-size: .96rem; margin: 0; }
.info-card a:hover { color: var(--lime-deep); }

/* ---------------------------------------------------------------------
   20. Accordion / FAQ
--------------------------------------------------------------------- */
.faq-item {
  border-bottom: 1.5px solid var(--line-light);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--text-dark);
}
.faq-q .faq-icon {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: transform .35s var(--ease), background .3s var(--ease);
}
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); background: var(--lime); color: var(--ink); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a-inner { padding: 0 0 26px; max-width: 760px; }

/* ---------------------------------------------------------------------
   21. Value / mission cards
--------------------------------------------------------------------- */
.value-card {
  border-radius: var(--radius);
  padding: 34px 30px;
  height: 100%;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease);
}
.value-card:hover { transform: translateY(-8px); }
.value-card .v-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  opacity: .55;
}
.value-card h3 { font-size: 1.5rem; margin: 16px 0 10px; }
.value-card p { color: rgba(20,20,26,.78); }
.value-card.dark { color: var(--white); }
.value-card.dark p { color: var(--text-light); }

/* ---------------------------------------------------------------------
   22. Misc — back to top, dividers, badges
--------------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  border: none;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px) scale(.8);
  pointer-events: none;
  transition: all .35s var(--ease);
  box-shadow: var(--shadow-sm);
}
.to-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); }

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .85rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}
.pill-badge .dot-live {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(203,255,54,.7); }
  70%  { box-shadow: 0 0 0 9px rgba(203,255,54,0); }
  100% { box-shadow: 0 0 0 0 rgba(203,255,54,0); }
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 4000;
  display: grid;
  place-items: center;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader .load-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
}
.preloader .load-brand .dot { color: var(--lime); }
.preloader .load-bar {
  width: 180px; height: 4px;
  background: rgba(255,255,255,.14);
  border-radius: 4px;
  margin-top: 16px;
  overflow: hidden;
}
.preloader .load-bar i {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--lime);
  border-radius: 4px;
  animation: load 1s var(--ease) infinite;
}
@keyframes load {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ---------------------------------------------------------------------
   23. Footer
--------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  padding: 80px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand { font-size: 1.7rem; margin-bottom: 16px; }
.footer-brand p { color: var(--text-light); max-width: 300px; }
.footer-col h5 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { color: var(--text-light); font-size: .97rem; }
.footer-col ul li a:hover { color: var(--lime); }

.footer-news p { color: var(--text-light); margin-bottom: 16px; }
.news-input {
  display: flex;
  background: var(--ink-card);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-pill);
  padding: 5px 5px 5px 20px;
}
.news-input input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
}
.news-input input::placeholder { color: var(--text-muted); }
.news-input input:focus { outline: none; }
.news-input button {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform .25s var(--ease);
}
.news-input button:hover { transform: rotate(-12deg); }

.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: .9rem;
}
.footer-socials a:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); transform: translateY(-3px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 26px;
  color: var(--text-muted);
  font-size: .9rem;
}
.footer-bottom a:hover { color: var(--lime); }

/* Giant footer wordmark */
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 16vw, 14rem);
  line-height: .8;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.12);
  text-align: center;
  padding: 30px 0 0;
  user-select: none;
}
.footer-wordmark span { color: rgba(203,255,54,.16); -webkit-text-stroke: 0; }

/* ---------------------------------------------------------------------
   24. Scroll reveal
--------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }
[data-reveal][data-delay="5"] { transition-delay: .5s; }

/* ---------------------------------------------------------------------
   25. Responsive
--------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 991px) {
  :root { --nav-h: 72px; }
  .nav-links, .nav-right .btn-x { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 380px; max-width: 460px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse > div:first-child { order: 2; }
  .stat-divider { display: none; }
  .service-row { grid-template-columns: 1fr; gap: 14px; }
  .service-row .row-cta { margin-top: 8px; }
  .process-step { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  .container-wide { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero { padding: calc(var(--nav-h) + 40px) 0 64px; }
  .hero-visual { height: 320px; }
  .hero-meta { gap: 24px; }
  .hero-actions .btn-x { flex: 1; justify-content: center; }
  .marquee-track .item { font-size: 1.2rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .cta-band { padding: 44px 24px; }
  .btn-x { padding: 14px 24px; }
  .stat-cell .stat-num { font-size: 3.2rem; }
  .testi-card { padding: 30px 24px; }
}
