﻿:root {
  --ink: #111827;
  --muted: #5d6b7c;
  --paper: #ffffff;
  --soft: #f7eef1;
  --line: #eadade;
  --red: #ff1744;
  --red-soft: #ff6a7d;
  --yellow: #ff1744;
  --black: #050507;
  --steel: #2b0b14;
  --shadow: 0 26px 78px rgba(30, 4, 12, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #faf4f5;
  font-family: Arial, Helvetica, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 7, 0.94);
  box-shadow: 0 18px 40px rgba(30, 4, 12, 0.24);
  backdrop-filter: blur(14px);
}

.site-header > .brand,
.site-header > .nav-toggle,
.site-header > .main-nav,
.site-header > .header-cta {
  margin-block: 12px;
}

.site-header:has(> .brand) {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding-inline: max(17px, calc((100vw - 1180px) / 2));
}

.utility-bar,
.nav-shell,
.section-inner {
  width: min(1180px, calc(100% - 34px));
  margin-inline: auto;
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 950;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  box-shadow: 0 14px 30px rgba(255, 23, 68, 0.26);
  font-size: 0.86rem;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 2.6vw, 32px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-block: 22px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 3px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.paul-language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.paul-language-switcher button {
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 950;
  cursor: pointer;
}

.paul-language-switcher button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--yellow), var(--red));
}

.hero-slider {
  position: relative;
  min-height: clamp(440px, 64vh, 590px);
  overflow: hidden;
  background: var(--black);
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  animation: slideFade 14s infinite;
}

.hero-slide:nth-child(2) {
  animation-delay: 7s;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.92), rgba(18, 7, 11, 0.52) 54%, rgba(36, 9, 17, 0.36)),
    linear-gradient(0deg, rgba(5, 5, 7, 0.42), transparent 54%);
  content: "";
}

.hero-slide img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.06) translateX(-2%);
  animation: imageDrift 14s infinite ease-in-out;
}

.hero-slide:nth-child(2) img {
  animation-delay: 7s;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  bottom: clamp(42px, 7vw, 76px);
  left: max(17px, calc((100vw - 1180px) / 2));
  width: min(720px, calc(100% - 34px));
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 4.8vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 950;
  font-size: 0.92rem;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  box-shadow: 0 16px 38px rgba(255, 23, 68, 0.28);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  font-weight: 950;
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.intro-section,
.video-section,
.services-section,
.feature-band,
.image-copy,
.process-section,
.onsite-section,
.work-section,
.contact-section,
section.band,
section:not([class]) {
  padding: clamp(42px, 6vw, 76px) 0;
}

.narrow {
  max-width: 930px;
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3.2vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.intro-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #faf4f5 100%);
}

.video-section {
  background: #050507;
  color: #fff;
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.video-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.intro-section p:not(.eyebrow),
.image-copy p,
.onsite-section p,
.work-section p,
.contact-section p,
article p {
  color: var(--muted);
  line-height: 1.72;
}

.services-section,
.process-section,
.band {
  background: #f6eef0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-tile,
article {
  display: block;
  min-height: 205px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-tile:hover,
article:hover {
  position: relative;
  z-index: 2;
  background: #fdfefe;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-tile span,
article span,
.service-icon {
  display: inline-grid;
  min-width: 52px;
  height: 36px;
  margin-bottom: 16px;
  padding-inline: 12px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--steel));
  font-size: 0.82rem;
  font-weight: 950;
}

.feature-band {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 23, 68, 0.14), transparent 38%),
    linear-gradient(135deg, #050507, #190910 58%, #2b0b14);
}

.split-layout,
.image-copy-grid,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.solution-list {
  display: grid;
  gap: 12px;
}

.solution-item {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.solution-item strong,
.solution-item span {
  display: block;
}

.solution-item span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.solution-item.is-active {
  border-color: var(--yellow);
  background: rgba(255, 255, 255, 0.16);
}

.solution-output {
  padding: 18px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.solution-output strong {
  display: block;
  margin-bottom: 8px;
}

.solution-output p {
  margin-bottom: 0;
  color: var(--muted);
}

.image-copy {
  background: #fff;
}

.moving-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.moving-media::before {
  position: absolute;
  inset: 18px auto auto 18px;
  z-index: 2;
  width: 88px;
  height: 88px;
  border: 8px solid var(--yellow);
  border-radius: 8px;
  content: "";
  opacity: 0.78;
}

.moving-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  animation: floatImage 7s ease-in-out infinite alternate;
}

.process-grid,
.work-grid,
.intro-grid,
.faq-grid,
.onsite-grid,
.seo-week-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 24px;
  background: var(--line);
  border: 1px solid var(--line);
}

.intro-grid,
.faq-grid,
.seo-week-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.onsite-section {
  color: #fff;
  background: linear-gradient(135deg, #050507, #190910);
}

.onsite-section p {
  color: rgba(255, 255, 255, 0.75);
}

.work-section {
  background: #fff8f9;
}

.contact-section {
  color: #fff;
  background: linear-gradient(135deg, #050507, #190910 62%, #2b0b14);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-methods a {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #342126;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff9fa;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #20b486;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: #050507;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand small {
  color: rgba(255, 255, 255, 0.64);
}

.site-footer p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.66);
}


.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 900;
}

.service-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
  padding: 118px max(24px, calc((100vw - 1180px) / 2)) 68px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.9), rgba(18, 7, 11, 0.58)),
    url("/assets/onesoft-solution-usa-global-it-services-hero.png") center / cover;
}

.service-hero .hero-media,
.service-hero .hero-panel {
  display: none;
}

.service-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.service-hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 4.8vw, 4.6rem);
  line-height: 1;
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 48px;
  max-width: none;
}

.feature-media {
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.feature-media img {
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.text-link {
  color: var(--red);
  font-weight: 950;
}

.seo-service-hero {
  isolation: isolate;
}

.paul-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.92), rgba(18, 7, 11, 0.54)),
    url("/assets/onesoft-solution-usa-onsite-it-services.png") center / cover;
}

.paul-book-first {
  padding-top: clamp(34px, 5vw, 58px);
}

.paul-mobile-hero {
  padding: clamp(34px, 6vw, 72px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 23, 68, 0.28), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(255, 90, 114, 0.18), transparent 34%),
    linear-gradient(135deg, #050507, #12070b 58%, #240911);
}

.paul-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.paul-hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
}

.paul-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.paul-hero-card {
  border: 1px solid rgba(255, 23, 68, 0.34);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 34px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 23, 68, 0.28), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 28px 90px rgba(255, 23, 68, 0.18);
}

.paul-hero-card strong {
  display: block;
  margin: 12px 0;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: .9;
  letter-spacing: 0;
}

.paul-hero-card p {
  color: rgba(255, 255, 255, 0.72);
}

.paul-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffd5dc;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.paul-quick-book {
  padding: 22px 0;
  color: #fff;
  background: #050507;
}

.paul-book-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 23, 68, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 23, 68, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
}

.paul-call-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.paul-call-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 900;
}

.paul-call-form label:nth-child(3),
.paul-call-form button,
.paul-call-form .form-status {
  grid-column: 1 / -1;
}

.paul-call-form input,
.paul-call-form select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(5, 5, 7, 0.62);
}

.paul-book-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.paul-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--line);
}

.paul-compact-section {
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 23, 68, 0.16), transparent 32%),
    #050507;
}

.paul-compact-section article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
}

.paul-compact-section article p {
  color: rgba(255, 255, 255, 0.72);
}

.paul-coverage {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 23, 68, 0.2), transparent 34%),
    linear-gradient(135deg, #050507, #190910 58%, #2b0b14);
}

.paul-compact-section,
.paul-steps,
.paul-trusted,
.paul-faq {
  padding-block: clamp(34px, 5vw, 56px);
}

.paul-trusted {
  background: #faf4f5;
}

.paul-trusted .section-inner {
  display: grid;
  gap: 18px;
}

.paul-trusted .trust-lead {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.trusted-grid article {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 18px 14px;
  color: var(--ink);
  background: #fff;
  font-size: 1rem;
  font-weight: 950;
  text-align: center;
}

.trusted-logo-card span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(30, 4, 12, 0.18);
}

.trusted-logo-card strong,
.trusted-logo-card small {
  display: block;
  line-height: 1.05;
}

.trusted-logo-card strong {
  font-size: 1.05rem;
}

.trusted-logo-card small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.paisa-logo span {
  background: linear-gradient(135deg, #050507, #ff1744);
}

.limonsito-logo span {
  background: linear-gradient(135deg, #2b0b14, #ff6a7d);
}

.ritmos-logo span {
  background: linear-gradient(135deg, #1d4ed8, #ef4444);
}

.margarita-logo span {
  background: linear-gradient(135deg, #050507, #ff6a7d);
}

.cantina-logo span {
  background: linear-gradient(135deg, #111827, #ff1744);
}

@media (max-width: 900px) {
  .paul-hero-grid,
  .paul-book-card {
    grid-template-columns: 1fr;
  }

  .paul-mobile-hero {
    padding-top: 28px;
  }

  .paul-hero-copy h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .paul-quick-book .contact-methods,
  .paul-mobile-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .paul-quick-book .btn,
  .paul-mobile-hero .btn,
  .paul-call-form button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .paul-mobile-hero,
  .paul-quick-book,
  .paul-compact-section,
  .paul-coverage,
  .paul-trusted,
  .paul-steps,
  .paul-faq {
    padding-block: 28px;
  }

  .paul-hero-copy h1 {
    max-width: 11ch;
  }

  .paul-hero-copy p:not(.eyebrow),
  .paul-hero-card p,
  .paul-book-card p,
  .paul-coverage p {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .paul-hero-card strong {
    font-size: clamp(2.3rem, 14vw, 3.35rem);
  }

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

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

  .paul-book-card {
    padding: 18px;
  }

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

  .paul-call-form input,
  .paul-call-form select {
    min-width: 0;
  }
}

.seo-service-hero::after {
  position: absolute;
  inset: auto 8% 12% auto;
  width: min(28vw, 340px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 23, 68, 0.36);
  border-radius: 50%;
  content: "";
  animation: seoPulse 5s ease-in-out infinite;
}

.seo-longform p {
  max-width: 880px;
  margin-inline: auto;
  font-size: 1.02rem;
  text-align: left;
}

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

.case-study {
  max-width: 980px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-strip div {
  padding: 22px;
  background: #fff;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--red);
  font-size: 1.35rem;
}

.proof-strip span {
  color: var(--muted);
  font-weight: 900;
}

.internal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.internal-links a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--red);
  background: #fff;
  font-weight: 900;
}

@keyframes seoPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.32;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
}

@keyframes slideFade {
  0%,
  43% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes imageDrift {
  0% {
    transform: scale(1.06) translateX(-2%);
  }

  45% {
    transform: scale(1.14) translateX(2%);
  }

  100% {
    transform: scale(1.08) translateX(0);
  }
}

@keyframes floatImage {
  from {
    transform: scale(1.07) translateY(-10px);
  }

  to {
    transform: scale(1.12) translateY(10px);
  }
}

@media (max-width: 1040px) {
  .service-grid,
  .seo-grid-six,
  .process-grid,
  .work-grid,
  .intro-grid,
  .onsite-grid,
  .seo-week-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .image-copy-grid,
  .video-grid,
  .contact-panel,
  .section-head.split {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    padding-block: 12px;
  }

  .site-header:has(> .brand) {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 11px;
    gap: 4px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--red);
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: currentColor;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    position: fixed;
    top: 118px;
    right: 17px;
    left: 17px;
    display: grid;
    justify-content: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    color: var(--ink);
  }

  .main-nav.is-open a {
    padding: 12px;
  }

  .main-nav.is-open a::after {
    display: none;
  }

  .hero-slider {
    min-height: 680px;
    background: #050507;
  }

  .hero-slide {
    display: grid;
    grid-template-rows: auto 1fr;
    background: #050507;
  }

  .hero-slide::after {
    display: none;
  }

  .hero-slide img {
    height: auto;
    max-height: 330px;
    object-fit: contain;
    object-position: center top;
    background: #050507;
    transform: none;
    animation: none;
  }

  .hero-copy {
    right: 17px;
    bottom: 26px;
    left: 17px;
    width: auto;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(5, 5, 7, 0.92);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: clamp(1.85rem, 8.6vw, 2.7rem);
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 0.96rem;
  }

  .utility-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-block: 10px;
  }

  .utility-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  .service-grid,
  .process-grid,
  .work-grid,
  .intro-grid,
  .faq-grid,
  .onsite-grid,
  .seo-week-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .hero-slider {
    min-height: 650px;
  }

  .hero-slide img {
    max-height: 255px;
  }

  .hero-copy {
    padding: 18px;
  }

  .hero-copy .eyebrow {
    font-size: 0.72rem;
  }

  .moving-media img,
  .feature-media img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .moving-media,
  .feature-media {
    min-height: 0;
    background: #050507;
  }
}
