/* ═══════════════════════════════════════════════════════════════
   ADSTOWN — iGaming Advertising Agency
   Brutally minimal · Industrial · Luxury polish
   ═══════════════════════════════════════════════════════════════ */

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

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --bg-primary: #0a0a0a;
  --bg-elevated: #0f0f0f;
  --bg-card: #111111;
  --bg-input: transparent;

  --text-primary: #ededed;
  --text-secondary: #888888;
  --text-muted: #555555;

  --accent: #C8A555;
  --accent-hover: #d9ba6e;
  --accent-subtle: rgba(200, 165, 85, 0.08);

  --border: #1a1a1a;
  --border-light: #252525;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --container-width: 1200px;
  --container-narrow: 800px;
  --section-pad: 120px;
  --section-pad-mobile: 64px;

  --header-height: 72px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Base ───────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--accent);
  color: var(--bg-primary);
}

/* ── Typography ─────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--text-primary);
}

.label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.label--accent {
  color: var(--accent);
}

.subtitle {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 600px;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--section-pad) 0;
}

.section--border {
  border-top: 1px solid var(--border);
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn__arrow {
  font-size: 1.1em;
  transition: transform 0.25s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ── Header ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img {
  height: 28px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  position: relative;
}

.header__link:hover,
.header__link--active {
  color: var(--text-primary);
}

.header__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 40px;
  padding-left: 40px;
  border-left: 1px solid var(--border);
}

.header__social-icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.header__social-icon:hover {
  color: var(--text-primary);
}

.header__social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ── Services Dropdown ──────────────────────────────────────── */
.header__dropdown-wrap {
  position: relative;
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  margin-top: -4px;
  min-width: 220px;
  padding: 8px 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s var(--ease-out);
  z-index: 100;
}

.header__dropdown-wrap:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__dropdown a {
  display: block;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.header__dropdown a:hover {
  color: var(--accent);
  background: var(--accent-subtle);
}

/* ── Mobile Menu Toggle ─────────────────────────────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ── Mobile Menu Overlay ────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 1050;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 32px;
}

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

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 12px 0;
  transition: color 0.2s ease;
}

.mobile-menu__link:hover {
  color: var(--text-primary);
}

.mobile-menu__socials {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.mobile-menu__socials a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.mobile-menu__socials a:hover {
  color: var(--accent);
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-height);
  padding-bottom: 80px;
}

.hero__content {
  width: 100%;
}

.hero__label {
  margin-bottom: 24px;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 32px;
}

.hero__text {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 48px;
}

.hero__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

.hero__stats {
  display: flex;
  gap: 48px;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-primary);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── Services Section ───────────────────────────────────────── */
.section__header {
  margin-bottom: 64px;
}

.section__header .label {
  margin-bottom: 16px;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--bg-primary);
  padding: 48px 36px;
  transition: background 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: var(--bg-elevated);
}

.service-card__number {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 28px;
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 28px;
  transition: color 0.2s ease;
}

.service-card:hover .service-card__link {
  color: var(--accent);
}

.service-card__link span {
  transition: transform 0.2s ease;
}

.service-card:hover .service-card__link span {
  transform: translateX(4px);
}

/* ── Results / Stats ────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
}

.stat-block {
  background: var(--bg-primary);
  padding: 48px 36px;
  text-align: left;
}

.stat-block__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-block__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: var(--section-pad) 0;
}

.cta-section h2 {
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .subtitle {
  margin: 0 auto 40px;
  text-align: center;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  transition: transform 0.3s var(--ease-out);
}

.faq-toggle::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer__inner {
  padding-bottom: 28px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 640px;
}

/* ── About Page ─────────────────────────────────────────────── */
.about-hero {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 80px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-challenges {
  list-style: none;
  margin-top: 24px;
}

.about-challenges li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-challenges li::before {
  content: '';
  width: 6px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.about-mission {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.about-intro {
  max-width: 720px;
}

/* ── Team Section ───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 64px;
}

.team-card {
  background: var(--bg-primary);
  padding: 48px 32px;
  text-align: center;
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.team-card__photo {
  width: 200px;
  height: 250px;
  margin: 0 auto 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: block;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
}

.team-card__name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.team-card__role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Brands Section (About) ─────────────────────────────────── */
.brands-list {
  list-style: none;
  margin-bottom: 32px;
}

.brands-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.brands-list li::before {
  content: '';
  width: 6px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.brands-note {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 560px;
}

.brands-logos {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.brands-logos__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  width: max-content;
  animation: brands-scroll 45s linear infinite;
}

.brands-logos__track:hover {
  animation-play-state: paused;
}

@keyframes brands-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brands-logos__slot {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-right: 1px solid var(--border);
}

.brands-logos__slot img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ── Contact Form ───────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-group {
  position: relative;
  border-bottom: 1px solid var(--border);
}

.form-group label {
  position: absolute;
  top: 20px;
  left: 0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.25s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 20px 0;
  padding-top: 36px;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--accent);
}

.form-group:focus-within {
  border-bottom-color: var(--accent);
}

.form-group:focus-within label {
  color: var(--accent);
}

.contact-info {
  padding-top: 16px;
}

.contact-info__item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info__item:first-child {
  border-top: 1px solid var(--border);
}

.contact-info__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-info__value {
  font-size: 1rem;
  color: var(--text-primary);
}

.contact-info__value a {
  transition: color 0.2s ease;
}

.contact-info__value a:hover {
  color: var(--accent);
}

/* ── Service Detail Page ────────────────────────────────────── */
.service-hero {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 80px;
}

.service-hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
}

.service-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-body__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.service-body__text p + p {
  margin-top: 20px;
}

.service-body__text h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 16px;
}

.service-body__text h3:first-child {
  margin-top: 0;
}

.service-body__text ul.service-bullets {
  list-style: none;
  margin: 16px 0 24px;
}

.service-body__text ul.service-bullets li {
  padding: 8px 0;
  padding-left: 18px;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.service-body__text ul.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1.5px;
  background: var(--accent);
}

.service-body__sidebar .label {
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
}

.service-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.service-list li:first-child {
  border-top: 1px solid var(--border);
}

/* ── Placeholder / Coming Soon ──────────────────────────────── */
.placeholder-section {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.placeholder-section .subtitle {
  margin-bottom: 40px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

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

.footer__logo img {
  height: 22px;
  width: auto;
  opacity: 0.5;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--text-secondary);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── Scroll Animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

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

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

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

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

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

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

  .about-content,
  .contact-layout,
  .service-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-mobile);
  }

  .container {
    padding: 0 20px;
  }

  .header__nav,
  .header__socials {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 90vh;
    padding-bottom: 48px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero__stats {
    flex-wrap: wrap;
    gap: 24px 40px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-card {
    padding: 36px 24px;
  }

  .stat-block {
    padding: 36px 24px;
  }

  .team-card {
    padding: 36px 24px;
  }
}

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

  .team-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.75rem;
    width: 100%;
    justify-content: center;
  }
}