:root {
  --bg: #07090f;
  --panel: #10141f;
  --text: #f8fbff;
  --muted: #9ba9c7;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #c79a2f;
  --accent-2: #f0d58b;
  --accent-soft: rgba(199, 154, 47, 0.16);
  --heading: "Teko", sans-serif;
  --body: "Rajdhani", sans-serif;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --page-glow: rgba(21, 87, 255, 0.28);
  --page-gold: rgba(199, 154, 47, 0.14);
  --page-spot: rgba(255, 255, 255, 0.08);
}

@keyframes ambientDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(4%, -6%, 0) scale(1.08);
  }
}

@keyframes beamSweep {
  0% {
    transform: translate3d(-16%, 0, 0) skewX(-24deg);
    opacity: 0;
  }
  18%,
  72% {
    opacity: 0.42;
  }
  100% {
    transform: translate3d(18%, 0, 0) skewX(-24deg);
    opacity: 0;
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes featuredPulse {
  0%,
  100% {
    box-shadow: var(--shadow);
  }
  50% {
    box-shadow:
      0 32px 84px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(61, 123, 255, 0.16);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  font-family: var(--body);
  background:
    radial-gradient(circle at 82% 0%, var(--page-glow), transparent 24%),
    radial-gradient(circle at 15% 5%, var(--page-gold), transparent 26%),
    linear-gradient(180deg, #04060b 0%, #07090f 35%, #090b10 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  animation: ambientDrift 18s ease-in-out infinite;
}

body::before {
  top: 10%;
  left: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(20, 84, 255, 0.32), transparent 68%);
}

body::after {
  right: -140px;
  bottom: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(199, 154, 47, 0.22), transparent 70%);
  animation-duration: 22s;
  animation-delay: -8s;
}

body.page-home {
  --page-glow: rgba(21, 87, 255, 0.34);
  --page-gold: rgba(199, 154, 47, 0.18);
}

body.page-about {
  --page-glow: rgba(30, 97, 255, 0.24);
  --page-gold: rgba(199, 154, 47, 0.12);
}

body.page-services {
  --page-glow: rgba(28, 108, 255, 0.3);
  --page-gold: rgba(199, 154, 47, 0.1);
}

body.page-faq {
  --page-glow: rgba(21, 87, 255, 0.23);
  --page-gold: rgba(199, 154, 47, 0.08);
}

body.page-team {
  --page-glow: rgba(30, 97, 255, 0.28);
  --page-gold: rgba(199, 154, 47, 0.15);
}

body.page-pricing {
  --page-glow: rgba(37, 111, 255, 0.31);
  --page-gold: rgba(199, 154, 47, 0.18);
}

body.page-blog {
  --page-glow: rgba(21, 87, 255, 0.26);
  --page-gold: rgba(199, 154, 47, 0.12);
}

body.page-contact {
  --page-glow: rgba(21, 87, 255, 0.24);
  --page-gold: rgba(199, 154, 47, 0.1);
}

body.page-careers {
  --page-glow: rgba(21, 87, 255, 0.29);
  --page-gold: rgba(199, 154, 47, 0.16);
}

body.page-home .hero-panel::before {
  content: "SEGURIDAD\A PRIVADA";
}

body.page-about .hero-panel::before {
  content: "NOSOTROS";
}

body.page-services .hero-panel::before {
  content: "SERVICIOS";
}

body.page-faq .hero-panel::before {
  content: "FAQ";
}

body.page-team .hero-panel::before {
  content: "EQUIPO";
}

body.page-pricing .hero-panel::before {
  content: "PLANES";
}

body.page-blog .hero-panel::before {
  content: "BLOG";
}

body.page-contact .hero-panel::before {
  content: "CONTACTO";
}

body.page-careers .hero-panel::before {
  content: "CONVOCATORIA";
}

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

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 10, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

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

.brand strong,
.footer-brand strong {
  display: block;
  font-family: var(--heading);
  font-size: 1.9rem;
  line-height: 0.95;
  letter-spacing: 0.08em;
}

.brand span,
.footer-brand span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.button,
button.button,
input[type="submit"] {
  position: relative;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 32px rgba(199, 154, 47, 0.25);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease, gap 0.24s ease;
}

.button::after,
button.button::after,
input[type="submit"]::after {
  content: "97";
  font-family: var(--heading);
  font-size: 1.1rem;
  line-height: 1;
  display: inline-block;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.button.header-cta::after,
.button.header-cta::before,
a.button.header-cta::after {
  display: none;
}

.button-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.button-small {
  padding: 10px 18px;
  font-size: 0.92rem;
}

.button:hover,
button.button:hover,
input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(199, 154, 47, 0.32);
  filter: saturate(1.06);
}

.button:hover::after,
button.button:hover::after,
input[type="submit"]:hover::after {
  transform: translate(4px, -4px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 14px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.page-hero {
  padding: 56px 0 28px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 18%, rgba(21, 87, 255, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(7, 9, 15, 0.98), rgba(12, 16, 24, 0.96));
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  z-index: 0;
  font-family: var(--heading);
  font-size: clamp(4.6rem, 12vw, 10rem);
  line-height: 0.82;
  letter-spacing: 0.03em;
  white-space: pre-line;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(181, 198, 255, 0.18);
  opacity: 0.32;
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: -18% auto -20% 56%;
  width: 38%;
  background: linear-gradient(180deg, transparent, var(--page-spot), transparent);
  transform: skewX(-24deg);
  pointer-events: none;
  animation: beamSweep 16s ease-in-out infinite;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: stretch;
  padding: 48px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #c8d5ff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.4rem, 9vw, 6.4rem);
}

h2 {
  font-size: clamp(2.5rem, 7vw, 4.4rem);
}

h3 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-copy p {
  max-width: 52ch;
}

.hero-actions,
.split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-visual {
  position: relative;
  min-height: 380px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 72% 22%, rgba(61, 123, 255, 0.42), transparent 28%),
    linear-gradient(180deg, rgba(11, 18, 30, 0.98), rgba(7, 10, 17, 0.98));
  overflow: hidden;
}

.hero-photo,
.media-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual.photo {
  background: #0b1020;
}

.hero-visual.photo::before,
.hero-visual.photo::after {
  display: none;
}

.hero-visual.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(var(--img-shift-x, 0px), var(--img-shift-y, 0px), 0) scale(1.02);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -8% -25% 18%;
  height: 76%;
  background:
    radial-gradient(circle at 45% 30%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(61, 123, 255, 0.18), rgba(8, 13, 25, 0));
  clip-path: polygon(20% 0%, 80% 0%, 100% 24%, 90% 100%, 10% 100%, 0 24%);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.42));
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 14% 12% auto auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 0 14px rgba(21, 87, 255, 0.09),
    0 0 0 38px rgba(21, 87, 255, 0.05);
}

.hero-card,
.mini-card {
  position: absolute;
  background: rgba(10, 15, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hero-card {
  left: 26px;
  bottom: 26px;
  width: 220px;
  animation: softFloat 7s ease-in-out infinite;
}

.mini-card {
  right: 26px;
  top: 26px;
  width: 210px;
  animation: softFloat 7s ease-in-out infinite;
  animation-delay: -3s;
}

.hero-card strong,
.mini-card strong {
  display: block;
  color: white;
  font-family: var(--heading);
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.hero-card span,
.mini-card span {
  font-size: 0.92rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blue-band {
  background: linear-gradient(90deg, #e6c778, #f4dfab);
  color: #223164;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
}

.blue-band::before {
  content: "";
  position: absolute;
  inset: 0 -20% 0 auto;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-22deg);
  animation: beamSweep 18s ease-in-out infinite;
  opacity: 0.35;
}

.blue-band-inner {
  display: flex;
  gap: 22px;
  white-space: nowrap;
  padding: 16px 0;
  font-family: var(--heading);
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blue-band-inner span::after {
  content: "*";
  margin-left: 22px;
  opacity: 0.9;
}

section.section {
  padding: 84px 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 56ch;
}

.stats-grid,
.services-grid,
.team-grid,
.blog-grid,
.plans-grid,
.process-grid,
.feature-grid {
  display: grid;
  gap: 22px;
}

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

.feature-grid,
.plans-grid,
.services-grid,
.blog-grid,
.team-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.panel,
.service-card,
.stat-card,
.team-card,
.blog-card,
.plan-card,
.process-card,
.faq-item,
.split-panel,
.form-panel,
.info-card {
  position: relative;
  border-radius: 26px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(15, 19, 29, 0.98), rgba(10, 13, 20, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-card strong,
.process-card strong {
  display: block;
  color: white;
  font-family: var(--heading);
  font-size: 2.8rem;
  letter-spacing: 0.05em;
}

.service-card,
.team-card,
.blog-card,
.plan-card,
.process-card {
  overflow: hidden;
}

.service-card::before,
.team-card::before,
.blog-card::before,
.plan-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(21, 87, 255, 0.2), transparent 60%);
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: #b5c8ff;
  font-weight: 700;
  margin-bottom: 18px;
}

.service-card ul,
.split-panel ul,
.plan-card ul,
.info-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.service-card li,
.split-panel li,
.plan-card li,
.footer-grid a,
.info-list li {
  color: var(--muted);
}

.service-card li::before,
.split-panel li::before,
.plan-card li::before,
.info-list li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 5px rgba(199, 154, 47, 0.12);
}

.split-layout,
.two-column {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.metric {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
}

.metric strong {
  font-family: var(--heading);
  font-size: 3rem;
}

.service-highlight {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  margin-top: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(12, 18, 31, 0.98), rgba(21, 87, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-highlight .shield {
  width: 94px;
  height: 94px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(21, 87, 255, 0.24), rgba(5, 7, 12, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.team-card .role,
.blog-card .category,
.plan-card .badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #dbe4ff;
  background: rgba(21, 87, 255, 0.12);
  border: 1px solid rgba(61, 123, 255, 0.24);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.thumbnail-abstract {
  height: 220px;
  margin-bottom: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 70% 25%, rgba(61, 123, 255, 0.38), transparent 20%),
    linear-gradient(135deg, rgba(18, 25, 39, 0.96), rgba(7, 10, 17, 1));
}

.thumbnail-abstract::after {
  content: "";
  display: block;
  width: 56%;
  height: 58%;
  margin: 46px auto 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 -30px 60px rgba(0, 0, 0, 0.4);
}

.thumbnail-image {
  height: 220px;
  margin-bottom: 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.thumbnail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .link-inline,
.service-card .link-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #d5e0ff;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item button {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: var(--body);
  font-size: 1.18rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-item button span:last-child {
  font-size: 1.8rem;
  color: #8fb0ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, margin-top 0.25s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
  margin-top: 16px;
}

.faq-item.is-open button span:last-child {
  transform: rotate(45deg);
}

label {
  display: grid;
  gap: 8px;
  color: #e5ecff;
  font-weight: 600;
}

.form-panel form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: white;
  padding: 14px 16px;
  font: inherit;
}

input::file-selector-button {
  border: 0;
  padding: 10px 14px;
  border-radius: 999px;
  margin-right: 12px;
  background: rgba(21, 87, 255, 0.18);
  color: white;
  font: inherit;
  font-weight: 700;
}

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

.flash {
  margin-bottom: 16px;
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(30, 171, 96, 0.12);
  border: 1px solid rgba(30, 171, 96, 0.26);
  color: #d7ffe9;
}

.note {
  font-size: 0.96rem;
  color: var(--muted);
}

.post-content {
  display: grid;
  gap: 18px;
}

.hero-panel-home {
  background:
    radial-gradient(circle at 78% 18%, rgba(21, 87, 255, 0.38), transparent 22%),
    radial-gradient(circle at 16% 14%, rgba(199, 154, 47, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(7, 9, 15, 0.98), rgba(10, 14, 22, 0.98));
}

.hero-grid-home {
  align-items: center;
  min-height: 560px;
}

.page-pills,
.hero-crumbs,
.logo-belt,
.metrics-row,
.feedback-grid,
.article-teaser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-pill,
.hero-crumbs span,
.logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #d9e3ff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-pill.is-gold,
.logo-pill {
  color: #16254d;
  background: linear-gradient(90deg, rgba(230, 199, 120, 0.96), rgba(244, 223, 171, 0.96));
  border-color: rgba(240, 213, 139, 0.35);
}

.hero-crumbs {
  margin-top: 20px;
}

.hero-visual-home {
  min-height: 520px;
}

.hero-visual-home img {
  filter: saturate(1.05) contrast(1.02);
}

.hero-visual-home::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 72%;
  height: 52%;
  background: linear-gradient(0deg, rgba(5, 7, 12, 0.94), rgba(5, 7, 12, 0));
}

.hero-visual-home .hero-card,
.hero-visual-home .mini-card {
  z-index: 2;
}

.hero-home-stamp {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(8, 13, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--heading);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.hero-home-stamp strong {
  display: block;
  color: white;
}

.hero-home-stamp span {
  display: block;
  color: #d0dcff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slider-shell::before {
  display: none;
}

.hero-slider-track {
  position: relative;
  min-height: 780px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(20px, 0, 0);
  transition: opacity 0.65s ease, transform 0.65s ease, visibility 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.hero-slide-grid {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 8px;
  min-height: 780px;
  padding: 52px 54px 30px;
}

.hero-slide-copy {
  position: relative;
  z-index: 5;
  display: grid;
  align-content: start;
  gap: 16px;
  max-width: 340px;
  padding-top: 22px;
}

.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  padding: 0 20px 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(199, 154, 47, 0.45);
  background: rgba(8, 13, 22, 0.78);
  color: #ecf2ff;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-slide-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(47, 109, 255, 0.7);
  animation: heroBadgePulse 1.8s ease-out infinite;
}

@keyframes heroBadgePulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 109, 255, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(47, 109, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 109, 255, 0); }
}

.hero-slide-copy h1 {
  font-size: clamp(2.35rem, 4.2vw, 3.95rem);
  line-height: 0.9;
}

.hero-slide-copy h1 span {
  display: block;
  color: var(--accent-2);
}

.hero-slide-copy p {
  max-width: 33ch;
}

.hero-slider-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-slider-count {
  color: #dfe8ff;
  font-family: var(--heading);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.hero-slider-dots {
  display: flex;
  gap: 8px;
}

.hero-slider-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: width 0.24s ease, background 0.24s ease;
}

.hero-slider-dot.is-active {
  width: 62px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.hero-slide-stage {
  position: relative;
  min-height: 690px;
}

.hero-slide-stage::before {
  content: "";
  position: absolute;
  inset: 2% 4% 8% 18%;
  border-radius: 36px;
  background:
    radial-gradient(circle at 74% 18%, rgba(20, 84, 255, 0.24), transparent 22%),
    linear-gradient(135deg, rgba(11, 16, 27, 0.24), rgba(9, 12, 19, 0));
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0 100%, 0 22%);
}

.hero-stage-word {
  position: absolute;
  left: 0;
  right: 0;
  font-family: var(--heading);
  font-weight: 700;
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  pointer-events: none;
  text-align: center;
}

.hero-stage-word-top {
  top: 228px;
  z-index: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(223, 234, 255, 0.28);
  font-size: clamp(5.2rem, 11vw, 9.4rem);
}

.hero-stage-word-bottom {
  top: 362px;
  z-index: 3;
  color: #f3f7ff;
  text-shadow: 0 18px 28px rgba(0, 0, 0, 0.28);
  font-size: clamp(5rem, 10vw, 8.2rem);
}

.hero-slide-brand {
  position: absolute;
  left: 18%;
  top: 22px;
  z-index: 4;
  display: grid;
  gap: 4px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 12, 20, 0.84);
}

.hero-slide-brand strong {
  display: block;
  color: white;
  font-family: var(--heading);
  font-size: 1.5rem;
  line-height: 0.9;
  letter-spacing: 0.05em;
}

.hero-slide-brand span {
  color: #d7e2ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-slide-figure {
  position: absolute;
  left: 15%;
  top: 34px;
  bottom: 0;
  width: min(41vw, 545px);
  z-index: 2;
}

.hero-slide-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 30px 30px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
}

.hero-slide-stats {
  position: absolute;
  right: 12px;
  top: 24px;
  z-index: 4;
  display: grid;
  gap: 18px;
  width: 158px;
}

.hero-slide.is-active .hero-slide-stat {
  animation: heroStatIn 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-slide.is-active .hero-slide-stat:nth-child(1) { animation-delay: 0.30s; }
.hero-slide.is-active .hero-slide-stat:nth-child(2) { animation-delay: 0.50s; }
.hero-slide.is-active .hero-slide-stat:nth-child(3) { animation-delay: 0.70s; }

@keyframes heroStatIn {
  0%   { opacity: 0; transform: translate3d(24px, 0, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero-slide-stat strong {
  display: block;
  color: white;
  font-family: var(--heading);
  font-size: 3.2rem;
  line-height: 0.86;
  letter-spacing: 0.04em;
}

.hero-slide-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.3;
}

.hero-slide-seal {
  position: absolute;
  right: 22px;
  top: 208px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 50% 50%, rgba(20, 84, 255, 0.2), rgba(7, 12, 20, 0.9) 62%),
    rgba(7, 12, 20, 0.88);
  text-align: center;
}

.hero-slide-seal strong {
  display: block;
  color: white;
  font-family: var(--heading);
  font-size: 2rem;
  line-height: 0.9;
}

.hero-slide-seal span {
  display: block;
  margin-top: 4px;
  color: #d7e2ff;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slide-service-tag {
  position: absolute;
  left: 20%;
  bottom: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 12, 20, 0.88);
  color: #ecf2ff;
  font-weight: 700;
}

.section-compact {
  padding-top: 56px;
}

.story-split,
.offer-grid,
.trust-layout,
.faq-hub-grid,
.service-feature-grid,
.contact-layout,
.feature-aside-grid {
  display: grid;
  gap: 24px;
}

.story-split,
.trust-layout,
.service-feature-grid,
.contact-layout,
.feature-aside-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.story-panel,
.trust-photo,
.faq-promo,
.map-frame,
.article-teaser-card,
.advantage-row,
.logo-belt-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 19, 29, 0.98), rgba(10, 13, 20, 0.98));
  box-shadow: var(--shadow);
}

.story-panel {
  min-height: 380px;
}

.story-panel img,
.trust-photo img,
.faq-promo img,
.map-frame iframe,
.article-teaser-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-panel-photo::after,
.trust-photo::after,
.faq-promo::after,
.article-teaser-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(5, 7, 12, 0), rgba(5, 7, 12, 0.92));
}

.story-panel-copy,
.offer-copy-panel,
.contact-sidebar {
  display: grid;
  gap: 18px;
}

.story-badge,
.trust-note,
.offer-chip,
.process-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 11px 14px;
  border-radius: 18px;
  background: rgba(6, 10, 18, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d7e1ff;
  font-weight: 700;
}

.story-panel-photo .story-badge,
.trust-photo .trust-note {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
}

.story-mini-grid,
.trust-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.story-mini-card,
.metric-box,
.feedback-card {
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.story-mini-card strong,
.metric-box strong {
  display: block;
  color: white;
  font-family: var(--heading);
  font-size: 2rem;
  line-height: 0.92;
}

.story-mini-card span,
.metric-box span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
}

.offer-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.offer-menu {
  display: grid;
  gap: 14px;
}

.offer-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.offer-item strong {
  display: block;
  color: white;
  font-size: 1.2rem;
  line-height: 1.1;
}

.offer-item span {
  color: var(--muted);
}

.offer-arrow,
.adv-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1454ff, #256dff);
  color: white;
  font-family: var(--heading);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.offer-arrow:hover,
.adv-link:hover,
.cta-arrow:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 34px rgba(20, 84, 255, 0.3);
}

.offer-media {
  min-height: 420px;
  overflow: hidden;
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 8, 0.08), rgba(3, 5, 8, 0.78)),
    linear-gradient(90deg, rgba(3, 5, 8, 0.08), rgba(3, 5, 8, 0.35));
}

.offer-media .offer-chip,
.offer-media .story-badge {
  position: absolute;
  z-index: 2;
}

.offer-media .offer-chip {
  left: 20px;
  top: 20px;
}

.offer-media .story-badge {
  right: 20px;
  bottom: 20px;
}

.process-panel-grid {
  display: grid;
  gap: 18px;
}

.process-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.process-row strong {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(20, 84, 255, 0.14);
  color: #b9cbff;
  font-family: var(--heading);
  font-size: 1.8rem;
}

.trust-layout .trust-photo {
  min-height: 460px;
}

.trust-checks,
.info-stack {
  display: grid;
  gap: 12px;
}

.trust-check,
.info-stack li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.trust-check::before,
.contact-info-list li::before {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(20, 84, 255, 0.16);
  color: #bfd0ff;
  font-weight: 700;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feedback-card {
  min-height: 200px;
  background:
    radial-gradient(circle at 90% 15%, rgba(20, 84, 255, 0.16), transparent 26%),
    rgba(255, 255, 255, 0.03);
}

.feedback-card q {
  display: block;
  color: #edf2ff;
  font-size: 1.08rem;
  line-height: 1.6;
}

.feedback-card .author {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.logo-belt-wrap {
  padding: 18px;
  background: linear-gradient(180deg, rgba(15, 19, 29, 0.96), rgba(8, 11, 17, 0.96));
}

.logo-belt {
  justify-content: space-between;
}

.logo-pill {
  min-width: 160px;
  justify-content: center;
}

.advantage-list {
  display: grid;
  gap: 16px;
}

.advantage-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
}

.adv-number {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(20, 84, 255, 0.16);
  color: #bfd0ff;
  font-family: var(--heading);
  font-size: 1.9rem;
}

.article-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.article-teaser-card {
  min-height: 340px;
}

.article-teaser-card .card-body {
  position: absolute;
  inset: auto 20px 20px;
  z-index: 2;
}

.article-teaser-card h3 {
  margin-bottom: 10px;
}

.article-teaser-card .category {
  margin-bottom: 8px;
}

.faq-hub-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.faq-intro {
  display: grid;
  gap: 18px;
  min-height: 100%;
}

.faq-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-layout {
  grid-template-columns: 1.15fr 0.85fr;
}

.contact-sidebar {
  min-height: 100%;
}

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

.contact-info-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.map-frame {
  min-height: 360px;
  margin-top: 24px;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.fx-reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  filter: saturate(0.9);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s ease;
  transition-delay: calc(var(--reveal-order, 0) * 40ms);
}

.fx-reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.fx-tilt {
  will-change: transform;
  transform:
    perspective(1000px)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    translate3d(0, 0, 0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.fx-tilt.is-active {
  box-shadow:
    0 32px 82px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.fx-tilt.is-active img {
  transform: translate3d(var(--img-shift-x, 0px), var(--img-shift-y, 0px), 0) scale(1.05);
  filter: saturate(1.08) contrast(1.04);
}

.pricing-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.plan-card.featured {
  transform: translateY(-18px);
  background:
    radial-gradient(circle at 78% 14%, rgba(20, 84, 255, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(18, 25, 39, 0.98), rgba(9, 12, 19, 0.98));
}

.page-hero-inner {
  position: relative;
}

.page-hero-inner .hero-copy {
  display: grid;
  align-content: center;
}

.page-hero-inner .hero-visual {
  min-height: 360px;
}

.page-hero-inner .hero-visual.photo::before {
  display: block;
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.1), rgba(5, 7, 12, 0.3)),
    linear-gradient(180deg, rgba(5, 7, 12, 0), rgba(5, 7, 12, 0.74));
}

.page-hero-inner .hero-card,
.page-hero-inner .mini-card {
  z-index: 2;
}

.page-hero-inner .hero-card {
  width: 240px;
}

.page-hero-inner .mini-card {
  width: 190px;
}

.section-head.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-head.centered p:last-child {
  margin-inline: auto;
}

.team-stage,
.editorial-grid,
.career-grid,
.career-note-grid,
.service-detail-stage,
.post-layout {
  display: grid;
  gap: 22px;
}

.team-stage {
  grid-template-columns: 0.92fr 1.08fr;
}

.team-stage .trust-photo,
.service-detail-stage .trust-photo {
  min-height: 100%;
}

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

.editorial-card {
  overflow: hidden;
  padding: 0;
}

.editorial-card img {
  width: 100%;
  aspect-ratio: 1.25 / 0.82;
  object-fit: cover;
  display: block;
}

.editorial-card .copy {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editorial-meta .status-pill {
  margin-bottom: 0;
}

.editorial-card .copy h3 {
  margin-bottom: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.editorial-card .copy p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.plan-figure {
  display: block;
  margin: 18px 0 8px;
  font-family: var(--heading);
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.8;
  color: #fff;
}

.plan-subline {
  color: var(--muted);
  min-height: 5.2em;
}

.plan-overline {
  color: #9db7ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.contact-layout + .map-frame {
  margin-top: 24px;
}

.contact-sidebar .button {
  margin-top: 18px;
}

.career-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

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

.career-note {
  min-height: 220px;
}

.service-detail-stage {
  grid-template-columns: 0.94fr 1.06fr;
}

.service-bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.service-bullet-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.service-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(199, 154, 47, 0.08);
}

.post-layout {
  grid-template-columns: 1.18fr 0.82fr;
  align-items: start;
}

.post-shell {
  overflow: hidden;
}

.post-cover {
  margin-bottom: 28px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.post-cover img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  display: block;
}

.post-shell h2 {
  margin: 22px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.post-shell p + p {
  margin-top: 16px;
}

.inline-quote {
  position: relative;
  margin: 28px 0;
  padding: 28px 28px 28px 86px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 24%, rgba(20, 84, 255, 0.18), transparent 22%),
    rgba(255, 255, 255, 0.03);
}

.inline-quote::before {
  content: "\"";
  position: absolute;
  left: 26px;
  top: 10px;
  color: var(--accent);
  font-family: var(--heading);
  font-size: 5.3rem;
  line-height: 1;
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  color: var(--muted);
}

.share-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.sidebar-stack {
  display: grid;
  gap: 22px;
}

.sidebar-posts {
  display: grid;
  gap: 14px;
}

.sidebar-post {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: center;
}

.sidebar-post img {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  object-fit: cover;
}

.sidebar-post .category {
  margin-bottom: 6px;
}

.sidebar-cta {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 360px;
}

.sidebar-cta img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.sidebar-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 11, 0.08), rgba(4, 7, 11, 0.9)),
    linear-gradient(90deg, rgba(4, 7, 11, 0.08), rgba(4, 7, 11, 0.34));
}

.sidebar-cta .card-body {
  position: absolute;
  inset: auto 20px 20px;
  z-index: 2;
}

.sidebar-cta .button {
  margin-top: 14px;
}

body.page-team .team-card:nth-child(even) {
  margin-top: 18px;
}

body.page-blog .editorial-card:nth-child(even) {
  margin-top: 26px;
}

body.page-pricing .plan-card.featured {
  animation: featuredPulse 4.8s ease-in-out infinite;
}

body.page-contact .map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(20, 84, 255, 0.18), transparent 34%, rgba(199, 154, 47, 0.12)),
    linear-gradient(180deg, transparent, rgba(5, 7, 12, 0.12));
}

body.page-careers .career-note:nth-child(2) {
  margin-top: -18px;
}

body.page-services .offer-item:nth-child(2) {
  box-shadow: inset 0 0 0 1px rgba(20, 84, 255, 0.18);
}

body.page-faq .faq-item {
  background:
    radial-gradient(circle at 90% 16%, rgba(20, 84, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(15, 19, 29, 0.98), rgba(8, 11, 17, 0.98));
}

.exact-section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.exact-section-head p:last-child {
  margin-inline: auto;
}

.heading-row-between {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.heading-arrow {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1454ff, #256dff);
  color: white;
  font-family: var(--heading);
  font-size: 2.5rem;
  box-shadow: 0 18px 40px rgba(20, 84, 255, 0.28);
}

.exact-split,
.exact-service-showcase,
.team-grid-exact,
.blog-grid-exact,
.plan-row-exact,
.logo-strip-grid,
.feedback-duo,
.big-stat-grid,
.floating-mini-grid {
  display: grid;
  gap: 22px;
}

.exact-split {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.exact-service-showcase {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

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

.blog-grid-exact,
.feedback-duo {
  grid-template-columns: repeat(2, 1fr);
}

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

.logo-strip-grid {
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}

.big-stat-grid,
.floating-mini-grid {
  grid-template-columns: repeat(2, 1fr);
}

.exact-photo-card,
.exact-copy-card,
.exact-media-card,
.exact-logo-strip {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 19, 29, 0.98), rgba(8, 11, 17, 0.98));
  box-shadow: var(--shadow);
}

.exact-photo-card,
.exact-media-card {
  min-height: 420px;
}

.exact-photo-card img,
.exact-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exact-photo-card::after,
.exact-media-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(5, 7, 12, 0), rgba(5, 7, 12, 0.92));
}

.vertical-label {
  position: absolute;
  left: 16px;
  top: 18px;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 14px 10px;
  border-radius: 16px;
  background: rgba(20, 84, 255, 0.9);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-mini-grid {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.float-mini {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 12, 20, 0.9);
}

.float-mini strong,
.big-stat strong {
  display: block;
  color: white;
  font-family: var(--heading);
  font-size: 2.4rem;
  line-height: 0.9;
}

.float-mini span,
.big-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.exact-copy-card {
  display: grid;
  gap: 20px;
  padding: 30px;
}

.exact-copy-card p {
  max-width: 56ch;
}

.big-stat {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 88% 16%, rgba(20, 84, 255, 0.18), transparent 24%),
    rgba(255, 255, 255, 0.03);
}

.big-stat.is-accent {
  background:
    radial-gradient(circle at 88% 16%, rgba(199, 154, 47, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(19, 32, 74, 0.98), rgba(12, 20, 48, 0.98));
}

.exact-service-menu {
  padding: 30px;
}

.exact-service-menu .section-kicker,
.exact-service-menu h2 {
  margin-bottom: 12px;
}

.exact-service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.exact-service-row:last-child {
  border-bottom: 0;
}

.exact-service-row strong {
  display: block;
  color: white;
  font-size: 1.28rem;
  line-height: 1;
}

.exact-service-row p {
  margin-top: 8px;
  font-size: 0.98rem;
}

.exact-service-row .offer-arrow {
  margin-top: 4px;
}

.play-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1454ff, #256dff);
  color: white;
  font-family: var(--heading);
  font-size: 2rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 44px rgba(20, 84, 255, 0.28);
}

.cta-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 12, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 700;
}

.metric-ribbon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(20, 84, 255, 0.9), rgba(32, 106, 255, 0.72));
  color: white;
}

.metric-ribbon strong {
  display: block;
  font-family: var(--heading);
  font-size: 2.2rem;
  line-height: 0.9;
}

.metric-ribbon span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.trust-bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.trust-bullet-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.trust-bullet-list li::before {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(20, 84, 255, 0.16);
  color: #bfd0ff;
  font-weight: 700;
}

.team-grid-exact .team-card {
  padding: 18px;
}

.team-grid-exact .thumbnail-image {
  height: 240px;
}

.team-grid-exact h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.team-grid-exact p {
  font-size: 0.95rem;
}

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

.team-card-compact .thumbnail-image {
  height: 180px;
  margin-bottom: 14px;
}

.team-card-compact .role {
  margin-bottom: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #4d7fff;
  font-size: 0.78rem;
}

.team-card-compact h3 {
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
}

.team-card-note {
  margin-top: 8px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.exact-logo-strip {
  padding: 18px;
}

.logo-mark {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 14px 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #dfe7ff;
  font-family: var(--heading);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-row-exact .plan-card {
  min-height: 100%;
}

.plan-row-exact .plan-card .button {
  margin-top: 18px;
  width: 100%;
}

.feedback-duo .feedback-card {
  min-height: 240px;
}

.blog-grid-exact .editorial-card:nth-child(even),
.team-grid-exact .team-card:nth-child(even) {
  margin-top: 0;
}

.cta-footer {
  padding: 14px 0 0;
}

.cta-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  border-radius: 32px;
  padding: 44px 40px;
  background:
    radial-gradient(circle at 82% 28%, rgba(21, 87, 255, 0.34), transparent 22%),
    linear-gradient(135deg, rgba(15, 19, 29, 0.98), rgba(7, 10, 17, 0.98));
  border: 1px solid var(--line);
}

.cta-copy {
  display: grid;
  gap: 10px;
}

.cta-display {
  display: grid;
  gap: 4px;
  max-width: 10ch;
}

.cta-display span,
.cta-display strong {
  display: block;
  font-family: var(--heading);
  text-transform: uppercase;
  line-height: 0.82;
  letter-spacing: 0.03em;
}

.cta-display span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(181, 198, 255, 0.34);
  font-size: clamp(3.8rem, 7vw, 6rem);
}

.cta-display strong {
  color: #f6f9ff;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
}

.cta-arrow {
  display: inline-grid;
  place-items: center;
  width: 146px;
  height: 146px;
  border-radius: 50%;
  font-size: 4.2rem;
  background: linear-gradient(135deg, #1454ff, #256dff);
  box-shadow: 0 18px 44px rgba(20, 84, 255, 0.3);
}

.site-footer {
  padding: 34px 0 26px;
  background:
    radial-gradient(circle at 82% 18%, rgba(21, 87, 255, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(7, 9, 15, 0), rgba(7, 10, 16, 0.74) 14%, rgba(7, 10, 16, 0.98) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 24px;
  padding: 34px 0;
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.contact-intro {
  max-width: 38ch;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.contact-stack-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(20, 84, 255, 0.16);
  color: #bfd0ff;
  font-weight: 700;
}

.contact-stack-item strong {
  display: block;
  color: white;
  font-family: var(--heading);
  font-size: 1.4rem;
  line-height: 0.92;
}

.contact-stack-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-social-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(61, 123, 255, 0.26);
  background: rgba(20, 84, 255, 0.16);
  color: white;
  font-weight: 700;
  letter-spacing: 0.04em;
}

body.page-services .page-hero .hero-copy h1,
body.page-team .page-hero .hero-copy h1,
body.page-pricing .page-hero .hero-copy h1,
body.page-blog .page-hero .hero-copy h1,
body.page-contact .page-hero .hero-copy h1,
.service-detail-page .page-hero .hero-copy h1 {
  max-width: 8ch;
}

body.page-services .exact-section-head h2,
body.page-team .exact-section-head h2,
body.page-pricing .exact-section-head h2,
body.page-blog .exact-section-head h2,
.service-detail-page .exact-section-head h2 {
  max-width: 10ch;
  margin-inline: auto;
}

body.page-services .exact-copy-card h2,
body.page-team .exact-copy-card h2,
body.page-pricing .heading-row-between h2,
body.page-contact .form-panel h2,
body.page-contact .contact-sidebar h3,
.service-detail-page .exact-copy-card h2,
.service-detail-page .heading-row-between h2 {
  font-size: clamp(2.25rem, 4.2vw, 3.8rem);
}

body.page-blog .editorial-card .copy {
  gap: 12px;
}

@media (max-width: 980px) {
  body.page-blog .editorial-card:nth-child(even),
  body.page-team .team-card:nth-child(even),
  body.page-careers .career-note:nth-child(2) {
    margin-top: 0;
  }

  .hero-slider-track,
  .hero-slide-grid {
    min-height: auto;
  }

  .hero-slide-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 28px 28px;
  }

  .hero-slide-copy {
    max-width: none;
    padding-top: 0;
  }

  .hero-slide-stage {
    min-height: 560px;
  }

  .hero-stage-word-top {
    top: 184px;
    font-size: clamp(4rem, 13vw, 7rem);
  }

  .hero-stage-word-bottom {
    top: 282px;
    font-size: clamp(3.8rem, 12vw, 6.2rem);
  }

  .hero-slide-figure,
  .hero-slide-brand,
  .hero-slide-service-tag {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-slide-figure {
    width: min(58vw, 420px);
  }

  .hero-slide-stats {
    right: 0;
    left: 0;
    top: auto;
    bottom: 92px;
    width: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-slide-seal {
    right: 18px;
    top: 18px;
    width: 108px;
    height: 108px;
  }

  .exact-split,
  .exact-service-showcase,
  .team-grid-exact,
  .blog-grid-exact,
  .plan-row-exact,
  .logo-strip-grid,
  .feedback-duo,
  .big-stat-grid,
  .floating-mini-grid,
  .metric-ribbon {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(8, 10, 16, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
  }

  .site-nav.is-open {
    display: flex;
  }

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

  .hero-grid,
  .stats-grid,
  .feature-grid,
  .services-grid,
  .team-grid,
  .blog-grid,
  .plans-grid,
  .process-grid,
  .split-layout,
  .two-column,
  .story-split,
  .offer-grid,
  .trust-layout,
  .faq-hub-grid,
  .faq-split,
  .service-feature-grid,
  .contact-layout,
  .team-stage,
  .editorial-grid,
  .career-grid,
  .career-note-grid,
  .service-detail-stage,
  .post-layout,
  .feature-aside-grid,
  .pricing-stack,
  .article-teaser-grid,
  .feedback-grid,
  .footer-grid,
  .cta-footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 28px;
  }

  .hero-grid-home {
    min-height: auto;
  }

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

  .logo-belt {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .fx-reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 640px) {
  body::before,
  body::after {
    opacity: 0.28;
  }

  .hero-panel::after,
  .blue-band::before {
    opacity: 0.18;
  }

  .hero-panel::before {
    font-size: clamp(3.2rem, 14vw, 5.6rem);
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .hero-slide-grid {
    padding: 24px 18px 22px;
  }

  .hero-slide-copy h1 {
    font-size: clamp(2.3rem, 10vw, 3.5rem);
  }

  .hero-slide-stage {
    min-height: 420px;
  }

  .hero-stage-word-top {
    top: 126px;
  }

  .hero-stage-word-bottom {
    top: 196px;
  }

  .hero-slide-figure {
    width: min(76vw, 360px);
    top: 52px;
    bottom: 22px;
  }

  .hero-slide-stats {
    bottom: 78px;
    gap: 10px;
  }

  .hero-slide-stat strong {
    font-size: 2.2rem;
  }

  .hero-slide-stat span {
    font-size: 0.8rem;
  }

  .hero-slide-seal {
    width: 88px;
    height: 88px;
    top: 12px;
    right: 8px;
  }

  .hero-slide-seal strong {
    font-size: 1.4rem;
  }

  .hero-slide-seal span {
    font-size: 0.62rem;
  }

  .hero-slider-meta {
    flex-wrap: wrap;
  }

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

  .panel,
  .service-card,
  .stat-card,
  .team-card,
  .blog-card,
  .plan-card,
  .process-card,
  .faq-item,
  .split-panel,
  .form-panel,
  .info-card,
  .cta-footer-inner {
    padding: 22px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .service-highlight {
    grid-template-columns: 1fr;
  }

  .story-mini-grid,
  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .advantage-row,
  .offer-item,
  .process-row {
    grid-template-columns: 1fr;
  }

  .inline-quote {
    padding: 78px 22px 22px;
  }

  .play-chip {
    width: 68px;
    height: 68px;
    font-size: 1.6rem;
  }

  .vertical-label {
    left: 12px;
    top: 12px;
  }

  .sidebar-post {
    grid-template-columns: 72px 1fr;
  }

  .sidebar-post img {
    width: 72px;
    height: 72px;
  }
}

:root {
  --accent: #1454ff;
  --accent-2: #2f6dff;
  --accent-soft: rgba(20, 84, 255, 0.16);
}

body::after {
  background: radial-gradient(circle, rgba(37, 109, 255, 0.18), transparent 70%);
}

.page-pill.is-gold,
.logo-pill {
  color: #f4f7ff;
  background: linear-gradient(135deg, #1454ff, #256dff);
  border-color: rgba(37, 109, 255, 0.4);
}

.site-header {
  position: relative;
  top: 0;
  z-index: 30;
  padding: 18px 0 0;
  backdrop-filter: none;
  background: transparent;
  border-bottom: 0;
}

.header-inner {
  min-height: 72px;
  gap: 24px;
}

.brand {
  gap: 12px;
  flex-shrink: 0;
}

.brand img,
.footer-brand img {
  width: 214px;
  max-width: 100%;
  height: auto;
}

.brand strong {
  font-size: 2.05rem;
  letter-spacing: 0.04em;
  line-height: 0.88;
}

.site-nav {
  margin-left: auto;
  gap: 26px;
  font-weight: 700;
}

.site-nav > a,
.nav-dropdown > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: #dfe7ff;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.site-nav > a::after,
.nav-dropdown > summary::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  background: #256dff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after,
.nav-dropdown:hover > summary::before,
.nav-dropdown.is-active > summary::before,
.nav-dropdown[open] > summary::before {
  transform: scaleX(1);
}

.site-nav > a:hover,
.site-nav > a.is-active,
.nav-dropdown:hover > summary,
.nav-dropdown.is-active > summary,
.nav-dropdown[open] > summary {
  color: white;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  list-style: none;
  cursor: pointer;
  gap: 6px;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  content: "+";
  font-size: 0.75rem;
  opacity: 0.8;
  transition: transform 0.22s ease;
}

.nav-dropdown[open] > summary::after {
  transform: rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 8;
  display: grid;
  gap: 8px;
  min-width: 188px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 14, 24, 0.98);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown-menu a {
  color: var(--muted);
  padding: 4px 2px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
  color: white;
}

.header-cta {
  margin-left: 8px;
}

.header-apps {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: 0;
}

.header-apps span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #dfe7ff;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 16, 0.84);
}

.blue-band {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #f4f7ff;
  border-top: 0;
  border-bottom: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.blue-band-inner {
  padding: 18px 0;
  font-size: clamp(1.75rem, 4.8vw, 3rem);
  letter-spacing: 0.04em;
}

.team-grid-exact .team-card {
  padding: 0;
  border-radius: 26px;
}

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

.team-card-compact .thumbnail-image {
  height: 220px;
  margin: 0;
  border: 0;
  border-radius: 26px 26px 0 0;
}

.team-card-compact h3 {
  margin: 16px 16px 4px;
  font-size: clamp(1.5rem, 2.35vw, 1.95rem);
  line-height: 0.9;
}

.team-card-note {
  margin: 0 16px 18px;
  color: #3f77ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.cta-footer {
  padding: 34px 0 0;
}

.cta-footer-inner {
  padding: 56px 40px 38px;
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 78% 32%, rgba(21, 87, 255, 0.32), transparent 18%),
    linear-gradient(180deg, rgba(5, 7, 12, 0.72), rgba(7, 10, 16, 0.96));
  box-shadow: none;
}

.cta-copy {
  gap: 14px;
}

.cta-display {
  max-width: 11ch;
  gap: 0;
}

.cta-display span {
  font-size: clamp(4.8rem, 8.4vw, 6.8rem);
}

.cta-display strong {
  font-size: clamp(4rem, 6.8vw, 5.6rem);
}

.site-footer {
  padding: 0;
  background: linear-gradient(180deg, rgba(7, 9, 15, 0), rgba(7, 10, 16, 0.92) 16%, rgba(7, 10, 16, 1) 100%);
}

.footer-grid {
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 24px;
  padding: 38px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: #4e7fff;
  font-family: var(--body);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-copy {
  max-width: 32ch;
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #1454ff, #256dff);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(20, 84, 255, 0.24);
}

.footer-bottom-bar {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.footer-bottom {
  min-height: 56px;
  align-items: center;
  padding: 0;
  color: white;
  border-top: 0;
}

.footer-bottom span {
  color: inherit;
}

@media (max-width: 980px) {
  .site-header {
    padding-top: 14px;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand img,
  .footer-brand img {
    width: 184px;
  }

  .site-nav {
    top: 64px;
    gap: 8px;
  }

  .site-nav > a,
  .nav-dropdown > summary {
    width: 100%;
    justify-content: space-between;
    min-height: 40px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    transform: none;
    box-shadow: none;
  }

  .header-cta {
    margin-left: 0;
    justify-content: center;
  }

  .header-apps {
    display: none;
  }
}
