/* ============================================================
   XPosure Advertising & Marketing — Premium Theme
   Brand colors pulled from Agency Profile 2026
   Gold #F2B705 · Charcoal #141414 · Cream #F7ECCB
   ============================================================ */

:root {
  --gold: #f2b705;
  --gold-soft: #ffc629;
  --gold-deep: #c8920a;
  --ink: #141414;
  --ink-2: #1f1f1f;
  --charcoal: #242424;
  --cream: #f7eccb;
  --cream-soft: #fbf5e3;
  --grey: #6b6b6b;
  --grey-light: #9a9a9a;
  --line: rgba(0, 0, 0, 0.08);
  --white: #ffffff;
  --shadow-sm: 0 4px 18px rgba(20, 20, 20, 0.07);
  --shadow-md: 0 18px 50px rgba(20, 20, 20, 0.12);
  --shadow-gold: 0 14px 36px rgba(242, 183, 5, 0.32);
  --radius: 16px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

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

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    background 0.3s ease, color 0.3s ease;
  position: relative;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--gold-soft);
  box-shadow: 0 18px 44px rgba(242, 183, 5, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  transform: translateY(-3px);
  background: var(--charcoal);
  box-shadow: var(--shadow-md);
}

.btn .arrow {
  transition: transform 0.35s var(--ease);
}
.btn:hover .arrow {
  transform: translateX(5px);
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 6px 30px rgba(20, 20, 20, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
}

.logo .x {
  color: var(--gold);
}

.nav.on-dark:not(.scrolled) .logo {
  color: var(--white);
}

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

.nav-links a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav.on-dark:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-deep);
}

.nav.on-dark:not(.scrolled) .nav-links a:hover,
.nav.on-dark:not(.scrolled) .nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  padding: 13px 26px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-radius: 100px;
}

.nav-cta {
  box-shadow: 0 6px 16px rgba(242, 183, 5, 0.28);
}

.nav-cta::after {
  display: none; /* no underline on the button like the other links */
}

/* keep the menu list vertically centered with the CTA */
.nav-links {
  margin: 0;
}

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

.burger span {
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s var(--ease);
}

.nav.on-dark:not(.scrolled) .burger span {
  background: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 75% 30%, #2a2a2a 0%, var(--ink) 55%);
  overflow: hidden;
  padding: 140px 0 90px;
}

.hero-bg-shape {
  position: absolute;
  top: 0;
  right: -5%;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.95;
}

.hero-bg-shape::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  clip-path: polygon(46% 0, 100% 0, 100% 100%, 8% 100%);
  opacity: 0.18;
}

.hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 183, 5, 0.35), transparent 70%);
  top: 12%;
  right: 8%;
  filter: blur(40px);
  animation: float 9s ease-in-out infinite;
}

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

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 5.5vw, 4.3rem);
  margin-bottom: 22px;
}

.hero h1 .accent {
  color: var(--gold);
}

.hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
  transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.6s var(--ease);
}

.hero-card:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}

.hero-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 6s ease-in-out infinite;
}

.hero-badge.b1 {
  bottom: 24px;
  left: -34px;
}
.hero-badge.b2 {
  top: 28px;
  right: -26px;
  animation-delay: 1.5s;
}

.hero-badge .num {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold-deep);
  line-height: 1;
}

.hero-badge .lbl {
  font-size: 0.78rem;
  color: var(--grey);
  font-weight: 500;
}

/* Marquee strip of cities */
.cities-strip {
  background: var(--gold);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

.marquee {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll-x 22s linear infinite;
  width: max-content;
}

.marquee span {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 60px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.marquee span::after {
  content: "✦";
  color: rgba(20, 20, 20, 0.5);
}

@keyframes scroll-x {
  to { transform: translateX(-50%); }
}

/* ---------- Section base ---------- */
.section {
  padding: 110px 0;
  position: relative;
}

.section.tight {
  padding: 80px 0;
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.section.cream {
  background: var(--cream-soft);
}

.section-head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

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

.eyebrow::before,
.section-head.left .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.section-head:not(.left) .eyebrow {
  justify-content: center;
}

.section h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--grey);
  font-size: 1.05rem;
}

.section.dark .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Brand banner ---------- */
.banner-section {
  padding: 70px 0;
  background: var(--cream-soft);
}

.brand-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.brand-banner:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(20, 20, 20, 0.22);
}

.brand-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
  padding: 38px 20px;
  border-radius: var(--radius);
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s var(--ease), border-color 0.4s ease;
}

.stat:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.stat .figure {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat .label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

/* ---------- Service cards ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
    border-color 0.45s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card:hover::before {
  transform: scaleX(1);
}

.card .icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--cream);
  margin-bottom: 22px;
  font-size: 1.6rem;
  transition: background 0.4s ease, transform 0.4s var(--ease);
}

.card:hover .icon {
  background: var(--gold);
  transform: rotate(-6deg) scale(1.05);
}

.card h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--grey);
  font-size: 0.95rem;
}

/* ---------- Feature split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 480px;
  object-fit: cover;
}

.split-media .accent-box {
  position: absolute;
  bottom: -26px;
  right: -26px;
  width: 160px;
  height: 160px;
  background: var(--gold);
  border-radius: 22px;
  z-index: -1;
}

.split h2 {
  margin-bottom: 20px;
}

.split p {
  color: var(--grey);
  margin-bottom: 18px;
}

.value-list {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 16px;
}

.value-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.value-list .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 3px;
}

.value-list strong {
  font-family: "Poppins";
  display: block;
  font-weight: 600;
}

.value-list span.txt {
  color: var(--grey);
  font-size: 0.95rem;
}

/* ---------- Methodology / steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step .step-num {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--grey);
  font-size: 0.92rem;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  position: relative;
  overflow: hidden;
  height: 290px;
  background: var(--cream);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.6s var(--ease);
}

.team-card:hover .team-photo img {
  filter: grayscale(0%);
  transform: scale(1.06);
}

.team-info {
  padding: 24px 26px 28px;
}

.team-info .role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}

.team-info h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.team-info ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.team-info li {
  color: var(--grey);
  font-size: 0.88rem;
  padding-left: 18px;
  position: relative;
}

.team-info li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- Clients / logos ---------- */
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.client-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  min-height: 84px;
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease), background 0.35s ease,
    color 0.35s ease, box-shadow 0.35s ease;
}

.client-chip:nth-child(even) {
  background: var(--cream-soft);
}

.client-chip:hover {
  transform: translateY(-4px);
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}

/* ---------- Equipment table ---------- */
.spec-table {
  display: grid;
  gap: 18px;
}

.spec-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: box-shadow 0.4s ease, transform 0.4s var(--ease);
}

.spec-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.spec-row .spec-cat {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.spec-row .spec-cat .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.spec-row ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.spec-row li {
  color: var(--grey);
  font-size: 0.94rem;
  padding-left: 18px;
  position: relative;
}

.spec-row li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: linear-gradient(120deg, var(--ink) 0%, #2c2c2c 100%);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(242, 183, 5, 0.45), transparent 70%);
  filter: blur(30px);
}

.cta-banner h2 {
  color: var(--white);
  position: relative;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  max-width: 560px;
  margin: 0 auto 30px;
}

.cta-banner .hero-actions {
  position: relative;
  justify-content: center;
}

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  background: radial-gradient(circle at 80% 20%, #2b2b2b, var(--ink) 60%);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.9;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 720px;
  margin-bottom: 18px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  font-size: 1.08rem;
}

.crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 26px;
}

.crumbs a:hover {
  color: var(--gold);
}

.crumbs .sep {
  color: var(--gold);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.office-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

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

.office-card.head {
  border-top: 4px solid var(--gold);
}

.office-card .city {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.office-card .tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  display: block;
}

.office-card p {
  color: var(--grey);
  font-size: 0.94rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

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

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream-soft);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

/* registration table */
.reg-list {
  display: grid;
  gap: 12px;
}

.reg-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 24px;
  transition: background 0.3s ease;
}

.reg-row:hover {
  background: var(--cream-soft);
}

.reg-row .badge {
  font-family: "Poppins";
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}

.reg-row .desc {
  color: var(--grey);
  font-size: 0.94rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .logo {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.footer-about p {
  font-size: 0.94rem;
  max-width: 280px;
}

.footer-tagline {
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
  margin-top: 18px;
  font-size: 0.92rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: "Poppins";
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer ul a,
.footer ul li {
  font-size: 0.92rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer ul a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 26px;
  font-size: 0.86rem;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  font-size: 0.85rem;
}

.socials a:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-3px);
}

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

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

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-media {
    order: 0;
  }
  .hero-visual {
    display: none;
  }
  .grid-3,
  .steps,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.45s var(--ease);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    color: var(--white) !important;
    font-size: 1.1rem;
  }
  .burger {
    display: flex;
    z-index: 1100;
  }
  .burger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background: var(--white);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background: var(--white);
  }
  .grid-3,
  .grid-2,
  .steps,
  .team-grid,
  .stats,
  .client-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .spec-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .reg-row {
    grid-template-columns: 80px 1fr;
  }
  .section {
    padding: 72px 0;
  }
  .cta-banner {
    padding: 50px 26px;
  }
  .contact-form {
    padding: 28px;
  }
}
