@import "reset.css";
@import "variables.css";
@import "utilities.css";

/* ── Global overrides ── */
body {
  font-family: var(--font-sans);
  color: var(--color-text-on-dark);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(196,126,126,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 5%, rgba(255,255,255,0.04) 0%, transparent 50%),
    linear-gradient(180deg, #07111f 0%, #091525 28%, #0d1b2e 100%);
  min-height: 100vh;
}

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

a, button, input, select, textarea {
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease,
              box-shadow 0.2s ease, transform 0.2s ease;
}

a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--color-accent-mid);
  outline-offset: 3px;
}

main { overflow: clip; }

/* ── Section rhythm ── */
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-header { max-width: 44rem; }
.section-header--center { text-align: center; margin-inline: auto; }
.section-header--center .section-sub { margin-inline: auto; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.042em;
  color: #fff;
  margin-top: 0.6rem;
  margin-bottom: 0.9rem;
}

.section-sub {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.72;
  color: rgba(232,238,245,0.7);
  max-width: 52ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-mid);
  margin-bottom: 0.8rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  min-height: 3rem;
}

.btn--lg {
  padding: 1rem 1.9rem;
  font-size: 1rem;
  min-height: 3.35rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-mid) 100%);
  color: #08111d;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 12px 34px rgba(196,126,126,0.26);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(196,126,126,0.36);
}

.btn--ghost {
  color: rgba(232,238,245,0.9);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}

.btn--ghost:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.75rem 0 0;
  background: transparent;
  transition: padding 0.3s ease;
}

.site-header__shell {
  width: min(calc(100% - 1rem), 1240px);
  margin-inline: auto;
  border-radius: 1.6rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(16,27,44,0.95), rgba(9,16,29,0.95));
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.22);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s ease;
}

.site-header.scrolled .site-header__shell {
  background: rgba(8,14,26,0.96);
  border-color: rgba(255,255,255,0.11);
  box-shadow: 0 24px 64px rgba(0,0,0,0.32);
  transform: translateY(-0.2rem);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.75rem;
  padding-inline: 1.35rem;
  gap: 1rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__brand-mark {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02)),
    linear-gradient(135deg, rgba(196,126,126,0.3), rgba(196,126,126,0.08));
  border: 1px solid rgba(255,255,255,0.09);
  flex-shrink: 0;
}

.nav__brand-mark-core {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.nav__brand-copy {
  display: flex;
  flex-direction: column;
}

.nav__brand-name {
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.nav__brand-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(232,238,245,0.55);
  margin-top: 0.2rem;
}

.nav__links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex: 1;
  margin-inline: 0.75rem;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(232,238,245,0.78);
  text-decoration: none;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__phone {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(232,238,245,0.75);
  text-decoration: none;
  white-space: nowrap;
}

.nav__phone:hover { color: #fff; }

.nav__cta {
  display: none;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  color: #08111d;
  background: linear-gradient(135deg, var(--color-accent-mid) 0%, var(--color-accent) 100%);
  box-shadow: 0 12px 30px rgba(196,126,126,0.26);
  text-decoration: none;
}

.nav__cta:hover { transform: translateY(-1px); }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.26rem;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 0.9rem;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
}

.nav__toggle-line {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.mobile-menu[hidden] { display: none; }

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,9,18,0.7);
  backdrop-filter: blur(14px);
}

.mobile-menu__panel {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: min(90vw, 26rem);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(16,27,44,0.99), rgba(8,14,26,0.99));
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -20px 0 60px rgba(0,0,0,0.36);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu__close {
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 0.9rem;
  background: rgba(255,255,255,0.04);
  position: relative;
  flex-shrink: 0;
}

.mobile-menu__close span {
  position: absolute;
  top: 50%; left: 50%;
  width: 1rem; height: 2px;
  background: #fff;
  border-radius: 999px;
}

.mobile-menu__close span:first-child { transform: translate(-50%,-50%) rotate(45deg); }
.mobile-menu__close span:last-child  { transform: translate(-50%,-50%) rotate(-45deg); }

.mobile-menu__nav {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 0;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(232,238,245,0.82);
  text-decoration: none;
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.mobile-menu__footer {
  margin-top: auto;
  display: grid;
  gap: 0.7rem;
}

.mobile-menu__phone,
.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.96rem;
}

.mobile-menu__phone {
  color: #fff;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
}

.mobile-menu__cta {
  color: #08111d;
  background: linear-gradient(135deg, var(--color-accent-mid) 0%, var(--color-accent) 100%);
}

/* ── HERO ── */
.hero {
  position: relative;
  padding-top: clamp(8rem, 11vw, 10.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 12% 8%, rgba(196,126,126,0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 14%, rgba(255,255,255,0.04), transparent 50%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8rem;
  background: linear-gradient(180deg, transparent, rgba(3,8,18,0.45));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero__content { max-width: 42rem; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-mid);
  margin-bottom: 1.2rem;
}

/* Hero title — Sites at Scale–inspired two-line treatment */
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
  margin: 0;
}

.hero-title-line {
  display: block;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 0.95;
}

.hero-title-line:first-child {
  color: rgba(232, 238, 245, 0.82);
  margin-bottom: 0.06em;
}

.hero-title-line-secondary {
  line-height: 1;
  color: #fff;
}

.hero__price {
  color: #FACC15;
}

.hero__sub {
  margin-top: 1.4rem;
  max-width: 40rem;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.75;
  color: rgba(232,238,245,0.7);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.9rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.hero__proof-item {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(232,238,245,0.78);
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__showcase {
  position: relative;
  width: min(100%, 36rem);
  aspect-ratio: 1 / 1.05;
}

.hero__showcase-card {
  position: absolute;
  overflow: hidden;
  border-radius: 1.55rem;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(18,29,46,0.94), rgba(9,16,29,0.98));
  box-shadow: 0 28px 68px rgba(0,0,0,0.28);
}

.hero__showcase-card img {
  width: 100%;
  height: calc(100% - 3.2rem);
  object-fit: cover;
}

.hero__showcase-card--back {
  top: 4%;
  right: 0;
  width: 78%;
  height: 63%;
  transform: rotate(4.5deg);
  opacity: 0.72;
  z-index: 1;
}

.hero__showcase-card--front {
  left: 0;
  bottom: 6%;
  width: 84%;
  height: 68%;
  z-index: 2;
}

.hero__browser-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 3.2rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hero__browser-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
}

.hero__browser-url {
  margin-left: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(232,238,245,0.58);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__showcase-note {
  position: absolute;
  right: 0.2rem;
  bottom: -0.5rem;
  width: min(17rem, 72%);
  padding: 1rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(11,20,35,0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.24);
  z-index: 3;
}

.hero__showcase-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-mid);
}

.hero__showcase-text {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(232,238,245,0.8);
}

/* ── MARQUEE ── */
.marquee {
  display: grid;
  gap: 0.85rem;
  padding-block: 1rem;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.025);
}

.marquee__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.marquee__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232,238,245,0.55);
}

.marquee__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232,238,245,0.74);
}

.marquee__status-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--color-accent-mid);
  box-shadow: 0 0 0 0.3rem rgba(91,240,195,0.16);
  flex-shrink: 0;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}

.marquee__track:hover { animation-play-state: paused; }

.marquee__list {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.25rem;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee__item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  padding-inline: 0.35rem;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(245,248,252,0.92);
  white-space: nowrap;
}

.marquee__tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.65rem;
  padding: 0.18rem 0.55rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,238,245,0.62);
  transform: translateY(-0.08rem);
}

@media (max-width: 720px) {
  .marquee__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── SERVICES ── */
.services-home {
  background: linear-gradient(180deg, rgba(6,12,22,0.3), rgba(6,12,22,0));
}

.services-home__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.service-card {
  position: relative;
  border-radius: 1.35rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,30,47,0.94), rgba(9,16,29,0.97));
  padding: 1.5rem;
  display: grid;
  gap: 0.6rem;
  align-content: start;
  transition: transform 0.2s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 20px 52px rgba(0,0,0,0.14);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196,126,126,0.28);
  box-shadow: 0 28px 64px rgba(0,0,0,0.22);
}

.service-card__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-accent-mid);
  margin-bottom: 0.15rem;
}

.service-card__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.service-card__desc {
  font-size: 0.93rem;
  line-height: 1.68;
  color: rgba(232,238,245,0.7);
  margin-top: 0.35rem;
  max-width: none;
}

/* ── PACKAGES ── */
.packages-home {
  background: rgba(255,255,255,0.02);
}

.packages-home__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.4rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,30,47,0.94), rgba(9,16,29,0.97));
  padding: 1.6rem;
  display: grid;
  gap: 0;
  align-content: start;
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
  transition: transform 0.2s ease, border-color 0.25s ease;
}

.package-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196,126,126,0.24);
}

.package-card--featured {
  border-color: rgba(255,183,77,0.52);
  background:
    radial-gradient(circle at top left, rgba(255,183,77,0.18), transparent 38%),
    linear-gradient(180deg, rgba(36,43,58,0.98), rgba(12,18,29,0.99));
  padding-top: 3.15rem;
  padding-right: 1.9rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,183,77,0.16);
}

.package-card__badge {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,183,77,0.16);
  border: 1px solid rgba(255,183,77,0.32);
  color: #ffd38a;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.package-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.package-card__label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.package-card__price-wrap {
  text-align: right;
  flex-shrink: 0;
}

.package-card__price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-accent-mid);
  line-height: 1;
}

.package-card__period {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(232,238,245,0.5);
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}

.package-card__desc {
  font-size: 0.92rem;
  line-height: 1.68;
  color: rgba(232,238,245,0.7);
  margin-bottom: 1rem;
  max-width: none;
}

.package-card__list {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.package-card__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(232,238,245,0.8);
}

.package-card__list li::before {
  content: "";
  position: absolute;
  top: 0.62rem; left: 0;
  width: 0.38rem; height: 0.38rem;
  border-radius: 999px;
  background: var(--color-accent-mid);
}

.package-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent-mid);
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.5rem;
}

.package-card__cta:hover { color: #fff; }

/* ── WHY US ── */
.why-home {
  background: rgba(255,255,255,0.02);
}

.why-home__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.why-card {
  border-radius: 1.35rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,30,47,0.92), rgba(9,16,29,0.96));
  padding: 1.5rem;
  display: grid;
  gap: 0.55rem;
  align-content: start;
  box-shadow: 0 18px 48px rgba(0,0,0,0.14);
  transition: transform 0.2s ease, border-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196,126,126,0.28);
}

.why-card__icon {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-accent-mid);
  margin-bottom: 0.1rem;
}

.why-card__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.why-card__desc {
  font-size: 0.93rem;
  line-height: 1.68;
  color: rgba(232,238,245,0.7);
  margin-top: 0.2rem;
  max-width: none;
}

/* ── PROCESS ── */
.process-home {
  background: linear-gradient(180deg, rgba(6,12,22,0.25), rgba(6,12,22,0));
}

.process-home__layout {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.process-home__steps {
  display: grid;
  gap: 1rem;
}

.process-step {
  border-radius: 1.35rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,30,47,0.92), rgba(9,16,29,0.96));
  padding: 1.5rem;
  display: grid;
  gap: 0.55rem;
  box-shadow: 0 18px 48px rgba(0,0,0,0.14);
}

.process-step__number {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-accent-mid);
}

.process-step__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 800;
  color: #fff;
}

.process-step__text {
  font-size: 0.93rem;
  line-height: 1.68;
  color: rgba(232,238,245,0.7);
  margin-top: 0.2rem;
  max-width: none;
}

.process-home__preview {
  position: relative;
}

.process-home__preview-card {
  overflow: hidden;
  border-radius: 1.55rem;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(18,29,46,0.94), rgba(9,16,29,0.98));
  box-shadow: 0 28px 64px rgba(0,0,0,0.24);
  height: 100%;
}

.process-home__preview-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 3.2rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.process-home__preview-url {
  margin-left: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(232,238,245,0.58);
}

.process-home__preview-body {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}

.process-home__preview-line {
  display: block;
  height: 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.process-home__preview-line--heading { width: 70%; height: 1.25rem; }
.process-home__preview-line--sub     { width: 100%; }
.process-home__preview-line--sub.short { width: 76%; }
.process-home__preview-line--cta {
  width: 38%; height: 2.4rem;
  margin-top: 0.5rem;
  background: rgba(196,126,126,0.36);
  border-radius: 999px;
}

.process-home__preview-tag {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  padding: 0.65rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(11,20,35,0.92);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-home__preview-tag-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,238,245,0.55);
}

.process-home__preview-tag-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--color-accent-mid);
  line-height: 1.1;
}

/* ── PORTFOLIO ── */
.portfolio-home {
  background: rgba(255,255,255,0.02);
}

.portfolio-home__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.portfolio-card {
  overflow: hidden;
  border-radius: 1.45rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,30,47,0.94), rgba(9,16,29,0.97));
  box-shadow: 0 20px 52px rgba(0,0,0,0.16);
  transition: transform 0.2s ease, border-color 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196,126,126,0.28);
}

.portfolio-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.portfolio-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-card__media img {
  transform: scale(1.04);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 50%, rgba(4,9,18,0.75));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-card__overlay { opacity: 1; }

.portfolio-card__overlay-url {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(232,238,245,0.85);
}

.portfolio-card__body {
  padding: 1.25rem 1.35rem;
}

.portfolio-card__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.portfolio-card__meta {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: rgba(232,238,245,0.65);
  line-height: 1.55;
  max-width: none;
}

.portfolio-home__footer {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}

/* ── SEO SECTION ── */
.seo-home {
  background: linear-gradient(180deg, rgba(6,12,22,0.25), rgba(6,12,22,0));
}

.seo-home__grid {
  display: grid;
  gap: 1.5rem;
}

.seo-home__content { max-width: 46rem; }

.seo-home__points {
  display: grid;
  gap: 0.85rem;
}

.seo-point {
  display: flex;
  align-items: center;
  min-height: 5rem;
  padding-inline: 1.4rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,30,47,0.92), rgba(9,16,29,0.96));
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 18px 48px rgba(0,0,0,0.14);
}

/* ── CTA STRIP ── */
.cta-home {
  background: rgba(255,255,255,0.02);
}

.cta-home__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: 1.85rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,30,47,0.94), rgba(9,16,29,0.97));
  box-shadow: 0 26px 60px rgba(0,0,0,0.18);
}

.cta-home__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: #fff;
  max-width: 14ch;
}

.cta-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ── QUOTE FORM ── */
.quote-home {
  background: rgba(255,255,255,0.02);
}

.quote-home__inner {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.quote-home__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.quote-home__trust-item {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(232,238,245,0.78);
}

.quote-home__form {
  border-radius: 1.65rem;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(18,29,46,0.94), rgba(9,16,29,0.98));
  padding: 1.6rem;
  box-shadow: 0 26px 60px rgba(0,0,0,0.18);
}

.quote-home__row {
  display: grid;
  gap: 1rem;
}

.quote-home__field + .quote-home__field,
.quote-home__row + .quote-home__row,
.quote-home__row + .quote-home__field,
.quote-home__field + .quote-home__footer {
  margin-top: 1rem;
}

.quote-home__field label {
  display: block;
  margin-bottom: 0.42rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(232,238,245,0.86);
}

.quote-home__required {
  color: var(--color-accent-mid);
  font-weight: 700;
}

.quote-home__field input,
.quote-home__field select,
.quote-home__field textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.quote-home__field input:focus,
.quote-home__field select:focus,
.quote-home__field textarea:focus {
  outline: none;
  border-color: rgba(196,126,126,0.5);
  box-shadow: 0 0 0 3px rgba(196,126,126,0.1);
}

.quote-home__field textarea {
  min-height: 9rem;
  resize: vertical;
}

.quote-home__field input::placeholder,
.quote-home__field textarea::placeholder {
  color: rgba(232,238,245,0.4);
}

.quote-home__field select {
  color: rgba(232,238,245,0.6);
  appearance: none;
}

.quote-home__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.quote-home__note {
  font-size: 0.88rem;
  color: rgba(232,238,245,0.55);
  max-width: none;
}

/* ── FOOTER ── */
.site-footer {
  padding-bottom: 2rem;
}

.site-footer__cta {
  padding-block: 1rem 0.5rem;
}

.site-footer__cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: 1.85rem;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(180deg, rgba(19,30,47,0.94), rgba(9,16,29,0.97));
  box-shadow: 0 26px 60px rgba(0,0,0,0.18);
}

.site-footer__cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: #fff;
  max-width: 14ch;
}

.site-footer__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer__main {
  padding-block: 1.75rem 2rem;
  background: rgba(255,255,255,0.018);
}

.site-footer__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.nav__brand--footer { width: fit-content; }

.site-footer__brand {
  display: grid;
  gap: 0.85rem;
}

.site-footer__brand-text {
  font-size: 0.92rem;
  line-height: 1.68;
  color: rgba(232,238,245,0.65);
  max-width: 30rem;
  max-width: none;
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.site-footer__badges img {
  width: 3.75rem;
  height: 3.75rem;
  object-fit: contain;
  padding: 0.35rem;
  border-radius: 0.9rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
}

.site-footer__column {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.site-footer__column-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-mid);
  margin-bottom: 0.2rem;
}

.site-footer__column a,
.site-footer__column span:not(.site-footer__column-title) {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(232,238,245,0.65);
  text-decoration: none;
}

.site-footer__column a:hover { color: #fff; }

.site-footer__bottom {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.018);
}

.site-footer__bottom-inner {
  display: grid;
  gap: 0.7rem;
  align-items: center;
}

.site-footer__copy {
  font-size: 0.88rem;
  color: rgba(232,238,245,0.38);
  max-width: none;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__legal a {
  font-size: 0.88rem;
  color: rgba(232,238,245,0.4);
  text-decoration: none;
}

.site-footer__legal a:hover { color: rgba(232,238,245,0.8); }

/* ── HERO TITLE ENTRANCE ── */
@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title-line {
  animation: hero-title-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title-line-secondary {
  animation-delay: 0.15s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-line {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ── FADE-UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (min-width: 600px) {
  .nav__cta { display: inline-flex; }
  .site-header { padding-top: 0.8rem; }
}

@media (min-width: 768px) {
  .nav__phone { display: inline-flex; }
  .hero__grid,
  .seo-home__grid,
  .quote-home__inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .packages-home__grid,
  .portfolio-home__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quote-home__row {
    grid-template-columns: 1fr 1fr;
  }

  .cta-home__inner,
  .site-footer__cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .process-home__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(17rem, 0.95fr);
    align-items: stretch;
  }

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

  .site-footer__bottom-inner {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }

  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    gap: 4rem;
  }

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

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

  .seo-home__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 4rem;
  }

  .quote-home__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: 4rem;
  }

  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 767.98px) {
  .site-header { padding-top: 0.6rem; }

  .site-header__shell {
    width: calc(100% - 0.75rem);
    border-radius: 1.25rem;
  }

  .nav {
    min-height: 4.5rem;
    padding-inline: 0.95rem;
  }

  .nav__brand-name { font-size: 0.85rem; }
  .nav__brand-sub  { font-size: 0.6rem; }
  .hero { padding-top: 7.75rem; }
  .hero-title-line {
    line-height: 1.04;
    letter-spacing: -0.03em;
  }
  .hero-title-line-secondary { line-height: 1.06; }

  .hero__showcase {
    aspect-ratio: 1 / 1.1;
  }

  .hero__showcase-card--back {
    width: 80%;
    height: 58%;
    top: 3%;
  }

  .hero__showcase-card--front {
    width: 88%;
    height: 64%;
  }
}

@media (max-width: 479.98px) {
  .hero__actions,
  .cta-home__actions,
  .site-footer__cta-actions,
  .quote-home__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn,
  .cta-home__actions .btn,
  .site-footer__cta-actions .btn,
  .quote-home__footer .btn {
    width: 100%;
    justify-content: center;
  }

}

/* ══════════════════════════════════════════
   SUBPAGE — SHARED COMPONENTS
══════════════════════════════════════════ */

/* ── Page Hero ── */
.page-hero {
  position: relative;
  padding-top: clamp(8rem, 11vw, 10.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 10% 8%, rgba(196,126,126,0.1), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 12%, rgba(255,255,255,0.03), transparent 50%);
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.page-hero__content { max-width: 46rem; }

.page-hero__content--center {
  text-align: center;
  margin-inline: auto;
}

.page-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.048em;
  color: #fff;
  margin-top: 0.7rem;
  margin-bottom: 1rem;
}

.page-hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.72;
  color: rgba(232,238,245,0.7);
  max-width: 52ch;
  margin-bottom: 1.6rem;
}

.page-hero__content--center .page-hero__sub { margin-inline: auto; }

.page-hero__img-wrap {
  overflow: hidden;
  border-radius: 1.55rem;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 28px 64px rgba(0,0,0,0.24);
}

.page-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Page CTA (subpage pre-footer CTA) ── */
.page-cta { background: rgba(255,255,255,0.02); }

.page-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: 1.85rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,30,47,0.94), rgba(9,16,29,0.97));
  box-shadow: 0 26px 60px rgba(0,0,0,0.18);
}

.page-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #fff;
  margin-top: 0.4rem;
  max-width: 20ch;
}

.page-cta__sub {
  font-size: 0.97rem;
  line-height: 1.65;
  color: rgba(232,238,245,0.65);
  margin-top: 0.5rem;
  max-width: none;
}

.page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ── Footer location addresses ── */
.site-footer__location {
  display: grid;
  gap: 0.1rem;
  font-style: normal;
  margin-top: 0.9rem;
}

.site-footer__location:first-of-type { margin-top: 0; }

.site-footer__location strong {
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(232,238,245,0.82);
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */

.about-who { background: rgba(255,255,255,0.02); }

.about-who__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-who__content { max-width: 46rem; }

.about-who__list {
  display: grid;
  gap: 0.55rem;
  margin: 1.25rem 0 1.6rem;
}

.about-who__list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.97rem;
  line-height: 1.6;
  color: rgba(232,238,245,0.82);
}

.about-who__list li::before {
  content: "";
  position: absolute;
  top: 0.6rem; left: 0;
  width: 0.42rem; height: 0.42rem;
  border-radius: 999px;
  background: var(--color-accent-mid);
}

.about-values { background: linear-gradient(180deg, rgba(6,12,22,0.28), rgba(6,12,22,0)); }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.value-card {
  border-radius: 1.35rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,30,47,0.92), rgba(9,16,29,0.96));
  padding: 1.5rem;
  display: grid;
  gap: 0.5rem;
  align-content: start;
  box-shadow: 0 18px 48px rgba(0,0,0,0.14);
  transition: transform 0.2s ease, border-color 0.25s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196,126,126,0.28);
}

.value-card__num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-accent-mid);
}

.value-card__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.value-card__desc {
  font-size: 0.93rem;
  line-height: 1.68;
  color: rgba(232,238,245,0.7);
  margin-top: 0.2rem;
  max-width: none;
}

.about-approach {
  background: linear-gradient(180deg, rgba(196,126,126,0.06) 0%, rgba(196,126,126,0.02) 60%, transparent 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-approach__content { max-width: 54rem; }

.about-approach__list {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0;
  column-count: 1;
}

.about-approach__list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.97rem;
  line-height: 1.6;
  color: rgba(232,238,245,0.85);
}

.about-approach__list li::before {
  content: "";
  position: absolute;
  top: 0.6rem; left: 0;
  width: 0.42rem; height: 0.42rem;
  border-radius: 999px;
  background: var(--color-accent-mid);
}

.about-credentials { background: rgba(255,255,255,0.02); }

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.credential-card {
  border-radius: 1.45rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,30,47,0.94), rgba(9,16,29,0.97));
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 52px rgba(0,0,0,0.14);
}

.credential-card img {
  margin-inline: auto;
  margin-bottom: 1.1rem;
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

.credential-card__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.credential-card__desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(232,238,245,0.68);
  max-width: none;
}

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */

.services-full { background: rgba(255,255,255,0.02); }

.services-full__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.service-full-card {
  border-radius: 1.45rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,30,47,0.94), rgba(9,16,29,0.97));
  padding: 1.6rem;
  display: grid;
  gap: 0;
  align-content: start;
  box-shadow: 0 20px 52px rgba(0,0,0,0.14);
  transition: transform 0.2s ease, border-color 0.25s ease;
}

.service-full-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196,126,126,0.28);
}

.service-full-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: rgba(196,126,126,0.1);
  border: 1px solid rgba(196,126,126,0.15);
  color: var(--color-accent-mid);
  margin-bottom: 1rem;
}

.service-full-card__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
}

.service-full-card__desc {
  font-size: 0.93rem;
  line-height: 1.68;
  color: rgba(232,238,245,0.7);
  margin-bottom: 1.1rem;
  max-width: none;
}

.service-full-card__features {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.service-full-card__features li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(232,238,245,0.78);
}

.service-full-card__features li::before {
  content: "";
  position: absolute;
  top: 0.56rem; left: 0;
  width: 0.36rem; height: 0.36rem;
  border-radius: 999px;
  background: var(--color-accent-mid);
}

.service-full-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent-mid);
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.3rem;
}

.service-full-card__cta:hover { color: #fff; }

.services-process {
  background: linear-gradient(180deg, rgba(6,12,22,0.25), rgba(6,12,22,0));
}

.services-process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.services-process__step {
  border-radius: 1.35rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,30,47,0.92), rgba(9,16,29,0.96));
  padding: 1.5rem;
  display: grid;
  gap: 0.5rem;
  align-content: start;
  box-shadow: 0 18px 48px rgba(0,0,0,0.14);
}

.services-process__num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-accent-mid);
}

.services-process__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 800;
  color: #fff;
}

.services-process__desc {
  font-size: 0.93rem;
  line-height: 1.68;
  color: rgba(232,238,245,0.7);
  max-width: none;
}

/* ══════════════════════════════════════════
   PROJECTS PAGE
══════════════════════════════════════════ */

.projects-full { background: rgba(255,255,255,0.02); }

.projects-full__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.project-card {
  overflow: hidden;
  border-radius: 1.45rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,30,47,0.94), rgba(9,16,29,0.97));
  box-shadow: 0 20px 52px rgba(0,0,0,0.16);
  transition: transform 0.2s ease, border-color 0.25s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196,126,126,0.28);
}

.project-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-card__media img { transform: scale(1.04); }

.project-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(4,9,18,0.6) 0%, transparent 50%);
}

.project-card__cat {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(196,126,126,0.18);
  border: 1px solid rgba(196,126,126,0.22);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-mid);
}

.project-card__body { padding: 1.25rem 1.35rem; }

.project-card__title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}

.project-card__desc {
  font-size: 0.88rem;
  line-height: 1.58;
  color: rgba(232,238,245,0.65);
  max-width: none;
}

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */

.contact-section { background: rgba(255,255,255,0.02); }

.contact-section__inner {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.contact-form-wrap__heading {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 0.4rem;
}

.contact-form-wrap__sub {
  font-size: 0.95rem;
  color: rgba(232,238,245,0.65);
  line-height: 1.6;
  margin-bottom: 1.6rem;
  max-width: none;
}

.cform {
  display: grid;
  gap: 1rem;
}

.cform__row {
  display: grid;
  gap: 1rem;
}

.cform__field label,
.cform__label {
  display: block;
  margin-bottom: 0.42rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(232,238,245,0.86);
}

.cform__field input,
.cform__field select,
.cform__field textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.cform__field input:focus,
.cform__field select:focus,
.cform__field textarea:focus {
  outline: none;
  border-color: rgba(196,126,126,0.5);
  box-shadow: 0 0 0 3px rgba(196,126,126,0.1);
}

.cform__field textarea {
  min-height: 9rem;
  resize: vertical;
}

.cform__field input::placeholder,
.cform__field textarea::placeholder {
  color: rgba(232,238,245,0.4);
}

.cform__field select {
  color: rgba(232,238,245,0.6);
  appearance: none;
}

.contact-sidebar {
  display: grid;
  gap: 1.25rem;
}

.contact-sidebar__block {
  border-radius: 1.45rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,30,47,0.94), rgba(9,16,29,0.97));
  padding: 1.5rem;
  box-shadow: 0 20px 48px rgba(0,0,0,0.14);
}

.contact-sidebar__heading {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-sidebar__list {
  display: grid;
  gap: 0.65rem;
}

.contact-sidebar__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(232,238,245,0.82);
}

.contact-sidebar__list li svg {
  flex-shrink: 0;
  color: var(--color-accent-mid);
}

.contact-office {
  margin-top: 1rem;
  display: grid;
  gap: 0.15rem;
}

.contact-office:first-of-type { margin-top: 0; }

.contact-office__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(232,238,245,0.9);
}

.contact-office__address {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(232,238,245,0.62);
  font-style: normal;
}

.contact-office__phone {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-accent-mid);
  text-decoration: none;
}

.contact-office__phone:hover { color: #fff; }

.service-areas { background: rgba(255,255,255,0.02); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-top: 2rem;
  list-style: none;
}

.areas-grid li {
  display: flex;
  align-items: center;
  min-height: 3.5rem;
  padding-inline: 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(19,30,47,0.9), rgba(9,16,29,0.94));
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(232,238,245,0.78);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* ══════════════════════════════════════════
   SUBPAGE RESPONSIVE
══════════════════════════════════════════ */

@media (min-width: 768px) {
  .page-hero__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-who__grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

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

  .contact-section__inner {
    grid-template-columns: 1fr 22rem;
  }

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

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

  .page-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .about-approach__list {
    column-count: 2;
    column-gap: 2rem;
  }

  .contact-section__inner {
    grid-template-columns: 1fr 26rem;
    gap: 3.5rem;
  }
}

@media (max-width: 479.98px) {
  .page-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ------------------------------------------------
   VIDEO TESTIMONIALS
------------------------------------------------ */
.video-testimonials {
  padding-block: var(--section-py);
}

.video-testimonials .section-header {
  max-width: 860px;
  margin-inline: auto;
}

.video-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.video-testimonials__card {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: calc(var(--radius-2xl) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(34, 211, 238, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(9, 14, 26, 0.98));
  box-shadow: var(--shadow-lg);
}

.video-testimonials__media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.4), rgba(10, 15, 26, 0.88));
}

.video-testimonials__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 14, 26, 0.08), rgba(9, 14, 26, 0.18) 42%, rgba(9, 14, 26, 0.82));
  pointer-events: none;
}

.video-testimonials__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-testimonials__overlay {
  position: absolute;
  inset: auto var(--space-4) var(--space-4);
  display: grid;
  gap: var(--space-2);
  z-index: 1;
}

.video-testimonials__chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: var(--radius-full);
  background: rgba(34, 211, 238, 0.16);
  border: 1px solid rgba(34, 211, 238, 0.22);
  color: #baf6ff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-testimonials__business {
  display: block;
  max-width: 14ch;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--color-text-on-dark);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.video-testimonials__body {
  display: grid;
  gap: var(--space-2);
}

.video-testimonials__quote {
  font-size: var(--text-base);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 700px) {
  .video-testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .video-testimonials__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
