:root {
  --pep-ink: #05070b;
  --pep-ink-soft: #172132;
  --pep-paper: #f7f9ff;
  --pep-muted: #657087;
  --pep-line: #dde5f4;
  --pep-accent: #0b63f6;
  --pep-accent-dark: #0648bd;
  --pep-red: #f3192a;
  --pep-red-dark: #bc101d;
  --pep-signal: #f3192a;
  --pep-steel: #edf3ff;
  --pep-white: #ffffff;
  --pep-shadow: 0 22px 60px rgba(5, 7, 11, 0.14);
  --pep-blue-glow: 0 20px 54px rgba(11, 99, 246, 0.24);
  --pep-red-glow: 0 18px 42px rgba(243, 25, 42, 0.2);
  --pep-radius: 8px;
  --pep-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--pep-paper);
  color: var(--pep-ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--pep-accent-dark);
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  margin: 0 auto;
  max-width: var(--pep-max);
  padding: 0 24px;
  width: 100%;
}

.skip-link,
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link:focus {
  clip: auto;
  background: var(--pep-white);
  border: 2px solid var(--pep-accent);
  height: auto;
  left: 16px;
  padding: 10px 14px;
  top: 16px;
  width: auto;
  z-index: 20;
}

.site-header {
  background: rgba(251, 252, 251, 0.92);
  border-bottom: 1px solid rgba(223, 231, 234, 0.85);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 15;
}

.top-strip {
  background: var(--pep-ink);
  color: var(--pep-white);
  font-size: 13px;
}

.top-strip__inner,
.nav-shell,
.footer-bottom {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.top-strip__inner {
  min-height: 36px;
}

.top-strip a {
  color: #7db0ff;
  font-weight: 700;
}

.nav-shell {
  gap: 24px;
  min-height: 82px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  align-items: center;
  background: linear-gradient(135deg, var(--pep-accent), var(--pep-accent-dark));
  border-radius: var(--pep-radius);
  color: var(--pep-white);
  display: inline-flex;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__text strong {
  font-size: 18px;
}

.brand__text small {
  color: var(--pep-red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav {
  margin-left: auto;
}

.menu,
.footer-menu {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  color: var(--pep-ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.btn {
  align-items: center;
  border-radius: var(--pep-radius);
  display: inline-flex;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn svg {
  height: 18px;
  width: 18px;
}

.header-cta,
.btn--primary {
  background: var(--pep-red);
  color: var(--pep-white);
  box-shadow: var(--pep-red-glow);
}

.header-cta:hover,
.btn--primary:hover {
  background: var(--pep-red-dark);
  color: var(--pep-white);
  transform: translateY(-1px);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--pep-white);
}

.btn--ghost:hover {
  background: var(--pep-white);
  color: var(--pep-ink);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 8px;
  width: 44px;
}

.menu-toggle span:not(.screen-reader-text) {
  background: var(--pep-ink);
  display: block;
  height: 2px;
  margin: 6px auto;
  width: 24px;
}

.hero {
  background:
    linear-gradient(110deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.82)),
    radial-gradient(circle at 82% 20%, rgba(11, 99, 246, 0.42), transparent 30%),
    radial-gradient(circle at 74% 78%, rgba(243, 25, 42, 0.24), transparent 28%),
    linear-gradient(135deg, #05070b 0%, #13254b 100%);
  color: var(--pep-white);
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.hero__content {
  max-width: 760px;
  padding-bottom: 92px;
  padding-top: 118px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--pep-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.split h2,
.booking-grid h2 {
  line-height: 1.02;
  margin: 0;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 78px);
  max-width: 840px;
}

.hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  margin: 24px 0 0;
  max-width: 690px;
}

.hero__actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-row {
  color: rgba(255, 255, 255, 0.88);
  gap: 16px;
}

.trust-row span,
.check-list li {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.trust-row svg,
.check-list svg {
  color: var(--pep-red);
  height: 18px;
  width: 18px;
}

.hero__visual {
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero__device {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  position: absolute;
}

.hero__device--phone {
  background: linear-gradient(160deg, #05070b 0%, #102d66 100%);
  border-radius: 34px;
  height: 420px;
  right: 12%;
  top: 122px;
  transform: rotate(7deg);
  width: 210px;
}

.hero__device--phone span {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  display: block;
  height: 10px;
  margin: 26px auto 0;
  width: 76px;
}

.hero__device--phone span:nth-child(2) {
  background: var(--pep-accent);
  height: 118px;
  margin-top: 74px;
  opacity: 0.9;
  width: 118px;
}

.hero__device--phone span:nth-child(3) {
  background: rgba(243, 25, 42, 0.94);
  height: 42px;
  margin-top: 34px;
  width: 132px;
}

.hero__device--laptop {
  background: #111827;
  border-radius: 16px 16px 6px 6px;
  bottom: 112px;
  height: 245px;
  right: 19%;
  width: 420px;
}

.hero__device--laptop::after {
  background: #b9c6c9;
  border-radius: 0 0 16px 16px;
  bottom: -26px;
  content: "";
  height: 26px;
  left: -44px;
  position: absolute;
  width: 508px;
}

.hero__device--laptop span {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  display: inline-block;
  height: 68px;
  margin: 28px 0 0 28px;
  width: 78px;
}

.hero__device--laptop span:nth-child(2) {
  background: var(--pep-red);
  width: 178px;
}

.hero__device--laptop span:nth-child(3),
.hero__device--laptop span:nth-child(4) {
  height: 16px;
  margin-top: 24px;
  width: 150px;
}

.hero__meter {
  background: var(--pep-white);
  border-radius: var(--pep-radius);
  box-shadow: var(--pep-shadow);
  color: var(--pep-ink);
  padding: 18px 20px;
  position: absolute;
  right: 10%;
  top: 486px;
  width: 160px;
}

.hero__meter strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.hero__meter span {
  color: var(--pep-muted);
  font-size: 13px;
  font-weight: 700;
}

.stats-band {
  background: var(--pep-white);
  border-bottom: 1px solid var(--pep-line);
  border-top: 1px solid var(--pep-line);
}

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

.stats-grid div {
  border-left: 1px solid var(--pep-line);
  padding: 26px 24px;
}

.stats-grid div:last-child {
  border-right: 1px solid var(--pep-line);
}

.stats-grid strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.stats-grid span {
  color: var(--pep-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 92px 0;
}

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

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.split h2,
.booking-grid h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.section-heading p:not(.eyebrow),
.split p,
.booking-grid p {
  color: var(--pep-muted);
  margin: 18px 0 0;
}

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

.service-card,
.quote-card,
.post-card,
.booking-form {
  background: var(--pep-white);
  border: 1px solid var(--pep-line);
  border-radius: var(--pep-radius);
}

.service-card {
  display: grid;
  gap: 18px;
  min-height: 310px;
  padding: 24px;
}

.service-card__icon {
  align-items: center;
  background: var(--pep-steel);
  border-radius: var(--pep-radius);
  color: var(--pep-accent-dark);
  display: inline-flex;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.service-card__icon svg {
  height: 28px;
  width: 28px;
}

.service-card h3,
.process-list h3,
.quote-card h3,
.post-card h2 {
  line-height: 1.15;
  margin: 0;
}

.service-card p,
.process-list p,
.quote-card blockquote,
.post-card p {
  color: var(--pep-muted);
  margin: 12px 0 0;
}

.service-card__price {
  align-self: end;
  color: var(--pep-red);
  font-weight: 800;
  text-transform: uppercase;
}

.section--ink {
  background:
    radial-gradient(circle at 16% 20%, rgba(11, 99, 246, 0.24), transparent 28%),
    linear-gradient(135deg, #05070b 0%, #101a30 100%);
  color: var(--pep-white);
}

.section--ink .eyebrow,
.section--booking .eyebrow {
  color: #ff6873;
}

.section--ink .split p {
  color: rgba(255, 255, 255, 0.74);
}

.split,
.pricing-layout,
.booking-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 0.9fr 1.1fr;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--pep-radius);
  display: grid;
  gap: 18px;
  grid-template-columns: 56px 1fr;
  padding: 20px;
}

.process-list span {
  color: #7db0ff;
  font-weight: 800;
}

.process-list p {
  grid-column: 2;
  margin-top: -10px;
}

.price-table {
  background: var(--pep-white);
  border: 1px solid var(--pep-line);
  border-radius: var(--pep-radius);
  box-shadow: var(--pep-shadow);
  overflow: hidden;
}

.price-table div {
  align-items: center;
  border-bottom: 1px solid var(--pep-line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
}

.price-table div:last-child {
  border-bottom: 0;
}

.price-table span {
  color: var(--pep-ink-soft);
  font-weight: 700;
}

.price-table strong {
  color: var(--pep-red);
  font-size: 22px;
  white-space: nowrap;
}

.testimonials {
  background: var(--pep-steel);
}

.testimonial-grid,
.content-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.quote-card {
  padding: 24px;
}

.stars {
  color: var(--pep-signal);
  display: flex;
  gap: 4px;
}

.stars svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.quote-card blockquote {
  font-size: 18px;
  margin: 18px 0;
}

.section--booking {
  background:
    radial-gradient(circle at 14% 18%, rgba(243, 25, 42, 0.24), transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(11, 99, 246, 0.3), transparent 28%),
    linear-gradient(135deg, #05070b 0%, #13254b 100%);
  color: var(--pep-white);
}

.section--booking p,
.section--booking .check-list {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.booking-form {
  box-shadow: var(--pep-shadow);
  display: grid;
  gap: 16px;
  padding: 26px;
}

.booking-form label {
  color: var(--pep-ink);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 7px;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  background: var(--pep-paper);
  border: 1px solid var(--pep-line);
  border-radius: var(--pep-radius);
  color: var(--pep-ink);
  min-height: 48px;
  padding: 12px 14px;
  text-transform: none;
  width: 100%;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.menu-toggle:focus,
.btn:focus,
.header-cta:focus,
a:focus {
  outline: 3px solid rgba(11, 99, 246, 0.34);
  outline-offset: 3px;
}

.page-hero {
  background: var(--pep-ink);
  color: var(--pep-white);
  padding: 92px 0;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  max-width: 850px;
}

.prose {
  max-width: 780px;
}

.prose a,
.text-link {
  color: var(--pep-accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-card {
  overflow: hidden;
}

.post-card > div {
  padding: 22px;
}

.post-card__image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.featured-image {
  margin-top: 48px;
}

.featured-image img {
  border-radius: var(--pep-radius);
  width: 100%;
}

.pagination {
  grid-column: 1 / -1;
}

.site-footer {
  background: #091014;
  color: rgba(255, 255, 255, 0.74);
  padding: 62px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.brand--footer {
  color: var(--pep-white);
}

.brand--footer .brand__mark {
  background: linear-gradient(135deg, var(--pep-accent), var(--pep-red));
}

.brand--footer .brand__text small,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer h2 {
  color: var(--pep-white);
  font-size: 14px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.footer-menu {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  gap: 14px;
  margin-top: 42px;
  padding-top: 22px;
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .primary-nav {
    background: var(--pep-white);
    border-bottom: 1px solid var(--pep-line);
    box-shadow: var(--pep-shadow);
    display: none;
    left: 0;
    margin: 0;
    padding: 20px 24px;
    position: absolute;
    right: 0;
    top: 118px;
  }

  .primary-nav.is-open {
    display: block;
  }

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

  .menu a {
    display: block;
    font-size: 18px;
    padding: 10px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-bottom: 420px;
    padding-top: 86px;
  }

  .hero__device--phone {
    bottom: 96px;
    height: 310px;
    right: 48px;
    top: auto;
    width: 156px;
  }

  .hero__device--laptop {
    bottom: 74px;
    height: 180px;
    right: 158px;
    width: 310px;
  }

  .hero__device--laptop::after {
    width: 372px;
  }

  .hero__meter {
    bottom: 54px;
    right: 24px;
    top: auto;
  }

  .service-grid,
  .testimonial-grid,
  .content-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .pricing-layout,
  .booking-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 18px;
  }

  .top-strip__inner {
    align-items: flex-start;
    display: grid;
    gap: 4px;
    padding-bottom: 8px;
    padding-top: 8px;
  }

  .nav-shell {
    min-height: 74px;
  }

  .primary-nav {
    top: 126px;
  }

  .brand__text strong {
    font-size: 16px;
  }

  .hero__content {
    padding-bottom: 344px;
    padding-top: 58px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__device--phone {
    bottom: 76px;
    height: 252px;
    right: 24px;
    width: 128px;
  }

  .hero__device--laptop {
    bottom: 56px;
    height: 146px;
    right: 118px;
    width: 242px;
  }

  .hero__device--laptop span {
    height: 42px;
    margin: 20px 0 0 18px;
    width: 48px;
  }

  .hero__device--laptop span:nth-child(2) {
    width: 102px;
  }

  .hero__device--laptop::after {
    left: -26px;
    width: 294px;
  }

  .hero__meter {
    display: none;
  }

  .stats-grid,
  .service-grid,
  .testimonial-grid,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div,
  .stats-grid div:last-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--pep-line);
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    text-align: left;
  }

  .service-card {
    min-height: 0;
  }

  .process-list article {
    grid-template-columns: 42px 1fr;
  }

  .price-table div,
  .footer-bottom {
    align-items: flex-start;
    display: grid;
  }

  .price-table strong {
    white-space: normal;
  }
}
