@font-face {
  font-family: "BR Segma";
  src: url("assets/fonts/BRSegma-Regular-BF654d990a3279a.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "BR Segma";
  src: url("assets/fonts/BRSegma-Bold-BF654d9909ed277.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Hemenix";
  src: url("assets/fonts/Hemenix-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Hemenix";
  src: url("assets/fonts/Hemenix-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue: #303b82;
  --blue-dark: #273374;
  --yellow: #f8b72f;
  --yellow-soft: #ffc342;
  --light: #f3f3f3;
  --white: #ffffff;
  --text: #2f397f;
  --muted: #54556b;
  --art: url("assets/images/LandingPage_Saynet_page-0001.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "BR Segma", Arial, sans-serif;
}

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

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 136px;
  padding: 0 clamp(38px, 9vw, 125px);
  background: var(--white);
}

.logo {
  position: relative;
  display: inline-block;
  min-width: 170px;
  color: var(--blue);
  font-size: 30px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.logo-image {
  display: none;
  max-width: 310px;
  max-height: 108px;
  height: auto;
}

.logo.has-custom-image .logo-image {
  display: block;
}

.logo.has-custom-image .logo-text,
.logo.has-custom-image .logo-arrow,
.logo.has-custom-image small {
  display: none;
}

.logo-say {
  color: var(--yellow);
}

.logo-net {
  color: var(--blue);
}

.logo-arrow {
  display: inline-block;
  width: 23px;
  height: 16px;
  margin-left: 4px;
  background: currentColor;
  clip-path: polygon(0 28%, 60% 28%, 60% 0, 100% 50%, 60% 100%, 60% 72%, 0 72%);
}

.logo small {
  display: block;
  margin-top: 7px;
  color: var(--blue);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-align: center;
  text-transform: uppercase;
}

.nav,
.footer-nav {
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a,
.footer-nav a {
  transition: color 160ms ease;
}

.nav a:hover,
.footer-nav a:hover {
  color: var(--yellow);
}

.nav a[aria-current="page"] {
  color: var(--yellow);
}

.section-yellow {
  background: var(--yellow);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 725px;
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(44px, 8vw, 130px);
}

.hero h1 {
  margin: 0 0 58px;
  color: var(--blue);
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 700;
  line-height: 1.05;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 152px;
  min-height: 42px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 160ms ease, filter 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.btn-blue {
  color: var(--white);
  background: var(--blue);
}

.btn-yellow {
  color: var(--white);
  background: var(--yellow);
}

.hero-art {
  position: relative;
  min-height: 725px;
  background-image: url("assets/images/hero-art-complete-reference.jpg");
  background-repeat: no-repeat;
  background-color: var(--yellow);
  background-position: center 52%;
  background-size: 92% auto;
}

.hero-art .hero-word,
.hero-art .light,
.hero-art .girl-cutout,
.hero-art .wifi-card {
  display: none;
}

.hero-word {
  position: absolute;
  top: 185px;
  left: 6%;
  z-index: 1;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(98px, 13vw, 210px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: 0;
}

.girl-cutout {
  position: absolute;
  top: 58px;
  left: 17%;
  z-index: 3;
  width: 43%;
  height: 605px;
  background-image: var(--art);
  background-repeat: no-repeat;
  background-size: 4000px 11468px;
  background-position: 57% 3.8%;
  filter: drop-shadow(0 18px 18px rgba(83, 66, 36, 0.18));
}

.light {
  position: absolute;
  z-index: 2;
  left: 7%;
  width: 62%;
  height: 26px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.92), rgba(248,120,200,0.6), rgba(255,255,255,0));
  border-radius: 999px;
  filter: blur(4px);
}

.light-one {
  top: 265px;
}

.light-two {
  top: 340px;
}

.wifi-card {
  position: absolute;
  right: 20%;
  bottom: 182px;
  z-index: 4;
  display: grid;
  width: 112px;
  height: 110px;
  place-items: center;
  background: var(--blue);
}

.wifi-card span {
  position: absolute;
  left: 50%;
  border: 4px solid transparent;
  border-top-color: var(--yellow);
  border-radius: 50%;
  transform: translateX(-50%);
}

.wifi-card span:nth-child(1) {
  top: 31px;
  width: 62px;
  height: 62px;
}

.wifi-card span:nth-child(2) {
  top: 45px;
  width: 38px;
  height: 38px;
}

.wifi-card span:nth-child(3) {
  top: 65px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border: 0;
}

.slider-dots {
  display: none;
  position: absolute;
  bottom: 55px;
  left: 50%;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dots span {
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

.about {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
  min-height: 685px;
  background: var(--light);
}

.about-illustration {
  width: min(94%, 940px);
  height: 585px;
  margin-left: clamp(18px, 4.4vw, 72px);
  background-image: url("assets/images/about-art-complete-reference.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.about-copy {
  max-width: 420px;
  text-align: center;
}

.about h2,
.plans h2,
.clients h2 {
  margin: 0;
  font-size: clamp(40px, 4.6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
}

.about p {
  margin: 56px auto 54px;
  max-width: 355px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.15;
}

.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  min-height: 360px;
  padding: 0 clamp(34px, 9vw, 150px);
  background: var(--white);
}

.feature {
  display: grid;
  justify-items: center;
  gap: 0;
}

.feature-complete {
  display: block;
  width: min(100%, 160px);
  height: 220px;
  object-fit: contain;
}

.feature-complete-wide {
  width: min(100%, 166px);
}

.feature-complete-shield {
  width: min(100%, 158px);
}

.icon-globe + strong,
.feature-complete[src*="globe"] {
  width: min(100%, 166px);
}

.feature .feature-icon,
.feature strong {
  display: none;
}

.feature strong {
  color: var(--blue);
  font-size: clamp(36px, 4.3vw, 62px);
  font-weight: 700;
  line-height: 1;
}

.feature-icon {
  position: relative;
  width: 96px;
  height: 84px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.feature-icon::before,
.feature-icon::after {
  display: none;
}

.icon-web {
  background-image: url("assets/images/service-icon-web.png");
}

.icon-cloud-box {
  background-image: url("assets/images/service-icon-cloud.png");
}

.icon-upload {
  background-image: url("assets/images/service-icon-upload.png");
}

.icon-globe {
  background-image: url("assets/images/service-icon-globe.png");
}

.icon-shield {
  background-image: url("assets/images/service-icon-shield.png");
}

.icon-web::before {
  inset: 7px 10px 18px;
  border: 4px solid var(--blue);
  border-top-color: var(--yellow);
}

.icon-web::after {
  right: 1px;
  bottom: 2px;
  width: 28px;
  height: 28px;
  border-right: 4px solid var(--blue);
  border-bottom: 4px solid var(--blue);
  transform: rotate(35deg);
}

.icon-cloud-box::before {
  left: 18px;
  top: 22px;
  width: 44px;
  height: 30px;
  border: 4px solid var(--yellow);
}

.icon-cloud-box::after {
  left: 12px;
  top: 7px;
  width: 34px;
  height: 20px;
  border: 4px solid var(--blue);
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
}

.icon-upload::before {
  left: 10px;
  top: 25px;
  width: 66px;
  height: 30px;
  border: 4px solid var(--yellow);
  border-radius: 50px;
}

.icon-upload::after {
  left: 41px;
  top: 19px;
  width: 18px;
  height: 18px;
  border-top: 4px solid var(--blue);
  border-left: 4px solid var(--blue);
  transform: rotate(45deg);
}

.icon-globe::before {
  inset: 2px 14px;
  border: 4px solid var(--blue);
  border-radius: 50%;
}

.icon-globe::after {
  left: 24px;
  top: 12px;
  width: 38px;
  height: 46px;
  border-left: 3px solid var(--yellow);
  border-right: 3px solid var(--yellow);
  border-radius: 50%;
}

.icon-shield::before {
  left: 22px;
  top: 0;
  width: 44px;
  height: 58px;
  border: 4px solid var(--yellow);
  clip-path: polygon(50% 0, 100% 16%, 88% 75%, 50% 100%, 12% 75%, 0 16%);
}

.icon-shield::after {
  left: 38px;
  top: 22px;
  width: 19px;
  height: 10px;
  border-left: 4px solid var(--blue);
  border-bottom: 4px solid var(--blue);
  transform: rotate(-45deg);
}

.plans {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(520px, 1.25fr);
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
  min-height: 720px;
  padding: 88px clamp(42px, 7vw, 118px);
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.plans::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: var(--plans-bg, var(--art));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  opacity: 0.45;
}

.plans::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(39, 51, 116, 0.78), rgba(39, 51, 116, 0.92)),
    radial-gradient(circle at 82% 18%, rgba(248, 183, 47, 0.22), transparent 34%);
  pointer-events: none;
}

.plans-image,
.plan-cards,
.plans-copy {
  position: relative;
  z-index: 1;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(145px, 1fr));
  gap: 18px;
  align-items: stretch;
  justify-self: stretch;
  padding-left: 0;
  transform: none;
}

.speed-card {
  display: grid;
  min-height: 350px;
  align-content: start;
  justify-items: start;
  width: 100%;
  padding: 22px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(19, 27, 72, 0.22);
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.speed-card-featured {
  border-top: 6px solid var(--yellow);
}

.speed-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 70px rgba(19, 27, 72, 0.32);
  border-color: rgba(248, 183, 47, 0.78);
}

.speed-card::before {
  display: none;
  height: 124px;
  content: "";
  background: var(--yellow);
}

.speed-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.speed-icon::before,
.speed-icon::after {
  display: none;
}

.speed-card strong {
  display: block;
  color: var(--blue);
  font-family: "Hemenix", "BR Segma", Arial, sans-serif;
  font-size: clamp(52px, 5vw, 74px);
  font-weight: 700;
  line-height: 0.86;
}

.speed-card h3 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.05;
}

.speed-card span {
  display: block;
  margin: 8px 0 14px;
  color: var(--blue);
  font-family: "Hemenix", "BR Segma", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.speed-card p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.speed-card .plan-price,
.detail-price {
  color: var(--yellow);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.speed-card a {
  align-self: end;
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.rocket {
  background-image: url("assets/icons/plan-rocket-clean.svg");
}

.wifi {
  background-image: url("assets/icons/plan-wifi-clean.svg");
}

.router {
  background-image: url("assets/icons/plan-router-clean.svg");
}

.rocket::before {
  left: 48px;
  top: 25px;
  width: 34px;
  height: 58px;
  border: 5px solid var(--blue);
  border-radius: 50% 50% 12px 12px;
  transform: rotate(45deg);
}

.rocket::after {
  left: 45px;
  top: 74px;
  width: 43px;
  height: 30px;
  border-left: 5px solid var(--blue);
  border-bottom: 5px solid var(--blue);
  transform: rotate(-45deg);
}

.wifi::before {
  left: 34px;
  top: 36px;
  width: 66px;
  height: 66px;
  border: 6px solid transparent;
  border-top-color: var(--blue);
  border-radius: 50%;
}

.wifi::after {
  left: 61px;
  top: 73px;
  width: 13px;
  height: 13px;
  background: var(--blue);
  border-radius: 50%;
}

.router::before {
  left: 31px;
  top: 55px;
  width: 70px;
  height: 32px;
  border: 5px solid var(--blue);
}

.router::after {
  left: 40px;
  top: 28px;
  width: 55px;
  height: 38px;
  border-left: 4px solid var(--blue);
  border-right: 4px solid var(--blue);
}

.plans-copy {
  max-width: 520px;
  justify-self: start;
  padding-right: 0;
  transform: none;
}

.plans-kicker {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.plans-copy h2 {
  margin-bottom: 34px;
  color: var(--white);
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 1.02;
}

.plans-copy p {
  max-width: 500px;
  margin: 0 0 42px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.35;
}

.plans-copy .btn {
  min-width: 202px;
  min-height: 48px;
  padding: 0 38px;
  font-size: 14px;
}

.clients {
  min-height: 735px;
  padding: 140px 32px 72px;
  text-align: center;
}

.clients h2 {
  color: var(--white);
  font-size: clamp(40px, 4.7vw, 72px);
}

.clients p {
  max-width: 725px;
  margin: 54px auto 100px;
  color: var(--blue);
  font-size: 15px;
  line-height: 1.2;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1040px;
  margin: 0 auto;
  color: var(--white);
}

.client-logos span {
  position: relative;
  display: inline-grid;
  min-height: 40px;
  place-items: center;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: 0;
}

.client-logos img {
  display: none;
  max-width: 174px;
  max-height: 50px;
}

.client-logos .has-custom-image img {
  display: block;
}

.client-logos .has-custom-image b {
  display: none;
}

.client-carousel,
.client-gallery {
  display: grid;
  grid-template-columns: 46px minmax(0, 1080px) 46px;
  gap: 24px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.client-window {
  overflow: hidden;
}

.client-track {
  display: grid;
  grid-auto-columns: minmax(230px, 1fr);
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.client-track::-webkit-scrollbar {
  display: none;
}

.client-card {
  display: grid;
  min-height: 150px;
  padding: 24px;
  place-items: center;
  color: var(--white);
  background: rgba(48, 59, 130, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  scroll-snap-align: center;
}

.client-card img {
  display: block;
  max-width: 178px;
  max-height: 56px;
  margin-bottom: 16px;
  object-fit: contain;
}

.clients .client-card img {
  width: 100%;
  max-width: none;
  height: 132px;
  max-height: none;
  object-fit: cover;
  border-radius: 8px;
}

.client-card strong {
  color: var(--white);
  font-size: 18px;
  text-align: center;
}

.client-card span {
  margin-top: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.carousel-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid rgba(48, 59, 130, 0.72);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.carousel-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.carousel-button::before {
  width: 11px;
  height: 11px;
  content: "";
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
}

.carousel-prev::before {
  transform: rotate(45deg);
}

.carousel-next::before {
  transform: rotate(-135deg);
}

.down-link {
  display: grid;
  width: 43px;
  height: 43px;
  margin: 115px auto 0;
  place-items: center;
  border: 3px solid rgba(48, 59, 130, 0.68);
  border-radius: 50%;
}

.down-link::before {
  width: 10px;
  height: 10px;
  content: "";
  border-right: 3px solid rgba(48, 59, 130, 0.68);
  border-bottom: 3px solid rgba(48, 59, 130, 0.68);
  transform: translateY(-2px) rotate(45deg);
}

.footer {
  display: grid;
  gap: 38px;
  min-height: 240px;
  padding: 58px clamp(38px, 9vw, 125px) 34px;
  color: var(--white);
  background: var(--blue-dark);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(250px, 1.3fr) minmax(170px, 0.72fr) minmax(210px, 0.95fr) minmax(180px, 0.78fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  width: 100%;
}

.logo-footer,
.logo-footer small,
.logo-footer .logo-say,
.logo-footer .logo-net {
  color: var(--white);
}

.logo-footer .logo-image {
  max-width: 245px;
  max-height: 88px;
}

.footer-brand {
  align-self: start;
  min-width: 0;
}

.footer-column {
  display: grid;
  gap: 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-column h3 {
  margin: 0 0 5px;
  color: var(--yellow);
  font-size: 14px;
  line-height: 1.15;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.92);
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover {
  color: var(--yellow);
  transform: translateX(2px);
}

.footer-contact a,
.footer-contact span {
  color: var(--yellow);
}

.footer-nav {
  gap: 90px;
}

.footer-nav div {
  display: grid;
  gap: 24px;
}

.footer p {
  margin: 0;
  color: var(--yellow);
  font-size: 12px;
  line-height: 1.25;
  text-align: left;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: 560px;
  padding: 90px clamp(38px, 9vw, 125px);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 0 30px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.03;
}

.page-hero p {
  max-width: 650px;
  margin: 0 0 38px;
  font-size: 18px;
  line-height: 1.35;
}

.page-hero-blue {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(39, 51, 116, 0.94), rgba(48, 59, 130, 0.82)),
    url("assets/images/plans-background-complete-reference.jpg") center / cover no-repeat;
}

.page-hero-light {
  grid-template-columns: 56% 44%;
  gap: 46px;
  background: var(--light);
}

.page-hero-light h1 {
  color: var(--blue);
}

.page-hero-light p {
  color: var(--muted);
}

.page-illustration {
  width: 100%;
  margin-left: 0;
}

.content-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  padding: 96px clamp(38px, 9vw, 125px);
  background: var(--white);
}

.content-band article {
  padding: 38px;
  border-left: 6px solid var(--yellow);
  background: var(--light);
}

.content-band h2,
.metric-explainer h2 {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.05;
}

.content-band p,
.metric-explainer p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
}

.plan-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 96px clamp(38px, 9vw, 125px);
  background: var(--white);
}

.plan-detail-card {
  display: grid;
  align-content: start;
  min-height: 500px;
  padding: 36px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(48, 59, 130, 0.15);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(31, 38, 92, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.plan-detail-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 70px rgba(31, 38, 92, 0.2);
}

.featured-plan {
  border-top: 8px solid var(--yellow);
}

.plan-detail-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.plan-detail-card h2 {
  margin: 24px 0 0;
  color: var(--blue);
  font-size: 26px;
  line-height: 1.05;
}

.plan-detail-card strong {
  margin-top: 34px;
  font-family: "Hemenix", "BR Segma", Arial, sans-serif;
  font-size: clamp(64px, 6vw, 92px);
  line-height: 0.85;
}

.plan-detail-card > span {
  margin: 6px 0 24px;
  font-family: "Hemenix", "BR Segma", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.plan-detail-card .detail-price {
  margin: 0 0 22px;
  font-size: 26px;
}

.plan-detail-card p,
.plan-detail-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.32;
}

.plan-detail-card ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 30px;
  padding-left: 19px;
}

.plan-detail-card .btn {
  margin-top: auto;
}

.metric-explainer {
  padding: 100px clamp(38px, 9vw, 125px);
  text-align: center;
}

.metric-explainer > p {
  max-width: 780px;
  margin: 0 auto 58px;
  color: var(--blue);
}

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

.metric-grid article {
  display: grid;
  justify-items: center;
  min-height: 190px;
  padding: 24px 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid rgba(48, 59, 130, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(48, 59, 130, 0.08);
}

.metric-grid img {
  width: 76px;
  height: 76px;
  padding: 10px;
  object-fit: contain;
  background: rgba(48, 59, 130, 0.07);
  border-radius: 50%;
}

.metric-grid strong {
  margin-top: 18px;
  color: var(--blue);
  font-size: 38px;
  line-height: 1;
}

.metric-grid span {
  margin-top: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.client-gallery {
  padding: 98px clamp(30px, 7vw, 110px);
  background: var(--yellow);
}

.client-card-photo {
  min-height: 260px;
  background: rgba(48, 59, 130, 0.24);
}

.client-card-photo img {
  width: 100%;
  max-width: 260px;
  height: 155px;
  padding: 0;
  object-fit: cover;
  background: var(--blue);
  border-radius: 8px;
}

.client-gallery-white {
  max-width: none;
  margin: 0;
  padding: 92px clamp(32px, 7vw, 118px);
  background: var(--white);
}

.client-gallery-white .client-window {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 8px 0 18px;
}

.client-gallery-white .client-track {
  grid-auto-columns: minmax(250px, 1fr);
}

.client-gallery-white .client-card {
  min-height: 360px;
  align-content: start;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(48, 59, 130, 0.14);
  box-shadow: 0 22px 54px rgba(31, 38, 92, 0.12);
}

.client-gallery-white .client-card img {
  width: 100%;
  max-width: none;
  height: 205px;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 8px;
}

.client-gallery-white .client-card strong {
  color: var(--blue);
}

.client-gallery-white .client-card span {
  color: var(--muted);
}

.client-gallery-white .carousel-button {
  align-self: center;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(31, 38, 92, 0.13);
}

.client-gallery-white .carousel-button:hover {
  background: rgba(48, 59, 130, 0.08);
}

.contact-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: 58px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  color: var(--blue);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(19, 27, 72, 0.26);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--blue);
  border: 1px solid rgba(48, 59, 130, 0.24);
  border-radius: 6px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 72px clamp(38px, 9vw, 125px);
  background: var(--yellow);
}

.contact-options a {
  display: grid;
  min-height: 88px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.quality-page {
  min-height: 980px;
  padding: 92px clamp(28px, 8vw, 140px) 120px;
  color: #20222d;
  background: #f5f5f2;
}

.quality-content {
  max-width: 1120px;
  margin: 0 auto;
}

.quality-content h1 {
  margin: 0 0 62px;
  color: #20222d;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.quality-content > p {
  margin: 0 0 58px;
  color: #2f3140;
  font-size: 16px;
  line-height: 1.5;
}

.quality-notes {
  display: grid;
  gap: 44px;
  max-width: 980px;
  margin-bottom: 80px;
}

.quality-notes article {
  position: relative;
  padding-left: 28px;
}

.quality-notes article::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #20222d;
  border-radius: 50%;
}

.quality-notes h2 {
  margin: 0 0 36px;
  color: #20222d;
  font-size: 16px;
  font-weight: 700;
}

.quality-notes p {
  margin: 0;
  color: #2f3140;
  font-size: 15px;
  line-height: 1.5;
}

.quality-table-wrap {
  max-width: 950px;
  margin: 0 auto;
  overflow-x: auto;
}

.quality-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #20222d;
  background: #eeeeea;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.quality-table th,
.quality-table td {
  padding: 9px 10px;
  border: 2px solid #333333;
  vertical-align: middle;
}

.quality-table thead tr:first-child th {
  padding: 4px 10px;
  color: #20222d;
  background: #d6d821;
  font-size: 13px;
  text-transform: uppercase;
}

.quality-table thead tr:nth-child(2) th {
  background: #d8d8d3;
  font-size: 12px;
}

.quality-table td:first-child {
  width: 34%;
}

.quality-table td:nth-child(2) {
  width: 18%;
}

.quality-table td:nth-child(3) {
  width: 12%;
}

.quality-table td:nth-child(4) {
  width: 36%;
  line-height: 1.25;
}

.edit-toggle,
.editor-panel,
.image-edit-button {
  position: fixed;
  z-index: 30;
  font-family: "BR Segma", Arial, sans-serif;
}

.edit-toggle {
  display: none;
  right: 18px;
  bottom: 18px;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 30px rgba(30, 35, 78, 0.22);
  cursor: pointer;
}

.has-editor .edit-toggle {
  display: inline-flex;
}

.editor-panel {
  right: 18px;
  bottom: 68px;
  display: none;
  width: min(320px, calc(100vw - 36px));
  padding: 18px;
  color: var(--blue);
  background: var(--white);
  border: 2px solid var(--yellow);
  box-shadow: 0 18px 44px rgba(30, 35, 78, 0.18);
}

.is-editing .editor-panel {
  display: block;
}

.editor-panel p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editor-actions button {
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  cursor: pointer;
}

.editor-actions button:nth-child(3) {
  background: var(--yellow);
}

.editor-panel textarea {
  width: 100%;
  min-height: 92px;
  margin-top: 12px;
  padding: 8px;
  color: var(--blue);
  border: 1px solid rgba(48, 59, 130, 0.28);
  resize: vertical;
}

.is-editing [contenteditable="true"] {
  outline: 2px dashed rgba(48, 59, 130, 0.34);
  outline-offset: 5px;
  cursor: text;
}

.image-edit-button {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  min-height: 32px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(30, 35, 78, 0.2);
  cursor: pointer;
}

.is-editing .image-edit-button {
  display: inline-flex;
}

.image-edit-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 980px) {
  .header {
    height: auto;
    flex-direction: column;
    gap: 20px;
    padding: 28px 20px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .about,
  .plans {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 58px 28px 0;
  }

  .hero-art {
    min-height: 520px;
    background-size: 86% auto;
    background-position: center 52%;
  }

  .girl-cutout {
    left: 34%;
    width: 48%;
    transform: scale(0.82);
    transform-origin: top left;
  }

  .about {
    padding: 60px 0;
  }

  .about-illustration {
    height: 390px;
    margin: 0 auto 34px;
  }

  .about-copy,
  .plans-copy {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 54px;
    padding: 70px 24px;
  }

  .feature:last-child {
    grid-column: 1 / -1;
  }

  .plans {
    gap: 50px;
    padding: 70px 0;
  }

  .plans::after {
    display: none;
  }

  .plan-cards {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    justify-content: center;
    padding: 0 24px;
    transform: none;
  }

  .plans-copy {
    padding: 0 24px;
    transform: none;
  }

  .clients {
    min-height: auto;
  }

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

  .footer {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 50px 28px;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin: 0 auto 12px;
  }

  .footer p {
    justify-self: center;
    text-align: center;
  }

  .footer-bottom {
    justify-content: center;
  }

  .logo-footer {
    margin: 0 auto;
  }

  .page-hero,
  .page-hero-light,
  .contact-hero {
    grid-template-columns: 1fr;
    padding: 72px 28px;
  }

  .page-illustration {
    height: 380px;
  }

  .content-band,
  .plan-detail-grid,
  .metric-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .content-band,
  .plan-detail-grid,
  .metric-explainer,
  .contact-options {
    padding: 70px 28px;
  }

  .client-carousel,
  .client-gallery {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 12px;
  }

  .client-gallery-white {
    padding: 70px 24px;
  }

  .metric-grid article {
    min-height: 170px;
  }
}

@media (max-width: 560px) {
  .logo {
    min-width: auto;
    font-size: 25px;
  }

  .nav {
    gap: 18px;
    font-size: 11px;
  }

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

  .hero-art {
    min-height: 380px;
    background-size: 96% auto;
  }

  .hero-word {
    top: 115px;
    left: 8%;
    font-size: 88px;
  }

  .girl-cutout {
    top: 35px;
    left: 28%;
    width: 70%;
    transform: scale(0.55);
  }

  .wifi-card {
    right: 15%;
    bottom: 115px;
    transform: scale(0.72);
  }

  .about h2,
  .plans h2,
  .clients h2 {
    font-size: 38px;
  }

  .about-illustration {
    width: 95%;
    height: 280px;
    background-size: contain;
  }

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

  .plan-cards {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .client-logos {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    gap: 42px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    justify-items: center;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .client-carousel,
  .client-gallery {
    grid-template-columns: 1fr;
  }

  .carousel-button {
    display: none;
  }

  .client-track {
    grid-auto-columns: 84%;
  }

  .client-gallery-white .client-track {
    grid-auto-columns: 88%;
  }

  .client-gallery-white .client-card {
    min-height: 330px;
  }

  .plan-detail-card {
    padding: 28px;
  }
}
