/* ============================================================
   Relocated Media Cluster — styles.css
   ============================================================ */

:root {
  --navy-900: #102341;
  --navy-800: #1E3965;
  --navy-700: #233F6D;
  --navy-600: #293F6C;
  --navy-500: #415474;
  --navy-400: #3A4A64;
  --red: #F7374F;
  --green: #00A913;
  --cream: #F8F8F3;
  --gray-100: #F7F7F7;
  --gray-200: #DBE1E9;
  --gray-300: #CCCCCC;
  --gray-500: #787E87;
  --gray-600: #666666;
  --white: #FFFFFF;
  --black: #000000;

  --font-sans: "Montserrat", "Inter", "Segoe UI", system-ui, sans-serif;
  --font-display: "Roboto", "Montserrat", sans-serif;

  --max: 1280px;
  --shadow-card: 0 4px 24px rgba(16, 35, 65, .08);
  --radius: 14px;
  --radius-lg: 24px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--navy-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }

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

.h2 {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.h2--dark { color: var(--navy-700); }
.h2--light { color: var(--white); }
.h2--white { color: var(--white); }
.accent { color: var(--red); }
.accent-light { color: var(--red); font-weight: 600; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: .01em;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: #df2540; }
.btn--ghost-light {
  border-color: var(--white);
  color: var(--white);
  padding: 10px 24px;
  font-size: 14px;
}
.btn--ghost-light:hover { background: var(--white); color: var(--navy-700); }
.btn--ghost-dark {
  border-color: var(--navy-700);
  color: var(--navy-700);
}
.btn--ghost-dark:hover { background: var(--navy-700); color: var(--white); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-700);
  height: 80px;
  display: flex;
  align-items: center;
  transition: box-shadow .2s;
}
.nav.is-scrolled { box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav__logo img { height: 32px; width: auto; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__menu a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: opacity .15s;
}
.nav__menu a:hover { opacity: .75; }
.nav__menu a.btn { padding: 9px 22px; }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.nav__toggle span {
  display: block;
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--white);
  transition: transform .25s, opacity .25s;
}
.nav__toggle span:nth-child(1) { top: 13px; }
.nav__toggle span:nth-child(2) { top: 19px; }
.nav__toggle span:nth-child(3) { top: 25px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy-700) url("../img/first_slide_bg.png") center center / cover no-repeat;
  color: var(--white);
  text-align: center;
  overflow: hidden;
  padding: 110px 0;
}
.hero__inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; }
.hero__title {
  font-size: clamp(32px, 5vw, 55px);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.hero__sub {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,.85);
  max-width: 720px;
  margin: 0 auto 36px;
}

/* ============================================================
   PARTNERS BAND
   ============================================================ */
.partners-band {
  background: var(--navy-700);
  padding: 60px 0 80px;
}
.partners-band__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 56px;
  text-align: center;
}
.partners-band__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.partners-band__logos img { height: 72px; width: auto; object-fit: contain; }
.partners-band__text {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.65;
  max-width: 980px;
  margin: 0 auto;
}

/* ============================================================
   FEATURES MAP
   ============================================================ */
.features {
  background: var(--navy-700);
  padding: 0 0 80px;
}
.features__inner { display: flex; justify-content: center; }
.features__map { max-width: 1100px; width: 100%; }
.features__map img { width: 100%; height: auto; }

/* ============================================================
   RECIPIENTS (light)
   ============================================================ */
.recipients {
  background: var(--white);
  color: var(--navy-700);
  padding: 100px 0 110px;
}
.recipients .h2 { max-width: 900px; color: var(--navy-700); }
.recipients__cols {
  column-count: 2;
  column-gap: 48px;
  max-width: 1100px;
  margin: 0 0 56px;
}
.recipients__cols p {
  break-inside: avoid;
  color: var(--navy-700);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 18px;
}
.recipients__cols strong { color: var(--red); font-weight: 600; }
.recipients__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.recipients__photos img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ============================================================
   MODEL
   ============================================================ */
.model {
  background: var(--white);
  padding: 110px 0;
  text-align: center;
}
.model .h2 { margin-bottom: 80px; }
.model__grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr 1px 1fr;
  gap: 0 24px;
  align-items: start;
  margin-bottom: 56px;
}
.model__item { padding: 0 8px; }
.model__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
}
.model__icon svg { width: 100%; height: 100%; }
.model__item p {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-700);
  line-height: 1.5;
  margin: 0;
}
.model__divider {
  width: 1px;
  align-self: stretch;
  background: var(--gray-200);
  margin-top: 32px;
}
.model__cta { margin-top: 16px; }

/* ============================================================
   TEXTBLOCK
   ============================================================ */
.textblock {
  position: relative;
  background: var(--navy-800) url("../img/reporters_bg.jpg") center/cover no-repeat;
  color: var(--white);
  padding: 90px 0;
  isolation: isolate;
}
.textblock::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,35,65,.92) 0%, rgba(16,35,65,.85) 60%, rgba(16,35,65,.7) 100%);
  z-index: -1;
}
.textblock__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.textblock__left .h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 24px; }
.textblock__left p {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.textblock__list { display: flex; flex-direction: column; gap: 18px; }
.textblock__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--red);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.check--red { background: var(--red); color: var(--white); border-color: var(--red); }

/* ============================================================
   STATS / PRICING
   ============================================================ */
.stats {
  background: var(--cream);
  padding: 100px 0 100px;
  text-align: center;
}
.stats__title { max-width: 880px; margin: 0 auto 24px; }
.stats__lead {
  max-width: 720px;
  margin: 0 auto 56px;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.65;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
  margin-bottom: 48px;
}
.tier {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.tier--mid {
  border: 2px solid var(--red);
  transform: translateY(-8px);
}
.tier__title {
  text-align: center;
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-700);
}
.tier__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--red);
  text-align: center;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}
.tier__price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--red);
  opacity: .75;
  margin-left: 4px;
}
.tier__list { display: flex; flex-direction: column; gap: 12px; }
.tier__list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--navy-700);
}
.tier__list li::before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  width: 14px;
}
.stats__note {
  max-width: 700px;
  margin: 0 auto 28px;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.6;
}
.stats__ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   DARK CTA
   ============================================================ */
.dark-cta {
  background: var(--navy-700);
  color: var(--white);
  padding: 100px 0;
}
.dark-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dark-cta__text .h2 { margin-bottom: 36px; }
.dark-cta__list { display: flex; flex-direction: column; gap: 20px; }
.dark-cta__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
}
.dark-cta__photo img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); padding: 100px 0; }
.services__lead {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.6;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 28px;
  align-items: stretch;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-700);
  margin: 0 0 28px;
}
.service-card__cta {
  color: var(--red);
  font-size: 14px;
  font-weight: 500;
  margin-top: auto;
}
.services__photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-100);
}
.services__photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--white); padding: 100px 0; }
.faq__inner { max-width: 820px; margin: 0 auto; }
.faq .h2 { margin-bottom: 48px; }
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}
.faq__item summary {
  color: var(--red);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--navy-700);
  line-height: 1;
  transition: transform .2s;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  margin: 14px 0 0;
  color: var(--navy-700);
  font-size: 15px;
  line-height: 1.65;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--white); padding: 100px 0; }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact__info .h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 24px; }
.contact__lead {
  color: var(--navy-700);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 40px;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 48px;
}
.contact__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-700);
}
.contact__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact__icon svg { width: 22px; height: 22px; }
.contact__list a { color: var(--navy-700); transition: color .15s; }
.contact__list a:hover { color: var(--red); }
.contact__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-700);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid var(--navy-700);
  padding-bottom: 2px;
  width: fit-content;
}
.contact__link svg { width: 20px; height: 20px; color: var(--navy-700); }

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-700);
}
.field input, .field textarea {
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 14px 16px;
  font: inherit;
  color: var(--navy-700);
  background: var(--white);
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.field textarea { resize: vertical; min-height: 140px; }
.field__check {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--navy-700);
}
.field__check input { accent-color: var(--red); }
.field__check a { color: var(--navy-700); text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; }
.contact__submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.contact__status { margin: 0; font-size: 14px; color: var(--gray-600); }
.contact__status.is-ok { color: var(--green); }
.contact__status.is-err { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-900);
  color: var(--white);
  padding: 70px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer__brand img { height: 38px; width: auto; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer__brand p {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}
.footer__nav {
  display: contents;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 14px; }
.footer__nav a {
  color: rgba(255,255,255,.9);
  font-size: 14px;
  transition: color .15s;
}
.footer__nav a:hover { color: var(--red); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}
.footer__contact svg { width: 22px; height: 22px; }
.footer__credits {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--red);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__credits p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.footer__credits ul {
  display: flex;
  gap: 32px;
}
.footer__credits a {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  text-decoration: underline;
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav__menu {
    position: fixed;
    inset: 80px 0 auto 0;
    background: var(--navy-700);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    transform: translateY(-110%);
    transition: transform .25s;
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav__menu a.btn { margin-top: 12px; align-self: flex-start; }
  .nav__toggle { display: block; }

  .model__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
  }
  .model__divider { display: none; }

  .recipients__cols { column-count: 1; }

  .textblock__inner { grid-template-columns: 1fr; gap: 40px; }

  .stats__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 48px; }
  .tier--mid { transform: none; }

  .dark-cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .dark-cta__photo img { height: 400px; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .services__photo { grid-column: 1 / -1; }
  .services__photo img { min-height: 240px; max-height: 320px; }

  .contact__inner { grid-template-columns: 1fr; gap: 48px; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand, .footer__contact { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero { padding: 80px 0; }
  .recipients__photos { grid-template-columns: 1fr; }
  .recipients__photos img { height: 280px; }
  .model__grid { grid-template-columns: 1fr; gap: 40px; }
  .services__grid { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__credits { flex-direction: column; align-items: flex-start; }
  .footer__credits ul { flex-direction: column; gap: 12px; }
  .partners-band__card { padding: 28px 20px; }
  .partners-band__logos { gap: 24px; }
  .partners-band__logos img { height: 50px; }
  .nav__menu a.btn { display: inline-flex; }
}
