/* PRSphere global stylesheet: mobile-first, responsive, accessible. */
:root {
  --navy-950: #06122f;
  --navy-900: #081a3f;
  --navy-800: #0c2556;
  --blue-700: #075ec8;
  --blue-600: #1074e8;
  --blue-500: #2489ff;
  --cyan-500: #1fb8d6;
  --ink: #0c172b;
  --muted: #60708a;
  --line: #dce7f5;
  --soft-line: rgba(12, 37, 86, 0.12);
  --bg: #f6f9fd;
  --surface: #ffffff;
  --surface-2: #eef5ff;
  --white: #ffffff;
  --success: #0b8f68;
  --danger: #bf2f3a;
  --shadow-sm: 0 10px 30px rgba(8, 26, 63, 0.08);
  --shadow-md: 0 22px 55px rgba(8, 26, 63, 0.13);
  --radius: 8px;
  --header-height: 74px;
}

[data-theme="dark"] {
  --ink: #eef5ff;
  --muted: #b6c6dc;
  --line: rgba(194, 215, 242, 0.18);
  --soft-line: rgba(194, 215, 242, 0.15);
  --bg: #071124;
  --surface: #0c1831;
  --surface-2: #102143;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.28);
  --shadow-md: 0 22px 55px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(31, 184, 214, 0.7);
  outline-offset: 3px;
}

.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.wide-container {
  width: min(100% - 24px, 1320px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 3000;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  background: var(--navy-950);
  transition: opacity 300ms ease, visibility 300ms ease;
}

.page-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.loader-mark {
  width: 64px;
  height: 64px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--cyan-500);
  border-radius: 50%;
  animation: spin 850ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(8, 26, 63, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

[data-theme="dark"] .site-header {
  background: rgba(7, 17, 36, 0.9);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 208px;
  max-height: 60px;
  object-fit: contain;
}

.brand-fallback {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--navy-950);
  font-size: 1.15rem;
  font-weight: 800;
}

[data-theme="dark"] .brand-fallback {
  color: var(--white);
}

.brand-fallback::before {
  content: "PR";
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  border-radius: 50%;
  font-size: 0.78rem;
}

.nav-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  z-index: 2100;
  width: min(88vw, 380px);
  padding: 22px 18px;
  background:
    linear-gradient(160deg, rgba(8, 26, 63, 0.98), rgba(6, 18, 47, 0.98)),
    url("../images/hero-network.svg") center / cover no-repeat;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-md);
  transform: translateX(105%);
  transition: transform 240ms ease;
}

.nav-menu.is-open {
  transform: translateX(0);
}

.nav-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.is-active {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-cta {
  display: none;
}

.mobile-cta {
  margin-top: 12px;
}

.mobile-cta .btn {
  width: 100%;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  color: var(--blue-700);
  border-color: rgba(16, 116, 232, 0.35);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
}

.hamburger {
  display: inline-grid;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 14px 28px rgba(16, 116, 232, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(16, 116, 232, 0.36);
}

.btn-secondary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 14px 28px rgba(8, 26, 63, 0.25);
}

.btn-outline {
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(16, 116, 232, 0.26);
}

[data-theme="dark"] .btn-outline {
  color: #9bd8ff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-light {
  color: var(--navy-950);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-700);
  font-weight: 800;
}

[data-theme="dark"] .text-link {
  color: #8cc7ff;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-alt {
  background: var(--surface);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 26, 63, 0.96), rgba(6, 18, 47, 0.96)),
    url("../images/hero-network.svg") center / cover no-repeat;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

[data-theme="dark"] .eyebrow {
  color: #8cc7ff;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  color: inherit;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 2.45rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0 0 18px;
}

.lead {
  color: var(--muted);
  font-size: 1.07rem;
}

.section-dark .lead,
.hero .lead,
.page-hero .lead {
  color: rgba(255, 255, 255, 0.82);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 18, 47, 0.95), rgba(7, 51, 111, 0.88)),
    var(--navy-950);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-500), var(--blue-700));
}

.hero-canvas,
.hero-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-canvas {
  z-index: -2;
  opacity: 0.7;
}

.hero-map {
  z-index: -1;
  object-fit: cover;
  opacity: 0.34;
  mix-blend-mode: screen;
}

.hero-content {
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  padding: 82px 0 88px;
  text-align: center;
}

.hero h1 {
  max-width: 880px;
  margin-inline: auto;
  font-size: 2.6rem;
}

.hero .lead {
  max-width: 760px;
  margin-inline: auto;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin: 34px auto 0;
}

.proof-chip {
  min-height: 72px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.proof-chip strong {
  display: block;
  font-size: 1.2rem;
}

.proof-chip span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 70px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 18, 47, 0.95), rgba(7, 51, 111, 0.88)),
    url("../images/hero-network.svg") center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-500), var(--blue-700));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--white);
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 18px;
}

.cards-3,
.cards-4,
.service-grid,
.feature-grid,
.case-grid,
.blog-grid,
.team-grid,
.pricing-grid,
.contact-grid,
.two-col {
  display: grid;
  gap: 18px;
}

.card,
.service-card,
.feature-card,
.step-card,
.team-card,
.case-card,
.blog-card,
.pricing-card,
.contact-card,
.value-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.service-card:hover,
.feature-card:hover,
.step-card:hover,
.team-card:hover,
.case-card:hover,
.blog-card:hover,
.pricing-card:hover,
.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 116, 232, 0.28);
  box-shadow: var(--shadow-md);
}

.service-card::before,
.pricing-card.is-featured::before,
.case-card::before,
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan-500));
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  border-radius: var(--radius);
  box-shadow: 0 14px 26px rgba(16, 116, 232, 0.24);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}

.service-card ul,
.feature-list,
.check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.feature-list li,
.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.service-card li::before,
.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  border-radius: 50%;
}

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

.feature-card .icon-badge {
  margin-inline: auto;
}

.steps {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.step-card {
  counter-increment: step;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--white);
  background: var(--blue-700);
  border-radius: var(--radius);
  font-weight: 900;
}

.step-number::before {
  content: counter(step);
}

.stats-grid {
  display: grid;
  gap: 14px;
}

.stat-card {
  padding: 24px;
  color: var(--white);
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.testimonial-shell {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.testimonial-track {
  display: flex;
  transition: transform 320ms ease;
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 28px;
}

.testimonial-card blockquote {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  border-radius: 50%;
  font-weight: 900;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px 22px;
}

.slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  background: rgba(16, 116, 232, 0.24);
  border: 0;
  border-radius: 50%;
}

.slider-dot.is-active {
  background: var(--blue-700);
}

.portfolio-visual,
.media-visual {
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(16, 116, 232, 0.92), rgba(6, 18, 47, 0.9)),
    url("../images/media-dashboard.svg") center / cover no-repeat;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.media-visual {
  background:
    linear-gradient(135deg, rgba(6, 18, 47, 0.88), rgba(16, 116, 232, 0.82)),
    url("../images/global-media.svg") center / cover no-repeat;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 46px 24px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(7, 94, 200, 0.96), rgba(8, 26, 63, 0.96)),
    url("../images/hero-network.svg") center / cover no-repeat;
  border-radius: var(--radius);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline-item {
  position: relative;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.timeline-year {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-weight: 900;
}

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

.team-photo {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 900;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card.is-featured {
  border-color: rgba(16, 116, 232, 0.5);
  box-shadow: 0 24px 60px rgba(16, 116, 232, 0.22);
}

.price {
  color: var(--navy-950);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

[data-theme="dark"] .price {
  color: var(--white);
}

.price span {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.pricing-card .btn {
  margin-top: auto;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--surface);
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.comparison-table th {
  color: var(--white);
  background: var(--navy-900);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.case-meta,
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: var(--blue-700);
  background: rgba(16, 116, 232, 0.1);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
}

[data-theme="dark"] .tag {
  color: #8cc7ff;
  background: rgba(140, 199, 255, 0.12);
}

.blog-card img,
.case-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--surface-2);
}

.newsroom-tools {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.search-field {
  position: relative;
}

.search-field input {
  width: 100%;
  min-height: 52px;
  padding: 12px 44px 12px 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-field svg {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 20px;
  height: 20px;
  color: var(--muted);
  transform: translateY(-50%);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.filter-btn.is-active,
.filter-btn:hover {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  font-weight: 900;
}

.accordion-trigger svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  transition: transform 180ms ease;
}

.accordion-item.is-open .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-panel {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}

.accordion-item.is-open .accordion-panel {
  display: block;
}

.form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--ink);
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(16, 116, 232, 0.55);
  box-shadow: 0 0 0 4px rgba(16, 116, 232, 0.12);
  outline: 0;
}

.form-field .error-text {
  display: none;
  color: var(--danger);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--danger);
}

.form-field.has-error .error-text {
  display: block;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-status.is-success {
  display: block;
  color: #063f30;
  background: rgba(11, 143, 104, 0.14);
}

.form-status.is-error {
  display: block;
  color: #651620;
  background: rgba(191, 47, 58, 0.14);
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 24px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(8, 26, 63, 0.9), rgba(16, 116, 232, 0.82)),
    url("../images/global-media.svg") center / cover no-repeat;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.map-placeholder strong {
  display: block;
  font-size: 1.5rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 12px;
}

.contact-list svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--blue-700);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  gap: 28px;
  padding: 54px 0 34px;
}

.footer-logo {
  width: 180px;
  max-height: 56px;
  object-fit: contain;
  padding: 6px;
  background: var(--white);
  border-radius: var(--radius);
}

.footer-col h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--blue-700);
}

.newsletter-inline {
  display: grid;
  gap: 10px;
}

.newsletter-inline input {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.footer-bottom a:hover {
  color: var(--white);
}

.float-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1900;
  display: grid;
  gap: 10px;
}

.float-action {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--blue-700);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(8, 26, 63, 0.24);
  transition: transform 160ms ease, opacity 160ms ease;
}

.float-action:hover {
  transform: translateY(-3px);
}

.float-action svg {
  width: 22px;
  height: 22px;
}

.whatsapp-float {
  background: #128c7e;
}

.chat-float {
  background: var(--navy-900);
}

.back-to-top {
  opacity: 0;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.chat-panel {
  position: fixed;
  right: 16px;
  bottom: 178px;
  z-index: 1950;
  width: min(92vw, 340px);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transform: translateY(16px);
  visibility: hidden;
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
}

.chat-panel.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
}

.chat-body {
  padding: 16px;
}

.chat-body p {
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2800;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(6, 18, 47, 0.72);
}

.modal.is-open {
  display: grid;
}

.modal-card {
  width: min(100%, 520px);
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.modal-close {
  flex: 0 0 auto;
}

.search-results {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.search-result {
  display: block;
  padding: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-result:hover {
  border-color: rgba(16, 116, 232, 0.36);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2600;
  display: none;
  gap: 14px;
  align-items: center;
  padding: 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.cookie-banner.is-visible {
  display: grid;
}

.cookie-banner p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.is-hidden-item {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 620px) {
  .hero-proof,
  .stats-grid,
  .feature-grid,
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .cards-3,
  .case-grid,
  .blog-grid,
  .team-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .form-field.full {
    grid-column: 1 / -1;
  }

  .newsroom-tools {
    grid-template-columns: minmax(260px, 1fr) auto;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 820px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .hero .lead {
    font-size: 1.25rem;
  }

  .section {
    padding: 92px 0;
  }

  .page-hero {
    padding: 108px 0 86px;
  }

  .two-col,
  .contact-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 34px;
  }

  .two-col.reverse > :first-child {
    order: 2;
  }

  .footer-main {
    grid-template-columns: 1.3fr 0.7fr 0.9fr 1.1fr;
  }
}

@media (min-width: 1040px) {
  .hamburger {
    display: none;
  }

  .desktop-cta {
    display: inline-flex;
  }

  .mobile-cta {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .nav-link {
    min-height: 42px;
    padding: 8px 10px;
    color: var(--ink);
    font-size: 0.94rem;
  }

  .nav-link:hover,
  .nav-link.is-active {
    color: var(--blue-700);
    background: rgba(16, 116, 232, 0.08);
  }

  [data-theme="dark"] .nav-link:hover,
  [data-theme="dark"] .nav-link.is-active {
    color: #8cc7ff;
  }

  .brand img {
    width: 232px;
    max-height: 64px;
  }

  .service-grid,
  .cards-3,
  .case-grid,
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-grid,
  .cards-4,
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .hero-proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cookie-banner {
    left: 50%;
    right: auto;
    width: min(900px, calc(100% - 32px));
    grid-template-columns: 1fr auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 420px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 156px;
    max-height: 46px;
  }

  .nav-shell {
    gap: 8px;
  }

  .nav-actions {
    gap: 6px;
  }

  .icon-btn {
    width: 38px;
    height: 38px;
  }

  .nav-menu {
    width: 100vw;
    padding: 18px 14px 28px;
  }

  .nav-link {
    min-height: 50px;
    padding: 12px 14px;
    font-size: 1rem;
  }

  .hero-content {
    width: min(100% - 24px, 980px);
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero .lead,
  .page-hero .lead,
  .lead {
    font-size: 1rem;
  }

  .page-hero {
    padding: 64px 0 54px;
  }

  .section {
    padding: 56px 0;
  }

  .section-tight {
    padding: 38px 0;
  }

  h2 {
    font-size: 1.72rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .card,
  .service-card,
  .feature-card,
  .step-card,
  .team-card,
  .case-card,
  .blog-card,
  .pricing-card,
  .contact-card,
  .value-card {
    padding: 18px;
  }

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

  .btn {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .float-actions {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 360px) {
  .brand img {
    width: 146px;
  }

  .icon-btn {
    width: 36px;
    height: 36px;
  }

  .hero h1 {
    font-size: 2.05rem;
  }
}
