:root {
  --white: #ffffff;
  --azure: #268098;
  --cyan: #1bb7b9;
  --gold: #d2a257;
  --black: #030507;
  --ink: #071014;
  --muted: #a9b6bb;
  --glass: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 8%, rgba(27, 183, 185, 0.24), transparent 34rem),
    radial-gradient(circle at 92% 18%, rgba(210, 162, 87, 0.16), transparent 28rem),
    linear-gradient(130deg, #020405 0%, #071116 48%, #010202 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 85%);
}

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

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

.page-glow {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
  animation: floatGlow 10s ease-in-out infinite alternate;
}

.page-glow-one {
  top: 9rem;
  left: -13rem;
  background: var(--cyan);
}

.page-glow-two {
  right: -12rem;
  bottom: 10rem;
  background: var(--gold);
  animation-delay: -4s;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  margin-top: 18px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(4, 8, 10, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
}

.brand,
.header-cta,
.btn {
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.05rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--azure) 55%, var(--gold));
  color: var(--black);
  box-shadow: 0 0 28px rgba(27, 183, 185, 0.55);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.88rem;
}

.nav-links a {
  transition: color 220ms ease, text-shadow 220ms ease;
}

.nav-links a:hover {
  color: var(--white);
  text-shadow: 0 0 18px rgba(27, 183, 185, 0.75);
}

.header-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(27, 183, 185, 0.12);
  border: 1px solid rgba(27, 183, 185, 0.42);
  box-shadow: inset 0 0 20px rgba(27, 183, 185, 0.08);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
  transition: transform 220ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  padding: 105px 0;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 135px max(18px, calc((100vw - 1180px) / 2)) 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 54px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(27, 183, 185, 0.14), transparent 44%),
    radial-gradient(circle at 70% 50%, rgba(38, 128, 152, 0.28), transparent 25rem);
}

.hero-orbit {
  position: absolute;
  top: 52%;
  right: 8vw;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(27, 183, 185, 0.08);
  animation: spinSlow 22s linear infinite;
}

.hero-orbit span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 26px var(--cyan);
}

.hero-orbit span:nth-child(1) {
  top: 9%;
  left: 48%;
}

.hero-orbit span:nth-child(2) {
  right: 10%;
  top: 55%;
  background: var(--gold);
  box-shadow: 0 0 26px var(--gold);
}

.hero-orbit span:nth-child(3) {
  left: 17%;
  bottom: 18%;
}

.eyebrow,
.section-kicker,
.plan-label {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.9;
  text-shadow: 0 0 36px rgba(27, 183, 185, 0.28);
}

h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.68);
  text-shadow: none;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.12;
}

.hero-statement {
  margin: 26px 0 0;
  color: var(--gold);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
}

.hero-copy,
.section-heading p,
.rich-copy,
.mission-card p,
.service-card p,
.price-card p,
.testimonial-card p,
.contact-content p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  max-width: 690px;
  margin: 16px 0 0;
  font-size: 1.04rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--white), var(--cyan));
  box-shadow: 0 0 34px rgba(27, 183, 185, 0.36);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  border-color: rgba(210, 162, 87, 0.62);
  box-shadow: 0 0 28px rgba(210, 162, 87, 0.18);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 16px;
}

.signal-card {
  min-height: 132px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.signal-card:nth-child(2) {
  transform: translateX(-46px);
}

.signal-card span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.signal-card strong {
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 3.2rem;
  line-height: 0.8;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.rich-copy {
  font-size: 1.04rem;
}

.mission {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.mission-card,
.why-panel,
.contact,
.video-stage {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mission-card {
  padding: clamp(26px, 4vw, 44px);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.mission-card::after,
.service-card::after,
.price-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.7;
}

.mission-card.vision::after {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.showcase {
  width: 100%;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
}

.video-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.video-stage::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 183, 185, 0.48), transparent 67%);
  filter: blur(28px);
  animation: pulseGlow 3.8s ease-in-out infinite;
}

.video-slider {
  position: relative;
  width: min(940px, 100%);
  height: 560px;
}

.video-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  aspect-ratio: 9 / 16;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 760ms ease,
    filter 760ms ease;
}

.video-card.is-active {
  z-index: 5;
  opacity: 1;
  filter: none;
}

.video-card.is-left,
.video-card.is-right {
  z-index: 3;
  opacity: 0.54;
  filter: blur(3px);
}

.video-card.is-far-left,
.video-card.is-far-right {
  z-index: 1;
  opacity: 0.22;
  filter: blur(6px);
}

.video-shell {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.52);
}

.is-active .video-shell {
  box-shadow:
    0 0 62px rgba(27, 183, 185, 0.38),
    0 34px 90px rgba(0, 0, 0, 0.58);
}

.video-shell video,
.poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-shell video {
  z-index: 1;
}

.poster {
  z-index: 2;
  background-size: 180% 180%;
  animation: posterMove 7s ease-in-out infinite alternate;
  transition: opacity 500ms ease;
}

.poster-one {
  background-image: radial-gradient(circle at 20% 18%, #ffffff, transparent 14%), linear-gradient(135deg, #031014, #1bb7b9 44%, #d2a257);
}

.poster-two {
  background-image: radial-gradient(circle at 78% 22%, #ffffff, transparent 16%), linear-gradient(135deg, #030507, #268098 48%, #1bb7b9);
}

.poster-three {
  background-image: radial-gradient(circle at 45% 28%, #ffffff, transparent 15%), linear-gradient(135deg, #d2a257, #071014 46%, #1bb7b9);
}

.poster-four {
  background-image: radial-gradient(circle at 66% 18%, #ffffff, transparent 14%), linear-gradient(135deg, #1bb7b9, #030507 52%, #d2a257);
}

.poster-five {
  background-image: radial-gradient(circle at 22% 70%, #ffffff, transparent 15%), linear-gradient(135deg, #268098, #030507 42%, #d2a257);
}

.video-shell.has-video .poster {
  opacity: 0;
  pointer-events: none;
}

.video-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.video-label span,
.video-label strong {
  display: block;
}

.video-label span {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.video-label strong {
  margin-top: 4px;
  font-size: 0.98rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 8;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.slider-btn:hover {
  transform: translateY(-50%) scale(1.08);
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(27, 183, 185, 0.34);
}

.prev {
  left: clamp(14px, 4vw, 42px);
  transform: translateY(-50%);
}

.next {
  right: clamp(14px, 4vw, 42px);
  transform: translateY(-50%);
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.price-card,
.testimonial-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.032));
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.service-card:hover,
.price-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(27, 183, 185, 0.56);
  box-shadow: 0 0 48px rgba(27, 183, 185, 0.16), var(--shadow);
}

.service-card span {
  display: block;
  margin-bottom: 56px;
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 2.3rem;
}

.why {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.why-panel {
  padding: clamp(28px, 4vw, 46px);
}

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

.why-list div {
  min-height: 78px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.why-list span {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.team-grid {
  display: flex;
  gap: 18px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.team-row {
  display: inline-flex;
  gap: 18px;
  flex: 0 0 auto;
  min-width: max-content;
  animation: teamScroll 40s linear infinite;
  will-change: transform;
}

.team-grid:hover .team-row {
  animation-play-state: paused;
}

.team-card,
.testimonial-card {
  flex: 0 0 210px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.team-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.team-card div {
  padding: 14px;
}

.team-card h3 {
  font-size: 1rem;
}

.team-card span,
.testimonial-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

@keyframes teamScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin: 0 auto;
}

.price-card {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 248, 0.92)),
    rgba(7, 16, 20, 0.8);
  color: var(--black);
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.price-card.featured::before {
  content: "";
  position: absolute;
  inset: auto -70px 80px auto;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(38, 128, 152, 0.14);
  transform: rotate(35deg);
  background: repeating-linear-gradient(90deg, rgba(38, 128, 152, 0.08) 0 1px, transparent 1px 34px);
}

.price-card.featured {
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(7, 16, 20, 0.96), rgba(17, 47, 54, 0.92)),
    linear-gradient(140deg, rgba(27, 183, 185, 0.18), transparent 42%);
  border-color: rgba(27, 183, 185, 0.45);
  transform: translateY(-16px);
}

.price-card.outline {
  border: 2px solid rgba(27, 183, 185, 0.64);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(236, 249, 250, 0.9));
}

.price-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.price-card p {
  min-height: 88px;
  color: #66747a;
}

.price-card.featured p {
  color: #d7e2e6;
}

.price-card ul {
  position: relative;
  z-index: 1;
  min-height: 190px;
  margin: 18px 0 auto;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
  font-weight: 500;
}

.price-card li::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--black);
  background: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
}

.price-bottom {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  align-items: baseline;
}

.price-bottom strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
}

.price-bottom span {
  color: #6a7478;
  font-size: 0.75rem;
}

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

.testimonial-card {
  min-height: 230px;
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.02rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 24px;
  color: var(--gold);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  padding: clamp(28px, 5vw, 58px);
  margin-bottom: 80px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
  font: inherit;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(27, 183, 185, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 34px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.site-footer span {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 800ms ease;
}

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

@keyframes spinSlow {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes floatGlow {
  to {
    transform: translate3d(40px, -28px, 0) scale(1.08);
  }
}

@keyframes pulseGlow {
  50% {
    transform: scale(1.18);
    opacity: 0.72;
  }
}

@keyframes posterMove {
  to {
    background-position: 80% 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 8px;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 4;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    transition: max-height 260ms ease, padding-top 260ms ease;
  }

  .nav-links.is-open {
    max-height: 180px;
    padding-top: 10px;
  }

  .nav-links a {
    min-height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .split,
  .mission,
  .why,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

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

  .signal-card {
    min-height: 118px;
  }

  .signal-card:nth-child(2) {
    transform: none;
  }

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

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

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

  .plans {
    padding-block: 56px;
  }

  .price-card.featured {
    grid-column: auto;
  }

  .video-stage {
    min-height: 560px;
  }

  .video-slider {
    height: 500px;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .header-cta {
    display: none;
  }

  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
    padding: 10px;
  }

  .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand {
    font-size: 0.98rem;
  }

  .hero-panel,
  .services-grid,
  .pricing-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .plans {
    width: min(100% - 24px, 1180px);
    padding: 42px 12px;
  }

  .plans .section-heading {
    text-align: left;
    padding-inline: 4px;
  }

  .price-card,
  .price-card.featured {
    grid-column: auto;
    min-height: auto;
  }

  .plan-copy {
    min-height: auto;
    margin-bottom: 26px;
  }

  .team-card {
    min-height: 420px;
  }

  .team-card img {
    height: 330px;
  }

  .signal-card {
    min-height: 92px;
  }

  .video-stage {
    min-height: 520px;
  }

  .video-slider {
    height: 460px;
  }

  .video-card {
    width: 210px;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
  }

  .site-footer {
    display: block;
  }
}
