﻿:root {
  --red: #fd0903;
  --red-deep: #cf0500;
  --gold: #febb11;
  --blue: #0c3f9f;
  --dark: #071018;
  --text: #5b6677;
  --muted: #8f98a5;
  --soft: #fff4f4;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(7, 16, 24, 0.12);
  --shadow-strong: 0 26px 70px rgba(7, 16, 24, 0.18);
  --radius: 24px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(254, 187, 17, 0.08), transparent 22%),
    radial-gradient(circle at bottom right, rgba(253, 9, 3, 0.05), transparent 18%),
    var(--white);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 80%);
  opacity: 0.35;
  mix-blend-mode: soft-light;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.narrow {
  width: min(calc(100% - 32px), 990px);
}

.section-pad {
  padding: 110px 0;
}

.topbar {
  background: linear-gradient(90deg, #020a11, #0a1624 50%, #020a11);
  color: #fff;
  font-size: 14px;
}

.topbar-inner,
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
}

.topbar-inner {
  justify-content: space-between;
  min-height: 46px;
  gap: 20px;
}

.topbar-left {
  gap: 28px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 84px;
}

.brand img {
  width: 175px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.brand:hover img {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 10px 18px rgba(253, 9, 3, 0.18));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.8px;
  transition: color 0.28s ease, transform 0.28s ease;
}

.main-nav a:hover {
  transform: translateY(-2px);
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--blue);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -17px;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: translateX(-50%);
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(253, 9, 3, 0.22);
}

.call-now {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.call-now:hover {
  transform: translateY(-2px);
}

.call-now img {
  width: 30px;
}

.call-now span {
  display: block;
  font-size: 13px;
}

.call-now strong {
  color: var(--red);
  font-size: 18px;
}

.menu-toggle {
  display: none;
  justify-self: end;
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: var(--red);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 25%, rgba(254, 187, 17, 0.22), transparent 18%),
    radial-gradient(circle at 80% 35%, rgba(253, 9, 3, 0.18), transparent 20%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  z-index: 1;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 900ms ease, transform 6500ms ease;
  will-change: transform;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0) 58%);
  mix-blend-mode: screen;
  animation: shimmer 7s linear infinite;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(8px);
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.32);
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 14px;
}

.hero-next {
  right: 14px;
}

.headline-center {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 1px;
  color: #0b1520;
}

.headline-red {
  color: var(--red);
}

.headline-blue {
  color: #1774bb;
  background: #1774bb;
  color: #fff;
  padding: 0 4px;
}

.intro-text {
  margin: 0;
  text-align: center;
  line-height: 2;
  color: #7a8797;
  font-size: 18px;
}

.fast-speed-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 110px, transparent 110px),
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 220px, transparent 220px),
    linear-gradient(102deg, var(--gold) 0 40%, var(--red) 40% 100%);
}

.fast-speed-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 14%, rgba(255, 255, 255, 0.08) 14% 15%, transparent 15% 100%);
}

.fast-speed-band::after {
  content: "";
  position: absolute;
  right: -90px;
  top: 90px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  filter: blur(10px);
}

.fast-speed-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 120px 0;
}

.fast-speed-image,
.about-visual,
.contact-image {
  position: relative;
  overflow: hidden;
}

.fast-speed-image::after,
.about-visual::after,
.contact-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.fast-speed-image:hover::after,
.about-visual:hover::after,
.contact-image:hover::after {
  transform: translateX(120%);
}

.fast-speed-image img,
.about-visual img,
.contact-image img {
  width: 100%;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.fast-speed-image:hover img,
.about-visual:hover img,
.contact-image:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

.fast-speed-image img {
  box-shadow: var(--shadow-strong);
}

.fast-speed-copy {
  color: #fff;
}

.fast-speed-copy h2,
.section-title,
.pricing-heading,
.title-banner h2,
.about-panel h3,
.contact-form-wrap h2,
.plan-top h3,
.why-card h3 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 800;
}

.fast-speed-copy h2 {
  font-size: clamp(38px, 4vw, 56px);
  margin-bottom: 22px;
}

.fast-speed-copy p {
  margin: 0 0 34px;
  line-height: 1.9;
  font-size: 18px;
  max-width: 560px;
}

.feature-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 22px 30px;
  padding: 0;
  margin: 0 0 38px;
  list-style: none;
  font-weight: 700;
}

.feature-bullets li {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.feature-bullets li:hover {
  transform: translateX(6px);
}

.feature-bullets li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: middle;
  margin-right: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-outline-light {
  border: 1px solid #fff;
  color: #fff;
  box-shadow: inset 0 0 0 0 #fff;
}

.button-outline-light:hover {
  background: #fff;
  color: var(--red);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.14);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 1.4px;
}

.section-title {
  color: #0b1520;
  font-size: clamp(40px, 4vw, 58px);
  margin-bottom: 18px;
}

.muted {
  color: #80868e;
  line-height: 1.85;
  font-size: 18px;
}

.italic {
  font-style: italic;
}

.services,
.about,
.why-us,
.pricing,
.contact {
  position: relative;
}

.services::before,
.why-us::before,
.pricing::before,
.contact::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(253, 9, 3, 0.16), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: center;
}

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

.service-card {
  text-align: center;
  padding: 18px 14px;
  border-radius: 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #fff, #fff7f7);
}

.service-card img {
  width: 100%;
  max-width: 142px;
  margin: 0 auto 28px;
  border-radius: 14px;
  background: #fff0f1;
  transition: transform 0.35s ease;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card h3 {
  margin: 0;
  color: #111926;
  font-size: 18px;
  line-height: 1.5;
}

.title-banner {
  position: relative;
  padding: 140px 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 42%, rgba(255, 255, 255, 0.08) 100%), url("image/features-banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.title-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), transparent 60%);
}

.title-banner::before {
  content: "";
  position: absolute;
  right: 10%;
  top: 18%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 187, 17, 0.14), rgba(254, 187, 17, 0));
}

.title-banner .container {
  position: relative;
  z-index: 1;
}

.title-banner h2 {
  font-size: clamp(52px, 6vw, 88px);
  color: #0c1521;
  text-shadow: 0 14px 28px rgba(255, 255, 255, 0.45);
}

.title-banner h2 span {
  color: var(--red);
}

.about-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 56px;
}

.red-title {
  margin: 0;
  color: var(--red);
  font-size: 28px;
}

.about-intro p {
  margin: 0;
  line-height: 1.9;
  font-size: 18px;
  color: #717d8d;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 22px;
  align-items: start;
}

.query-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 74px;
  padding: 0 26px;
  background: linear-gradient(90deg, var(--red), #ff231d);
  color: #fff;
  font-weight: 700;
}

.about-panels {
  display: grid;
  gap: 0;
  border: 1px solid #ececec;
}

.about-panel {
  padding: 24px 24px 20px;
  border-bottom: 1px solid #ececec;
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(253, 9, 3, 0.18);
  position: relative;
  z-index: 1;
}

.about-panel:last-child {
  border-bottom: 0;
}

.panel-icon {
  color: var(--red);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 800;
}

.about-panel h3 {
  font-size: 22px;
  color: #111926;
  margin-bottom: 14px;
}

.about-panel p {
  margin: 0;
  color: #798596;
  line-height: 1.9;
}

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

.why-card {
  padding: 28px 24px 30px;
  border: 1px solid #f0f0f0;
  background: linear-gradient(180deg, #fff, #fffafb);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(253, 9, 3, 0.18);
}

.why-card img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  margin-bottom: 22px;
  background: #fff0f1;
  padding: 12px;
  border-radius: 10px;
  transition: transform 0.35s ease, background 0.35s ease;
}

.why-card:hover img {
  transform: translateZ(18px) scale(1.08);
  background: linear-gradient(180deg, #fff0f1, #ffe6d8);
}

.why-card h3 {
  color: #131c28;
  font-size: 17px;
  margin-bottom: 14px;
}

.why-card p {
  margin: 0;
  color: #98a2b0;
  line-height: 1.9;
}

.pricing-heading {
  text-align: center;
  color: #0b1520;
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: start;
}

.plan-card {
  background: #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.plan-card:hover {
  transform: translateY(-14px);
  box-shadow: var(--shadow-strong);
}

.plan-card.featured {
  transform: translateY(-4px);
}

.plan-card.featured:hover {
  transform: translateY(-18px);
}

.plan-top {
  position: relative;
  padding: 24px 28px 20px;
  text-align: center;
}

.plan-top-gold {
  background: linear-gradient(180deg, #ffcb37, var(--gold));
}

.plan-top-red {
  background: linear-gradient(180deg, #ff2923, var(--red));
  color: #fff;
}

.plan-top h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.plan-top p {
  margin: 0;
  font-size: 14px;
  color: inherit;
}

.ribbon {
  position: absolute;
  top: 12px;
  right: -38px;
  width: 120px;
  text-align: center;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 0;
}

.ribbon-red {
  background: var(--red);
  color: #fff;
}

.ribbon-gold {
  background: var(--gold);
  color: #111;
}

.plan-body {
  padding: 28px;
}

.price-block {
  text-align: center;
  color: #5d6169;
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
}

.price-block span {
  font-size: 22px;
  margin-right: 8px;
  vertical-align: top;
}

.price-block small {
  display: block;
  font-size: 18px;
  font-weight: 400;
}

.plan-body ul {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.plan-body li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid #e8ebef;
  color: #838c99;
  transition: padding-left 0.25s ease, color 0.25s ease;
}

.plan-card:hover .plan-body li {
  color: #67717f;
}

.plan-body li:hover {
  padding-left: 34px;
}

.plan-body li::before {
  position: absolute;
  left: 0;
  top: 14px;
  font-weight: 700;
}

.plan-body li.ok::before {
  content: "o";
  color: #131313;
}

.plan-body li.no::before {
  content: "x";
  color: #131313;
}

.button-solid {
  width: 100%;
  max-width: 170px;
  margin: 0 auto;
  background: linear-gradient(180deg, #ff241d, var(--red));
  color: #fff;
  box-shadow: 0 12px 24px rgba(253, 9, 3, 0.24);
}

.button-solid:hover {
  background: linear-gradient(180deg, #ff2e27, var(--red-deep));
  box-shadow: 0 16px 32px rgba(253, 9, 3, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 18px;
  align-items: stretch;
}

.contact-form-wrap {
  background: linear-gradient(135deg, var(--red), #ff241d 48%, #ee0800);
  color: #fff;
  padding: 42px 46px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before,
.contact-form-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-form-wrap::before {
  width: 220px;
  height: 220px;
  right: -60px;
  top: -60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.contact-form-wrap::after {
  width: 180px;
  height: 180px;
  left: -40px;
  bottom: -60px;
  background: radial-gradient(circle, rgba(254, 187, 17, 0.18), rgba(254, 187, 17, 0));
}

.contact-form-wrap h2 {
  font-size: clamp(34px, 3vw, 52px);
  margin-bottom: 22px;
  color: #111;
  position: relative;
  z-index: 1;
}

.contact-form-wrap form {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.contact-form-wrap input,
.contact-form-wrap textarea {
  width: 100%;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 14px 16px;
  background: transparent;
  color: #fff;
  outline: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.14);
}

.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder {
  color: rgba(255, 255, 255, 0.95);
}

.contact-form-wrap textarea {
  resize: vertical;
  min-height: 126px;
}

.button-form {
  justify-self: center;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  min-width: 102px;
}

.button-form:hover {
  background: #b80404;
}

.form-status {
  min-height: 24px;
  margin: 0;
  text-align: center;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shimmer {
  from {
    transform: translateX(-18%);
  }
  to {
    transform: translateX(18%);
  }
}

@media (max-width: 1100px) {
  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .main-nav a.active::after,
  .main-nav a:hover::after {
    display: none;
  }

  .call-now {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .fast-speed-grid,
  .services-grid,
  .about-intro,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-cards,
  .pricing-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .section-pad {
    padding: 72px 0;
  }

  .topbar-inner {
    min-height: 56px;
    padding: 8px 0;
  }

  .topbar-left,
  .topbar-right {
    width: 100%;
    justify-content: center;
  }

  .topbar-inner {
    flex-direction: column;
    gap: 6px;
  }

  .brand img {
    width: 142px;
  }

  .hero {
    min-height: 380px;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .fast-speed-grid {
    padding: 74px 0;
  }

  .feature-bullets,
  .service-cards,
  .why-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .title-banner {
    padding: 78px 0;
    background-position: center right;
  }

  .query-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
    padding: 18px;
  }

  .contact-form-wrap {
    padding: 32px 18px;
  }

  .plan-body {
    padding: 24px 18px;
  }

  .price-block {
    font-size: 56px;
  }
}

.site-footer {
  border-top: 1px solid #e5e5e5;
  background: #ffffff;
  padding: 26px 0 72px;
}

.site-footer p {
  margin: 0;
  text-align: center;
  color: #24364b;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .site-footer {
    padding: 20px 0 42px;
  }

  .site-footer p {
    font-size: 15px;
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  z-index: 120;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--blue));
  box-shadow: 0 8px 18px rgba(253, 9, 3, 0.28);
  transition: width 0.12s linear;
}

.reveal {
  opacity: 0;
  transform: translateY(48px) scale(0.98);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}

.reveal[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}

.reveal[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}

.reveal[data-reveal-delay="4"] {
  transition-delay: 0.32s;
}

.reveal[data-reveal-delay="5"] {
  transition-delay: 0.4s;
}
