/*
  Lunarix Media - Estilos globais
  Estrutura:
  1. Tokens e reset
  2. Componentes reutilizáveis
  3. Seções principais
  4. Responsividade
*/

:root {
  --color-bg: #020612;
  --color-bg-soft: #06142b;
  --color-surface: rgba(255, 255, 255, 0.065);
  --color-surface-strong: rgba(255, 255, 255, 0.11);
  --color-blue: #00aeef;
  --color-blue-soft: rgba(0, 174, 239, 0.22);
  --color-gold: #d4af37;
  --color-gold-soft: rgba(212, 175, 55, 0.2);
  --color-white: #f5f5f5;
  --color-muted: #a7b0c4;
  --color-line: rgba(255, 255, 255, 0.12);
  --color-chroma: #00ff00;
  --font-title: "Montserrat", "Poppins", system-ui, sans-serif;
  --font-text: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1120px, calc(100% - 40px));
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-blue: 0 0 42px rgba(0, 174, 239, 0.22);
  --shadow-gold: 0 0 38px rgba(212, 175, 55, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-white);
  font-family: var(--font-text);
  /* Fundo global alinhado ao tom azul quase preto do banner principal. */
  background: var(--color-bg);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: 999px;
  padding: 10px 16px;
  color: #03101b;
  background: var(--color-blue);
  font-weight: 800;
  transition: transform 0.2s ease;
}

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

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.orbital-glow {
  position: fixed;
  inset: auto auto 8% -130px;
  z-index: -1;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(0, 174, 239, 0.16);
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.75;
}

.orbital-glow::after {
  content: "";
  position: absolute;
  inset: 50px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section--compact {
  padding: 72px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--color-blue);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-blue));
}

.section-title {
  max-width: 790px;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 3.2vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-copy {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.8;
}

.text-gradient {
  color: transparent;
  background: linear-gradient(120deg, var(--color-white), var(--color-blue) 48%, var(--color-gold));
  background-clip: text;
  -webkit-background-clip: text;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(3, 5, 15, 0.72);
  backdrop-filter: blur(16px);
}

.home-page .site-header {
  position: absolute;
  right: 0;
  left: 0;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-title);
  font-weight: 900;
  letter-spacing: 0.22em;
}

.brand-logo {
  display: block;
  width: clamp(150px, 14vw, 220px);
  height: auto;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(212, 175, 55, 0.65);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 32%, #ffffff 0 8%, #c9d7ff 12%, #203c74 38%, #071a35 72%),
    var(--color-bg-soft);
  box-shadow: var(--shadow-blue);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 9px -9px;
  border-top: 1px solid var(--color-gold);
  border-bottom: 1px solid transparent;
  border-radius: 50%;
  transform: rotate(-24deg);
}

.brand-text,
.brand > span:not(.brand-mark) {
  display: grid;
  gap: 2px;
  font-size: 0.93rem;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.brand-text small {
  color: var(--color-blue);
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.62em;
  text-align: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 52px);
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(245, 245, 245, 0.9);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--color-gold);
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a[aria-current="page"] {
  color: var(--color-white);
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 22px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #02101a;
  background: linear-gradient(180deg, #ffe784, var(--color-gold) 52%, #b88616);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.site-header .button--primary {
  min-height: 38px;
  border-color: rgba(212, 175, 55, 0.82);
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.04);
  box-shadow: none;
}

.button--secondary {
  color: #bdefff;
  border-color: rgba(0, 174, 239, 0.72);
  background: rgba(0, 174, 239, 0.04);
  box-shadow: inset 0 0 18px rgba(0, 174, 239, 0.08);
}

.button--ghost {
  color: var(--color-white);
  border-color: var(--color-line);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  position: relative;
  min-height: 648px;
  padding: 168px 0 92px;
  background:
    linear-gradient(90deg, rgba(2, 4, 12, 0.98) 0%, rgba(2, 4, 12, 0.8) 34%, rgba(2, 4, 12, 0.18) 64%, rgba(2, 4, 12, 0.08) 100%),
    linear-gradient(180deg, rgba(2, 4, 12, 0.12) 0%, rgba(2, 4, 12, 0.18) 72%, #030611 100%),
    url("../img/Banner.png");
  /* Ajuste da imagem do banner: use contain para não ampliar/cortar a arte. */
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center, center, center top;
  background-size: 100% 100%, 100% 100%, contain;
  overflow: hidden;
}

/* O banner deve ser exibido sem imagens, brilhos ou órbitas sobrepostas. */
.hero::before,
.hero::after {
  content: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: block;
}

.hero-content::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.34);
}

/* ==========================================================
   AJUSTE PRINCIPAL DO TEXTO DO BANNER / HERO
   Altere aqui o tamanho e a largura da frase:
   "Transformamos Marcas em Referências Digitais"
   ========================================================== */
.hero h1 {
  margin: 0;
  font-family: var(--font-title);
  max-width: 300px;
  color: #ffffff;
  /* clamp(minimo, fluido, maximo):
     1.7rem = menor tamanho permitido, 3.4vw = escala conforme a largura da tela,
     3.15rem = maior tamanho permitido. */
  font-size: clamp(1.7rem, 3.0vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.65);
}

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

.hero-copy {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(245, 245, 245, 0.78);
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
}

/* ==========================================================
   SEÇÃO NOSSOS SERVIÇOS ABAIXO DO BANNER
   Bloco inspirado na referência: cards compactos, brilho azul
   e indicadores animados logo abaixo.
   ========================================================== */
.services-showcase {
  position: relative;
  overflow: hidden;
  padding: 42px 0 34px;
  border-top: 1px solid rgba(0, 174, 239, 0.16);
  border-bottom: 1px solid rgba(0, 174, 239, 0.16);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 174, 239, 0.1), transparent 38%),
    linear-gradient(180deg, #020612 0%, #030715 100%);
}

.services-showcase__header {
  text-align: center;
}

.services-showcase__header p {
  margin: 0 0 10px;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-showcase__header h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
}

.services-showcase__header h2 span {
  color: var(--color-blue);
}

.services-showcase__cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.services-showcase__card {
  display: grid;
  justify-items: center;
  min-height: 206px;
  border: 1px solid rgba(0, 174, 239, 0.25);
  border-radius: 8px;
  padding: 24px 16px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 174, 239, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 0 28px rgba(0, 174, 239, 0.04), 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.services-showcase__card:hover,
.services-showcase__card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 174, 239, 0.58);
  box-shadow: 0 0 28px rgba(0, 174, 239, 0.18), inset 0 0 28px rgba(0, 174, 239, 0.08);
}

.services-showcase__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 56px;
  margin-bottom: 18px;
  color: #4dbfff;
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 16px rgba(0, 174, 239, 0.78);
}

.services-showcase__icon--svg img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  /* Converte o SVG preto para azul neon sem editar o arquivo original. */
  filter:
    invert(63%) sepia(89%) saturate(2055%) hue-rotate(162deg) brightness(101%) contrast(101%)
    drop-shadow(0 0 10px rgba(0, 174, 239, 0.9));
}

.services-showcase__card h3 {
  min-height: 45px;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 0.95rem;
  line-height: 1.25;
}

.services-showcase__card h3::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.services-showcase__card p {
  margin: 14px 0 0;
  color: rgba(245, 245, 245, 0.68);
  font-size: 0.76rem;
  line-height: 1.55;
}

.services-showcase__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(0, 174, 239, 0.18);
}

.services-showcase__metric {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 92px;
}

.services-showcase__metric:not(:last-child) {
  border-right: 1px solid rgba(0, 174, 239, 0.28);
}

.services-showcase__metric-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--color-gold);
  font-size: 2.9rem;
  line-height: 1;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.75);
}

.services-showcase__metric-icon--svg img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  /* Sem brilho para evitar vazamento visual na caixa do SVG. */
  filter: none;
}

.services-showcase__metric strong {
  color: #ffffff;
  font-family: var(--font-title);
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1;
  text-shadow: 0 5px 16px rgba(0, 0, 0, 0.52);
}

.services-showcase__metric p {
  margin: 0;
  color: rgba(245, 245, 245, 0.72);
  font-size: 0.86rem;
  line-height: 1.35;
}

/* ==========================================================
   SEÇÃO NOSSO PROCESSO
   Linha orbital com quatro etapas. Os ícones são placeholders
   e podem ser substituídos por SVGs em assets/icons.
   ========================================================== */
.process-showcase {
  position: relative;
  overflow: hidden;
  padding: 34px 0 54px;
  border-bottom: 1px solid rgba(0, 174, 239, 0.16);
  background:
    radial-gradient(ellipse at 50% 12%, rgba(0, 174, 239, 0.12), transparent 38%),
    linear-gradient(180deg, #030715 0%, #020612 100%);
}

.process-showcase__header {
  text-align: center;
}

.process-showcase__header p {
  margin: 0 0 8px;
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-showcase__header h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: clamp(1.7rem, 3.2vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
}

.process-showcase__header h2 span {
  color: var(--color-blue);
}

.process-showcase__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 38px;
  isolation: isolate;
}

.process-showcase__timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 5%;
  left: 5%;
  z-index: -1;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 174, 239, 0), rgba(0, 174, 239, 0.82) 18%, rgba(0, 174, 239, 0.82) 68%, rgba(212, 175, 55, 0.82));
  box-shadow: 0 0 18px rgba(0, 174, 239, 0.5);
}

.process-showcase__timeline::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  left: 0;
  z-index: -2;
  height: 118px;
  border: 1px solid rgba(0, 174, 239, 0.34);
  border-top-color: rgba(0, 174, 239, 0.18);
  border-bottom-color: rgba(212, 175, 55, 0.34);
  border-radius: 50%;
  transform: rotate(-3deg);
}

.process-showcase__step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-showcase__number {
  position: absolute;
  top: 31px;
  left: calc(50% - 64px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: #6bd6ff;
  background: #07152c;
  font-size: 0.58rem;
  font-weight: 900;
  box-shadow: 0 0 12px rgba(0, 174, 239, 0.45);
}

.process-showcase__icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: #4dbfff;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.16), rgba(4, 9, 26, 0.9) 68%);
  box-shadow: 0 0 26px rgba(0, 174, 239, 0.42), inset 0 0 20px rgba(0, 174, 239, 0.13);
  line-height: 1;
}

.process-showcase__icon--svg img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  /* Converte SVG preto para azul neon; o brilho fica no círculo ao redor. */
  filter:
    invert(63%) sepia(89%) saturate(2055%) hue-rotate(162deg) brightness(101%) contrast(101%);
}

.process-showcase__step--gold .process-showcase__icon,
.process-showcase__step--gold .process-showcase__number {
  color: var(--color-gold);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.45), inset 0 0 18px rgba(212, 175, 55, 0.1);
}

.process-showcase__step--gold .process-showcase__icon--svg img {
  filter:
    invert(77%) sepia(84%) saturate(683%) hue-rotate(358deg) brightness(102%) contrast(96%);
}

.process-showcase__step h3 {
  margin: 12px 0 0;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 1rem;
  line-height: 1.25;
}

.process-showcase__step p {
  max-width: 210px;
  margin: 8px auto 0;
  color: rgba(245, 245, 245, 0.66);
  font-size: 0.75rem;
  line-height: 1.45;
}

.testimonials-showcase {
  position: relative;
  padding: 34px 0 78px;
  overflow: hidden;
}

.testimonials-showcase::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 50%;
  width: min(760px, 90vw);
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.14), transparent 66%);
  transform: translateX(-50%);
  pointer-events: none;
}

.testimonials-showcase__header {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto 28px;
  text-align: center;
}

.testimonials-showcase__header p {
  margin: 0 0 10px;
  color: var(--color-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonials-showcase__header h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.testimonials-showcase__header span {
  color: var(--color-gold);
}

.testimonials-showcase__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.testimonial-card {
  min-height: 168px;
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: 10px;
  padding: 24px 24px 22px;
  background:
    linear-gradient(145deg, rgba(0, 174, 239, 0.09), rgba(6, 20, 43, 0.76)),
    rgba(2, 6, 18, 0.94);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 174, 239, 0.46);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), 0 0 28px rgba(0, 174, 239, 0.14);
}

.testimonial-card:nth-child(2) {
  border-color: rgba(212, 175, 55, 0.26);
}

.testimonial-card__quote {
  display: block;
  height: 26px;
  color: var(--color-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 0.9;
  text-shadow: 0 0 16px rgba(0, 174, 239, 0.58);
}

.testimonial-card p {
  min-height: 58px;
  margin: 12px 0 22px;
  color: rgba(245, 245, 245, 0.84);
  font-size: 0.78rem;
  line-height: 1.55;
}

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

.testimonial-card__avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  color: #03101b;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), transparent 25%),
    linear-gradient(145deg, #00aeef, #d4af37);
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(0, 174, 239, 0.28);
}

.testimonial-card__avatar--gold {
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), transparent 25%),
    linear-gradient(145deg, #d4af37, #8b6a15);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.25);
}

.testimonial-card__author strong,
.testimonial-card__author small {
  display: block;
}

.testimonial-card__author strong {
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1.2;
}

.testimonial-card__author small {
  margin-top: 2px;
  color: rgba(245, 245, 245, 0.66);
  font-size: 0.66rem;
  line-height: 1.25;
}

.testimonials-showcase__dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.testimonials-showcase__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 10px rgba(0, 174, 239, 0.68);
}

.testimonials-showcase__dots span:nth-child(3) {
  background: var(--color-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.58);
}

.proposal-cta {
  position: relative;
  min-height: 178px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(0, 174, 239, 0.18);
  border-bottom: 1px solid rgba(0, 174, 239, 0.18);
  background: var(--color-bg);
}

.proposal-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("../img/Heart.png") center bottom / cover no-repeat;
  opacity: 0.9;
}

.proposal-cta__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 32px 0 34px;
  text-align: center;
}

.proposal-cta h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.proposal-cta h2 span {
  color: var(--color-gold);
}

.proposal-cta__button {
  min-width: 220px;
  min-height: 42px;
  padding-inline: 28px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 56px;
}

.glass-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.media-placeholder {
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 2px dashed rgba(0, 0, 0, 0.5);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #032503;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    var(--color-chroma);
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.media-placeholder span {
  display: block;
  max-width: 390px;
}

.media-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  aspect-ratio: 4 / 3;
  background: var(--color-bg-soft);
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.service-card,
.post-card,
.contact-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.service-card {
  min-height: 228px;
  padding: 26px;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(0, 174, 239, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-blue), var(--shadow-gold);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #05101d;
  background: linear-gradient(120deg, var(--color-gold), #fff1a8);
  font-weight: 900;
}

.service-card h3,
.post-card h3,
.contact-card h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 1.2rem;
}

.service-card p,
.post-card p,
.contact-card p {
  margin: 14px 0 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 72px);
  border-radius: 40px;
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(0, 174, 239, 0.2), rgba(255, 255, 255, 0.055));
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -150px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 50%;
}

.page-hero {
  padding: 94px 0 58px;
}

.page-hero .section-copy {
  max-width: 780px;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--color-muted);
  line-height: 1.65;
}

.feature-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--color-blue), var(--color-gold));
  box-shadow: 0 0 16px rgba(0, 174, 239, 0.62);
}

.post-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.portfolio-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.portfolio-link-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.portfolio-link-card:hover,
.portfolio-link-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(0, 174, 239, 0.5);
  box-shadow: var(--shadow-blue), var(--shadow-gold);
}

.portfolio-link-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-link-card__label {
  position: absolute;
  inset: auto 0 0;
  padding: 10px 12px;
  color: var(--color-white);
  background: linear-gradient(180deg, transparent, rgba(2, 6, 18, 0.92));
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.portfolio-links__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 42px 24px;
  border: 1px dashed var(--color-line);
  border-radius: var(--radius-md);
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  line-height: 1.7;
}

.post-card {
  overflow: hidden;
}

.post-card .media-placeholder {
  min-height: 190px;
  border-radius: 0;
  border-width: 0 0 2px;
}

.post-card .media-frame--post {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: 12 / 7;
}

.post-content {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 174, 239, 0.32);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--color-blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: start;
}

.contact-card {
  padding: 26px;
}

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

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  color: var(--color-white);
  font-weight: 800;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.055);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.field-group input:focus,
.field-group textarea:focus {
  border-color: rgba(0, 174, 239, 0.75);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--color-muted);
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 174, 239, 0.12);
  padding: 34px 0 16px;
  background:
    linear-gradient(90deg, rgba(0, 174, 239, 0.035), transparent 34%, rgba(212, 175, 55, 0.025)),
    #020612;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(210px, 1.15fr) minmax(120px, 0.72fr) minmax(210px, 1fr) minmax(190px, 0.95fr) minmax(210px, 1fr);
  align-items: start;
  gap: 30px;
}

.footer-brand {
  max-width: 270px;
}

.footer-logo {
  width: min(220px, 100%);
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 240px;
  margin: 0;
  color: rgba(245, 245, 245, 0.68);
  font-size: 0.72rem;
  line-height: 1.75;
}

.footer-column h3 {
  margin: 0 0 13px;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column,
.footer-column a {
  color: rgba(245, 245, 245, 0.72);
  font-style: normal;
  font-size: 0.72rem;
  line-height: 1.45;
}

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

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-gold);
}

.footer-contact .footer-links a,
.footer-contact .footer-links li > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact .footer-links span span,
.footer-contact .footer-links a span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  min-width: 34px;
  height: 18px;
  border: 1px solid rgba(0, 174, 239, 0.35);
  border-radius: 999px;
  color: var(--color-blue);
  font-size: 0.52rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 174, 239, 0.62);
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer-orbit {
  position: relative;
  min-height: 126px;
  opacity: 0.82;
}

.footer-orbit::before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  width: 230px;
  height: 118px;
  background:
    radial-gradient(circle at 62% 42%, rgba(0, 174, 239, 0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 62%, rgba(212, 175, 55, 0.32) 0 2px, transparent 3px),
    linear-gradient(rgba(0, 174, 239, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 174, 239, 0.09) 1px, transparent 1px);
  background-size: auto, auto, 24px 24px, 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 48%, transparent 72%);
}

.footer-orbit span {
  position: absolute;
  right: 12px;
  top: 34px;
  width: 210px;
  height: 58px;
  border-top: 2px solid rgba(0, 174, 239, 0.82);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.footer-orbit span:nth-child(2) {
  right: 28px;
  top: 40px;
  width: 174px;
  border-top-color: rgba(212, 175, 55, 0.76);
  transform: rotate(24deg);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 245, 245, 0.58);
  font-size: 0.68rem;
  text-align: center;
}

[data-animate] {
  transform: translateY(22px);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

[data-animate].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 82px 20px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--color-line);
    border-radius: 24px;
    background: rgba(5, 8, 22, 0.96);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    padding: 15px 14px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-actions .button {
    display: none;
  }

  .hero-grid,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
    padding-top: 132px;
    background-position: center;
  }

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

  .services-showcase__metrics {
    gap: 18px;
  }

  .services-showcase__metric {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    text-align: center;
  }

  .process-showcase__timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 38px;
  }

  .process-showcase__timeline::before,
  .process-showcase__timeline::after {
    display: none;
  }

  .testimonials-showcase__grid {
    gap: 18px;
  }

  .services-grid,
  .post-grid,
  .portfolio-grid,
  .portfolio-links,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-orbit {
    min-height: 112px;
  }

}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .section,
  .section--compact {
    padding: 64px 0;
  }

  .brand span {
    font-size: 0.82rem;
  }

  .services-showcase__cards,
  .services-showcase__metrics,
  .testimonials-showcase__grid,
  .services-grid,
  .post-grid,
  .portfolio-grid,
  .portfolio-links,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero {
    min-height: 590px;
    padding-top: 116px;
  }

  .hero h1 {
    max-width: 300px;
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .hero-copy {
    max-width: 390px;
  }

  .services-showcase {
    padding: 36px 0 30px;
  }

  .services-showcase__card {
    min-height: 190px;
  }

  .services-showcase__metric:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 174, 239, 0.22);
    padding-bottom: 18px;
  }

  .process-showcase {
    padding: 34px 0 44px;
  }

  .process-showcase__timeline {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-showcase__step {
    max-width: 290px;
    margin-inline: auto;
  }

  .process-showcase__number {
    left: calc(50% - 58px);
  }

  .testimonials-showcase {
    padding: 28px 0 58px;
  }

  .testimonial-card {
    min-height: auto;
  }

  .testimonial-card p {
    min-height: auto;
  }

  .proposal-cta {
    min-height: 210px;
    background-position: center bottom;
  }

  .proposal-cta__content {
    padding: 42px 0;
  }

  .proposal-cta__button {
    min-width: 0;
  }

  .media-placeholder {
    min-height: 260px;
  }

  .cta-panel {
    border-radius: 28px;
  }

  .site-footer {
    padding: 34px 0 18px;
  }

  .footer-brand,
  .footer-brand p {
    max-width: none;
  }

  .footer-logo {
    width: 190px;
  }

  .footer-orbit {
    display: none;
  }
}

@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;
  }
}
