/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal: #2FC3C7;
  --teal-hover: #25b0b4;
  --dark: #111111;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-heading: 'Roboto Condensed', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

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

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

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.main {
  background: var(--white);
  color: var(--gray-900);
}

.text-gradient {
  background: linear-gradient(to right, var(--teal), #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.link--teal {
  color: var(--teal);
  transition: all 0.3s;
}
.link--teal:hover {
  text-decoration: underline;
}

.link--white {
  color: var(--white);
  transition: all 0.3s;
}
.link--white:hover {
  text-decoration: underline;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animate-in states */
[data-animate] {
  opacity: 0;
}

[data-animate="fade-up"].animate-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

[data-animate="fade-left"].animate-in {
  animation: fadeInLeft 0.8s ease-out forwards;
}

[data-animate="fade"].animate-in {
  animation: fadeIn 1s ease-out forwards;
}

[data-animate="scale"].animate-in {
  animation: scaleIn 0.6s ease-out forwards;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.section--white {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.section--teal {
  background-color: var(--teal);
}

.section__title {
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 5rem;
  color: var(--gray-900);
}

.section__title--white {
  color: var(--white);
}

/* ============================================================
   BUTTON
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--teal);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

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

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

.btn--large {
  padding: 1.5rem 3rem;
}

.btn__icon {
  transition: transform 0.3s;
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  transition: all 0.5s;
  background: transparent;
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gray-200);
}

.navbar__logo {
  height: 2.25rem;
  width: auto;
  transition: all 0.5s;
  filter: brightness(0) invert(1);
}

.navbar--scrolled .navbar__logo {
  filter: brightness(0);
}

.navbar__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.navbar__link {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-heading);
  letter-spacing: 0.025em;
  transition: color 0.5s;
  color: rgba(255, 255, 255, 0.7);
}

.navbar__link:hover {
  color: var(--white);
}

.navbar--scrolled .navbar__link {
  color: var(--gray-500);
}

.navbar--scrolled .navbar__link:hover {
  color: var(--gray-900);
}

.navbar__cta {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  border-radius: 2px;
  transition: all 0.5s;
}

.navbar__cta:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.navbar--scrolled .navbar__cta {
  border-color: var(--gray-300);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  color: var(--gray-900);
}

.navbar--scrolled .navbar__cta:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* ============================================================
   HERO
   FIX: Two nested divs — outer has padding + flex,
   inner has max-width without padding so title text
   gets full 56rem width (not reduced by padding).
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #1f2937;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent, rgba(0,0,0,0.5));
}

/* Outer wrapper: full width, flex centering, padding */
.hero__content-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 12rem;
  text-align: center;
}

/* Inner wrapper: max-width only, NO padding */
.hero__content {
  max-width: 56rem;
  margin: 0 auto;
  width: 100%;
}

.hero__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
}

.hero__subtitle {
  margin-top: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.025em;
  font-weight: 400;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.hero__description {
  margin-top: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.025em;
  font-weight: 400;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.hero__cta-wrap {
  margin-top: 3rem;
  margin-bottom: 0;
}

.hero__bottom {
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 100%;
  padding: 0 1.5rem;
  z-index: 10;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.hero__stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-heading);
}

.hero__stat-divider {
  height: 2rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.hero__branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  opacity: 0.7;
}

.hero__branding-logo {
  height: 1.25rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.hero__branding-sep {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.hero__branding-text {
  font-size: 0.875rem;
  font-family: var(--font-heading);
  color: var(--gray-300);
  text-decoration: none;
}

/* ============================================================
   REGIONS & COUNTRIES
   ============================================================ */
.regions__block {
  margin-bottom: 8rem;
}

.regions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.region-card {
  position: relative;
  border-radius: 2px;
  padding: 2rem;
  transition: all 0.5s;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--teal);
}

.region-card__inner {
  position: relative;
  z-index: 10;
}

.region-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.region-card__icon {
  color: var(--teal);
}

.region-card__code {
  font-size: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.region-card__name {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gray-900);
  letter-spacing: -0.025em;
}

.region-card__bg-number {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  font-size: 8rem;
  line-height: 1;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.06;
  user-select: none;
  font-family: var(--font-heading);
  pointer-events: none;
}

/* Map */
.countries__map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2688 / 1600;
  -webkit-mask-image: radial-gradient(ellipse at center, black 55%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, black 55%, transparent 100%);
}

.countries__map {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-marker {
  position: absolute;
  z-index: 2;
}

.map-marker__dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--teal);
  transition: transform 0.3s;
}

.map-marker:hover .map-marker__dot {
  transform: translateX(-50%) scale(1.5);
}

.map-marker__line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: var(--teal);
  transform-origin: bottom;
}

.map-marker__line--down {
  transform-origin: top;
}

.map-marker__line--left {
  transform-origin: right;
}

.map-marker__badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--white);
  border: 1px solid var(--teal);
  white-space: nowrap;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(47, 195, 199, 0.12);
}

.map-marker__badge span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--teal);
}

.map-marker:hover .map-marker__badge {
  transform: translateX(-50%) scale(1.1);
  background: var(--teal);
  border-color: var(--teal);
}

.map-marker:hover .map-marker__badge span {
  color: var(--white);
}

.map-marker:hover .map-marker__badge svg {
  stroke: var(--white);
}

.map-marker:hover .map-marker__badge:not(.map-marker__badge--down) {
  transform: translateX(-50%) scale(1.1) translateY(-4px);
}

.map-marker--down:hover .map-marker__badge--down {
  transform: translateX(-50%) scale(1.1) translateY(4px);
}

/* Hover for inline-positioned badges (France) */
.map-marker:hover .map-marker__badge[style*="transform:none"] {
  transform: scale(1.1) !important;
}

/* Map markers – mobile */
@media (max-width: 767px) {
  /* Move mask to <img> only so markers can extend beyond the container */
  .countries__map-wrap {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
  }

  .countries__map {
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 80%, transparent 100%);
  }

  /* Base mobile sizes */
  .map-marker__dot {
    width: 6px;
    height: 6px;
  }

  .map-marker__badge {
    padding: 0.25rem 0.5rem;
    gap: 0.3rem;
  }

  .map-marker__badge span {
    font-size: 8px;
  }

  .map-marker__badge svg {
    width: 9px;
    height: 9px;
  }

  /* --- Per-country overrides --- */

  /* Szwecja – UP, long line for clear separation from Polska */
  .map-marker[data-country="se"] .map-marker__line {
    height: 28px !important;
    bottom: 4px !important;
    width: 1px !important;
  }
  .map-marker[data-country="se"] .map-marker__badge {
    bottom: 32px !important;
  }

  /* Polska – UP, shorter line so badge sits lower per request */
  .map-marker[data-country="pl"] .map-marker__line {
    height: 16px !important;
    bottom: 4px !important;
    width: 1px !important;
  }
  .map-marker[data-country="pl"] .map-marker__badge {
    bottom: 20px !important;
  }

  /* Niemcy – DOWN, medium-long line */
  .map-marker[data-country="de"] .map-marker__line {
    height: 34px !important;
    top: 4px !important;
    width: 1px !important;
  }
  .map-marker[data-country="de"] .map-marker__badge {
    top: 38px !important;
  }

  /* Francja – LEFT, long horizontal line reaching the country */
  .map-marker[data-country="fr"] .map-marker__line {
    width: 32px !important;
    height: 1px !important;
    right: 0 !important;
  }
  .map-marker[data-country="fr"] .map-marker__badge {
    right: 32px !important;
    bottom: auto !important;
  }

  /* Chiny – UP */
  .map-marker[data-country="cn"] .map-marker__line {
    height: 22px !important;
    bottom: 4px !important;
    width: 1px !important;
  }
  .map-marker[data-country="cn"] .map-marker__badge {
    bottom: 26px !important;
  }

  /* Korea Płd. – DOWN */
  .map-marker[data-country="kr"] .map-marker__line {
    height: 20px !important;
    top: 4px !important;
    width: 1px !important;
  }
  .map-marker[data-country="kr"] .map-marker__badge {
    top: 24px !important;
  }

  /* Japonia – UP, longer line to separate from Chiny */
  .map-marker[data-country="jp"] .map-marker__line {
    height: 36px !important;
    bottom: 4px !important;
    width: 1px !important;
  }
  .map-marker[data-country="jp"] .map-marker__badge {
    bottom: 40px !important;
  }
}

/* ============================================================
   PRODUCT CATEGORIES
   FIX: Proper content wrapper targeting, centered text + icons
   ============================================================ */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.category-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.5s;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.category-card:hover {
  background: rgba(255, 255, 255, 0.18);
}

.category-card__inner {
  position: relative;
  z-index: 10;
  padding: 2rem 1.5rem;
  text-align: center;
}

.category-card__icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.category-card__name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.025em;
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section__layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.quote-section__author {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-section__photo-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gray-100);
}

.quote-section__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.quote-section__author-info {
  margin-top: 1.5rem;
  text-align: center;
}

.quote-section__author-name {
  color: var(--gray-900);
  font-weight: 500;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  letter-spacing: -0.025em;
}

.quote-section__author-role {
  color: var(--gray-500);
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: 0.25rem;
}

.quote-section__author-logo {
  margin-top: 0.75rem;
}

.quote-section__annalect-logo {
  height: 1rem;
  width: auto;
  filter: brightness(0);
  opacity: 0.3;
  margin: 0 auto;
}

.quote-section__icon {
  margin-bottom: 2rem;
}

.quote-section__text {
  font-size: 1.125rem;
  color: var(--gray-700);
  font-weight: 400;
  line-height: 1.625;
}

.quote-section__text p {
  margin-bottom: 1.5rem;
}

.quote-section__text p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   KEY FINDINGS
   ============================================================ */
.findings__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.findings__card {
  position: relative;
  padding-left: 2rem;
}

.findings__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, white, rgba(255,255,255,0.5), transparent);
  opacity: 0.6;
}

.findings__bg-index {
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-size: 10rem;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
  opacity: 0.08;
  user-select: none;
  font-family: var(--font-heading);
  pointer-events: none;
}

.findings__value-wrap {
  position: relative;
  z-index: 10;
  margin-bottom: 1.5rem;
}

.findings__value {
  font-size: 4.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--white);
  letter-spacing: -0.025em;
}

.findings__suffix {
  font-size: 2.25rem;
  color: var(--white);
  margin-left: 0.25rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.findings__description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.625;
  max-width: 20rem;
  position: relative;
  z-index: 10;
}

/* ============================================================
   FOR WHOM
   ============================================================ */
.for-whom__layout {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.for-whom__sticky {
  /* lg: sticky */
}

.for-whom__cta {
  margin-top: 3rem;
}

.for-whom__email {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--gray-400);
  font-weight: 400;
}

.for-whom__right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Audience Card */
.audience-card {
  position: relative;
  width: 100%;
  border-radius: 2px;
  overflow: hidden;
  cursor: default;
  border: 1px solid var(--gray-200);
  transition: all 0.5s;
}

.audience-card:hover {
  border-color: rgba(47, 195, 199, 0.4);
}

.audience-card__fill {
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.audience-card:hover .audience-card__fill {
  transform: translateY(0);
}

.audience-card__content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
}

.audience-card__icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 2px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s;
}

.audience-card:hover .audience-card__icon-wrap {
  border-color: rgba(255, 255, 255, 0.3);
}

.audience-card__icon {
  color: var(--teal);
  transition: color 0.3s;
}

.audience-card:hover .audience-card__icon {
  color: var(--white);
}

.audience-card__text {
  flex: 1;
}

.audience-card__title {
  font-size: 1.25rem;
  color: var(--gray-900);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
  transition: all 0.5s;
}

.audience-card:hover .audience-card__title {
  color: var(--white);
  transform: translateX(0.5rem);
}

.audience-card__desc {
  font-size: 1.125rem;
  color: var(--gray-500);
  font-weight: 400;
  line-height: 1.625;
  transition: all 0.5s 75ms;
}

.audience-card:hover .audience-card__desc {
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(0.5rem);
}

.audience-card__arrow-wrap {
  position: relative;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.audience-card__arrow--out {
  color: var(--gray-400);
  transition: transform 0.5s;
}

.audience-card:hover .audience-card__arrow--out {
  transform: translate(2rem, -2rem);
}

.audience-card__arrow--in {
  position: absolute;
  color: var(--white);
  transform: translate(-2rem, 2rem);
  transition: transform 0.5s 100ms;
}

.audience-card:hover .audience-card__arrow--in {
  transform: translate(0, 0);
}

/* ============================================================
   AUTHORS
   ============================================================ */
.authors__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 5rem;
}

.authors__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.author-card {
  text-align: center;
}

.author-card__photo-wrap {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.4);
  transition: all 0.5s;
}

.author-card:hover .author-card__photo-wrap {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

.author-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s ease-out;
}

.author-card:hover .author-card__photo {
  transform: scale(1.05);
}

.author-card__name {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 0.25rem;
}

.author-card__role {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   METHODOLOGY
   ============================================================ */
.methodology__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.methodology__card {
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  padding: 2rem;
  background: var(--white);
  transition: all 0.5s;
}

.methodology__card:hover {
  border-color: var(--gray-300);
}

.methodology__card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.methodology__icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 2px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.5s;
}

.methodology__card:hover .methodology__icon-wrap {
  border-color: rgba(47, 195, 199, 0.4);
  box-shadow: 0 0 20px rgba(47, 195, 199, 0.1);
}

.methodology__icon {
  color: var(--gray-400);
  transition: color 0.5s;
}

.methodology__card:hover .methodology__icon {
  color: var(--teal);
}

.methodology__label {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

.methodology__value {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gray-900);
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.methodology__desc {
  font-size: 1.125rem;
  color: var(--gray-500);
  font-weight: 400;
  line-height: 1.625;
}

/* ============================================================
   ORDER CTA
   ============================================================ */
.order {
  position: relative;
  padding: 8rem 0 3rem;
  overflow: hidden;
}

.order__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.order__content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.order__title {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.order__subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.order__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 4rem;
}

.order__feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.order__feature svg {
  flex-shrink: 0;
}

.order__feature span {
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 400;
}

.order__price-wrap {
  margin-bottom: 3rem;
  display: inline-block;
}

.order__price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  display: block;
  margin-bottom: 0.75rem;
}

.order__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  box-shadow: 0 4px 0 0 white;
  padding-bottom: 4px;
}

.order__price-value {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--white);
  letter-spacing: -0.025em;
}

.order__price-currency {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
}

.order__price-vat {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.25rem;
}

.order__email {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.order__branding {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.order__branding-logo {
  height: 1.25rem;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.order__branding-sep {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.order__branding-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--white);
  color: var(--gray-900);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer__logo {
  height: 1.75rem;
  width: auto;
  filter: brightness(0);
}

.footer__copyright {
  font-size: 0.75rem;
  color: var(--gray-400);
}

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

/* ============================================================
   RESPONSIVE — sm (640px)
   MUST come BEFORE md so md can override where needed.
   ============================================================ */
@media (min-width: 640px) {
  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .order__features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — md (768px)
   ============================================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }

  .section {
    padding: 12rem 0;
  }

  .section__title {
    font-size: 3.75rem;
  }

  /* Navbar */
  .navbar {
    padding: 1.25rem 3rem;
  }

  .navbar__nav {
    display: flex;
  }

  /* Hero */
  .hero__content-wrap {
    padding: 6rem 3rem 12rem;
  }

  .hero__title {
    font-size: 4rem;
  }

  .hero__subtitle {
    font-size: 1.5rem;
  }

  .hero__description {
    font-size: 1.25rem;
  }

  .hero__bottom {
    padding: 0 3rem;
  }

  .hero__stats {
    gap: 2rem;
  }

  .hero__stat-value {
    font-size: 1.5rem;
  }

  /* Regions */
  .regions__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .region-card {
    padding: 2.5rem;
  }

  .region-card__name {
    font-size: 1.5rem;
  }

  .map-marker__badge span {
    font-size: 0.75rem;
  }

  /* Categories */
  .categories__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-card__inner {
    padding: 2.5rem 1.5rem;
  }

  .category-card__name {
    font-size: 1.125rem;
  }

  /* Quote */
  .quote-section__text {
    font-size: 1.25rem;
  }

  /* Findings */
  .findings__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .findings__card {
    padding-left: 2.5rem;
  }

  .findings__card--bordered {
    padding-right: 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .findings__value {
    font-size: 6rem;
  }

  .findings__suffix {
    font-size: 3rem;
  }

  .findings__description {
    font-size: 1.25rem;
  }

  /* Audience */
  .audience-card__content {
    padding: 2.5rem;
  }

  .audience-card__title {
    font-size: 1.5rem;
  }

  /* Authors */
  .authors__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .author-card__name {
    font-size: 1.25rem;
  }

  .author-card__role {
    font-size: 1.25rem;
  }

  /* Methodology */
  .methodology__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .methodology__card {
    padding: 2.5rem;
  }

  .methodology__value {
    font-size: 1.875rem;
  }

  /* Order */
  .order {
    padding: 12rem 0 6rem;
  }

  .order__content {
    padding: 0 3rem;
  }

  .order__title {
    font-size: 4.5rem;
  }

  .order__subtitle {
    font-size: 1.25rem;
  }

  .order__features {
    grid-template-columns: repeat(5, 1fr);
  }

  .order__price-value {
    font-size: 3.75rem;
  }

  /* Footer */
  .footer__inner {
    flex-direction: row;
  }
}

/* ============================================================
   RESPONSIVE — lg (1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .hero__title {
    font-size: 5rem;
  }

  /* Categories */
  .categories__grid {
    grid-template-columns: repeat(7, 1fr);
  }

  /* Quote layout */
  .quote-section__layout {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }

  .quote-section__author {
    align-items: flex-start;
  }

  .quote-section__author-info {
    text-align: left;
  }

  .quote-section__annalect-logo {
    margin: 0;
  }

  .quote-section__text {
    font-size: 1.5rem;
  }

  /* For Whom */
  .for-whom__layout {
    flex-direction: row;
    gap: 8rem;
  }

  .for-whom__left {
    width: 40%;
  }

  .for-whom__sticky {
    position: sticky;
    top: 8rem;
  }

  .for-whom__right {
    width: 60%;
  }

  /* Findings */
  .findings__value {
    font-size: 8rem;
  }


  /* Authors */
  .authors__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .authors__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .author-card__photo-wrap {
    width: 250px;
    height: 250px;
  }
}