/* ================================================================
   RESET
================================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input { font-family: inherit; }
ul { list-style: none; }

/* ================================================================
   TOKENS
================================================================ */
:root {
  --bg:        #082337;
  --bg-dark:   #061c2e;
  --bg-mid:    #0c2d47;
  --bg-light:  #f3f7fa;
  --white:     #ffffff;

  --cyan:      #55c0db;
  --blue:      #247fbe;
  --blue-h:    #1e6ea8;

  --ink:       #061d35;
  --ink-mid:   #3f5e75;
  --ink-soft:  #526a87;

  --fog:       #8dafc5;
  --mist:      #a8bac9;

  --line-dark: rgba(255,255,255,0.07);
  --line-light: #d5e0ea;

  --hero-img: url("/public/images/hero.png");

  --r: 3px;
  --container: 1440px;
}

/* ================================================================
   BASE
================================================================ */
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ================================================================
   CONTAINER
================================================================ */
.sc {
  width: min(calc(100% - 3rem), var(--container));
  margin-inline: auto;
}

/* ================================================================
   SHARED — BUTTONS
================================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  height: 3rem;
  padding: 0 1.85rem;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r);
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.2s, transform 0.18s;
}
.btn-primary i, .btn-primary svg { width: 1rem; height: 1rem; stroke-width: 2.5; }
.btn-primary:hover { background: var(--blue-h); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  height: 3rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.55); }

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.15rem;
  padding: 0 1.1rem;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
  transition: filter 0.2s, transform 0.18s;
}
.btn-login i, .btn-login svg { width: 0.85rem; height: 0.85rem; stroke-width: 2.5; }
.btn-login:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* ================================================================
   SHARED — SECTION LABELS & HEADERS
================================================================ */
.sec-label {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}
.sec-label--cyan { color: var(--cyan); }

.sec-head { margin-bottom: 3.75rem; text-align: center; }

.sec-head h2 {
  font-size: clamp(2.4rem, 3.8vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.05;
  color: var(--ink);
}
.sec-head h2 span { color: var(--blue); }
.sec-head p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink-soft);
}

.sec-head--light h2 { color: #fff; }
.sec-head--light h2 span { color: var(--cyan); }
.sec-head--light p { color: var(--fog); }

/* ================================================================
   HEADER
================================================================ */
.sh {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
}

/* Utility bar */
.sh__utility {
  height: 34px;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--line-dark);
}
.sh__utility-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sh__contacts {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sh__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--fog);
  transition: color 0.2s;
}
.sh__contact:hover { color: #fff; }
.sh__contact i, .sh__contact svg {
  width: 0.78rem; height: 0.78rem;
  color: var(--cyan); stroke-width: 2.2;
}
.sh__contact em { font-style: normal; color: var(--cyan); font-weight: 700; }
.sh__contact--strong { color: var(--mist); font-weight: 600; }
.sh__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.sh__utility-right { display: flex; align-items: center; gap: 1rem; }
.sh__vline { width: 1px; height: 14px; background: var(--line-dark); }

/* Channels dropdown */
.sh__channels { position: relative; }
.sh__channels-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--fog);
  transition: color 0.2s;
}
.sh__channels-btn:hover { color: #fff; }
.sh__channels-btn > i:first-child,
.sh__channels-btn > svg:first-child {
  width: 0.78rem !important;
  height: 0.78rem !important;
  color: var(--cyan) !important;
  stroke-width: 2.2;
  flex-shrink: 0;
}
.sh__channels-chev,
.sh__channels-chev svg {
  width: 0.72rem !important;
  height: 0.72rem !important;
  color: var(--fog) !important;
  stroke-width: 2.4 !important;
  margin-left: 0.15rem;
  transition: transform 0.22s ease;
}
.sh__channels.is-open .sh__channels-chev {
  transform: rotate(180deg);
}

.sh__channels-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 17rem;
  padding: 0.4rem;
  background: var(--bg);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  box-shadow: 0 1.2rem 2.4rem rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 300;
}
.sh__channels.is-open .sh__channels-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sh__channels-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.75rem;
  border-radius: 2px;
  color: var(--mist);
  transition: background 0.18s, color 0.18s;
}
.sh__channels-menu a:hover {
  background: rgba(255,255,255,0.04);
  color: #fff;
}
.sh__channels-menu a > i,
.sh__channels-menu a > i svg {
  width: 1rem;
  height: 1rem;
  color: var(--cyan);
  stroke-width: 2.2;
  flex-shrink: 0;
}
.sh__channels-menu a > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.sh__channels-menu strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.sh__channels-menu span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--fog);
}

/* Main nav bar */
.sh__main {
  height: 58px;
  border-bottom: 1px solid var(--line-dark);
}
.sh__main-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.sh__logo { flex-shrink: 0; }
.sh__logo img { width: 10.5rem; height: auto; }

.sh__burger {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 0.25rem;
  margin-left: auto;
}
.sh__burger svg { width: 1.35rem; height: 1.35rem; stroke-width: 2; }

.sh__nav { flex: 1; display: flex; align-items: center; justify-content: center; }
.sh__nav ul {
  display: flex;
  align-items: center;
  gap: 2.6rem;
}
.sh__nav a {
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #7fa3ba;
  transition: color 0.2s;
  white-space: nowrap;
}
.sh__nav a:hover { color: #fff; }
.sh__nav-mobile-btn { display: none; }
.sh__nav-mobile-install { display: none; }

.sh__actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.sh__search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 11rem;
  height: 2.15rem;
  padding: 0 0.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r);
}
.sh__search i, .sh__search svg { width: 0.82rem; height: 0.82rem; color: #5a7e96; stroke-width: 2; flex-shrink: 0; }
.sh__search input { width: 100%; background: transparent; border: 0; outline: 0; font-size: 0.73rem; font-weight: 500; color: #fff; }
.sh__search input::placeholder { color: #5a7e96; }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--hero-img);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  filter: saturate(1.06) contrast(1.02);
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg,
      #082337 0%,
      rgba(8,35,55,0.97) 28%,
      rgba(8,35,55,0.82) 48%,
      rgba(8,35,55,0.42) 68%,
      rgba(8,35,55,0.12) 100%
    ),
    linear-gradient(180deg, rgba(8,35,55,0.15) 0%, rgba(8,35,55,0.5) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 5.5rem 0 4.5rem;
}
.hero__text { max-width: 780px; }

.eyebrow {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #9dc3d8;
}

.hero__text h1 {
  margin: 0 0 1.85rem;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: #fff;
  white-space: nowrap;
}
.hero__text h1 em { font-style: italic; color: var(--cyan); font-weight: 300; letter-spacing: -0.06em; }

.hero__desc {
  max-width: 500px;
  margin: 0 0 2.75rem;
  font-size: 1.08rem;
  line-height: 1.6;
  font-weight: 500;
  color: #b0cfe3;
}

.hero__actions { display: flex; align-items: center; gap: 2rem; }

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  animation: bob 2.4s ease infinite;
  transition: border-color 0.2s, color 0.2s;
}
.hero__scroll:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.hero__scroll i, .hero__scroll svg { width: 0.95rem; height: 0.95rem; }

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  55%       { transform: translateX(-50%) translateY(6px); }
}

/* ================================================================
   STATS
================================================================ */
.stats {
  background: var(--bg-dark);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stats__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
}
.stats__item {
  padding: 2.75rem 2rem;
  text-align: center;
}
.stats__item strong {
  display: block;
  font-size: clamp(2.8rem, 4vw, 3.75rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.07em;
  color: #fff;
  margin-bottom: 0.6rem;
}
.stats__item strong sup {
  font-size: 0.48em;
  vertical-align: super;
  line-height: 0;
  color: var(--cyan);
  letter-spacing: 0;
}
.stats__item p {
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--fog);
  max-width: 11rem;
  margin-inline: auto;
}
.stats__sep {
  width: 1px;
  margin: 2rem 0;
  background: var(--line-dark);
}

/* ================================================================
   ABOUT
================================================================ */
.about {
  background: #fff;
  padding: 7.5rem 0 7rem;
}
.about__inner { display: flex; flex-direction: column; gap: 3.5rem; }

.about__label {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about__label::before {
  content: '';
  width: 2.5rem;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.about__label span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}

.about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: start;
}

.about__left { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.about__left h2 {
  font-size: clamp(2.2rem, 3.3vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.04;
  color: var(--ink);
}
.about__left h2 span { color: var(--blue); }
.about__left p {
  font-size: 0.97rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--ink-soft);
}

.about__right { position: relative; padding-top: 0.5rem; }

.about__quote {
  position: relative;
  z-index: 1;
  padding: 2.4rem 2.2rem 2.4rem 2.6rem;
  border-left: 3px solid var(--cyan);
  background: var(--bg-light);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 1.02rem;
  line-height: 1.7;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
}
.about__quote::before {
  content: '\201C';
  position: absolute;
  top: -0.6rem;
  left: 1.2rem;
  font-size: 6rem;
  line-height: 1;
  font-weight: 900;
  font-style: normal;
  color: rgba(36,127,190,0.08);
}

.about__deco {
  position: absolute;
  bottom: -2.5rem;
  right: -1rem;
  font-size: 13rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.07em;
  color: rgba(8,35,55,0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ================================================================
   SERVICES / BENTO
================================================================ */
.services {
  background: var(--bg-light);
  padding: 7.5rem 0 7rem;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 1rem;
}

.bento__card {
  padding: 2.1rem 2rem 2rem;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.22s, border-color 0.2s;
}
.bento__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2.2rem rgba(6,29,53,0.08);
  border-color: rgba(36,127,190,0.28);
}
.bento__card--wide { grid-column: span 2; }

.bento__card--dark {
  background: var(--bg);
  border-color: transparent;
}
.bento__card--dark .bento__icon { background: rgba(85,192,219,0.1); }
.bento__card--dark .bento__icon i, .bento__card--dark .bento__icon svg { color: var(--cyan); }

.bento__card--accent {
  background: var(--bg-dark);
  border-color: transparent;
}
.bento__card--accent .bento__icon { background: rgba(85,192,219,0.1); }
.bento__card--accent .bento__icon i, .bento__card--accent .bento__icon svg { color: var(--cyan); }

.bento__icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--r);
  background: rgba(36,127,190,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bento__icon i, .bento__icon svg {
  width: 1.05rem; height: 1.05rem;
  color: var(--blue); stroke-width: 2.2;
}

.bento__card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
}
.bento__card p {
  font-size: 0.85rem;
  line-height: 1.57;
  font-weight: 400;
  color: var(--ink-soft);
}

.bento__card--dark h3 { color: #ffffff; }
.bento__card--dark p  { color: rgba(255,255,255,0.88); }
.bento__card--accent h3 { color: #ffffff; }
.bento__card--accent p  { color: rgba(255,255,255,0.88); }

.bento__pill {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  height: 1.5rem;
  padding: 0 0.75rem;
  border-radius: 2px;
  background: rgba(36,127,190,0.1);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.bento__pill--cyan {
  background: rgba(85,192,219,0.13);
  color: var(--cyan);
}

/* ================================================================
   MVV
================================================================ */
.mvv {
  background: var(--bg);
  padding: 7.5rem 0 7rem;
  border-top: 1px solid var(--line-dark);
}

.mvv__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  margin-top: 0.5rem;
}
.mvv__sep {
  width: 1px;
  align-self: stretch;
  background: var(--line-dark);
  margin: 0 4rem;
}
.mvv__block { display: flex; flex-direction: column; gap: 1.25rem; }
.mvv__num {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--cyan);
}
.mvv__block h3 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
}
.mvv__block > p {
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--fog);
}
.mvv__list { display: flex; flex-direction: column; gap: 0.65rem; }
.mvv__list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mist);
}
.mvv__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* ================================================================
   HOW IT WORKS
================================================================ */
.how {
  background: #fff;
  padding: 7.5rem 0 7rem;
}
.how__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.how__steps::before {
  content: '';
  position: absolute;
  left: calc(100% / 6);
  right: calc(100% / 6);
  top: 1.4rem;
  height: 1px;
  background: var(--line-light);
  z-index: 0;
}
.how__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
}
.how__num {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.how__step h3 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.how__step p {
  font-size: 0.88rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 18rem;
}

/* ================================================================
   PLANS
================================================================ */
.plans {
  background: var(--bg-light);
  padding: 7.5rem 0 7rem;
}
.plans .sec-head p { color: var(--ink-soft); }

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  max-width: 56rem;
  margin-inline: auto;
  align-items: stretch;
}

.plan {
  position: relative;
  padding: 2.25rem 2rem;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transition: transform 0.2s, box-shadow 0.22s, border-color 0.2s;
}
.plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.2rem 2.5rem rgba(6,29,53,0.07);
  border-color: rgba(36,127,190,0.25);
}

.plan--featured {
  background: var(--bg);
  border-color: rgba(85,192,219,0.28);
  box-shadow: 0 1.5rem 3rem rgba(8,35,55,0.22);
}
.plan--featured:hover { border-color: rgba(85,192,219,0.5); }

.plan__badge {
  position: absolute;
  top: -0.68rem;
  left: 50%;
  transform: translateX(-50%);
  height: 1.4rem;
  padding: 0 0.9rem;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.plan__head { display: flex; flex-direction: column; gap: 0.65rem; }
.plan__head h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.plan--featured .plan__head h3 { color: #fff; }
.plan__head p {
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink-soft);
}
.plan--featured .plan__head p { color: var(--fog); }

.plan__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}
.plan__list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
}
.plan--featured .plan__list li { color: rgba(255,255,255,0.85); }
.plan__list i, .plan__list svg {
  width: 0.82rem; height: 0.82rem;
  color: var(--blue); stroke-width: 2.6; flex-shrink: 0;
}
.plan--featured .plan__list i, .plan--featured .plan__list svg { color: var(--cyan); }

.plan__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 2.75rem;
  border-radius: var(--r);
  font-size: 0.8rem;
  font-weight: 800;
  transition: transform 0.18s, background 0.2s, filter 0.2s;
}
.plan__btn i, .plan__btn svg { width: 0.88rem; height: 0.88rem; stroke-width: 2.5; }

.plan__btn--border {
  border: 1.5px solid var(--blue);
  color: var(--blue);
}
.plan__btn--border:hover { background: rgba(36,127,190,0.07); transform: translateY(-1px); }

.plan__btn--fill {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  border: 1px solid transparent;
}
.plan__btn--fill:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ================================================================
   CTA
================================================================ */
.cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(85,192,219,0.08) 0%, transparent 70%),
    var(--bg);
  padding: 9rem 0 8rem;
  border-top: 1px solid var(--line-dark);
}
.cta__inner { text-align: center; }
.cta__inner .sec-label { margin-bottom: 1rem; }

.cta__inner h2 {
  margin: 0 0 1.75rem;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.07em;
  color: #fff;
}
.cta__inner h2 em {
  font-style: italic;
  color: var(--cyan);
  font-weight: 300;
  letter-spacing: -0.06em;
}

.cta__inner > p {
  max-width: 42rem;
  margin-inline: auto;
  font-size: 1.02rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--mist);
}

.cta__actions {
  margin-top: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fog);
  transition: color 0.2s;
}
.cta__phone:hover { color: #fff; }
.cta__phone i, .cta__phone svg {
  width: 0.95rem; height: 0.95rem;
  color: var(--cyan); stroke-width: 2.2;
}

.cta__tags {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.cta__tags span {
  height: 2rem;
  padding: 0 1.1rem;
  border: 1px solid rgba(85,192,219,0.2);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(85,192,219,0.55);
}

/* ================================================================
   FOOTER
================================================================ */
.ft {
  background: var(--bg-dark);
  border-top: 1px solid var(--line-dark);
}

.ft__main {
  display: grid;
  grid-template-columns: 1.35fr 2fr;
  gap: 5rem;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--line-dark);
}

.ft__brand { display: flex; flex-direction: column; gap: 1.4rem; }
.ft__logo img { width: 9rem; height: auto; }
.ft__brand > p {
  font-size: 0.84rem;
  line-height: 1.75;
  font-weight: 400;
  color: #3f607a;
  max-width: 22rem;
}

.ft__contacts { display: flex; flex-direction: column; gap: 0.6rem; }
.ft__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4e6d83;
  transition: color 0.2s;
}
.ft__contacts a:hover { color: #fff; }
.ft__contacts i, .ft__contacts svg {
  width: 0.82rem; height: 0.82rem;
  color: var(--cyan); stroke-width: 2.2;
}

.ft__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-top: 0.25rem;
}

.ft__col { display: flex; flex-direction: column; gap: 1.1rem; }
.ft__col strong {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.ft__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.ft__col a {
  font-size: 0.82rem;
  font-weight: 400;
  color: #3a5c72;
  transition: color 0.2s;
}
.ft__col a:hover { color: rgba(255,255,255,0.7); }

.ft__bottom { background: var(--bg-dark); }
.ft__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.25rem;
}
.ft__bottom-inner > p {
  font-size: 0.78rem;
  font-weight: 500;
  color: #274057;
}
.ft__admin {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.1);
  transition: color 0.2s;
}
.ft__admin:hover { color: rgba(255,255,255,0.35); }

/* ================================================================
   RESPONSIVE — 1200px
================================================================ */
@media (max-width: 1200px) {
  .sh__utility { display: none; }
  .sh__main { border-bottom: 1px solid var(--line-dark); }

  .about__body { gap: 3.5rem; }
  .about__deco { font-size: 9rem; }

  .mvv__sep { margin: 0 2.5rem; }
}

/* ================================================================
   RESPONSIVE — 960px
================================================================ */
@media (max-width: 960px) {
  .sc { width: min(calc(100% - 2.5rem), var(--container)); }

  /* header */
  .sh__burger { display: flex; }
  .sh__actions { display: none; }
  .sh__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--line-dark);
    padding: 1.5rem 0;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .sh__nav.is-open { display: flex; }
  .sh__nav ul { flex-direction: column; align-items: center; gap: 1.15rem; }
  .sh__nav a { font-size: 0.9rem; }
  .sh__nav-mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    padding: 0 2rem;
    border-radius: var(--r);
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
  }
  .sh__nav-mobile-install {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    height: 2.5rem;
    padding: 0 1.5rem;
    border-radius: var(--r);
    background: transparent;
    border: 1px solid rgba(85, 192, 219, 0.45);
    color: var(--cyan);
    font-family: inherit;
    font-size: 0.84rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.18s;
  }
  .sh__nav-mobile-install:hover {
    background: rgba(85, 192, 219, 0.10);
    border-color: var(--cyan);
    transform: translateY(-1px);
  }
  .sh__nav-mobile-install svg { width: 0.95rem; height: 0.95rem; stroke-width: 2.4; }
  .sh__main { position: relative; }

  /* hero */
  .hero { min-height: 80vh; }
  .hero__text h1 { font-size: clamp(3rem, 9vw, 4.5rem); }

  /* stats */
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__sep { display: none; }
  .stats__item { padding: 2.4rem 1rem; }

  /* about */
  .about__body { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__deco { display: none; }

  /* bento */
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card--wide { grid-column: span 2; }

  /* mvv */
  .mvv__grid { grid-template-columns: 1fr; }
  .mvv__sep { width: 100%; height: 1px; align-self: auto; margin: 2.5rem 0; }

  /* how */
  .how__steps { grid-template-columns: 1fr; gap: 3rem; }
  .how__steps::before { display: none; }
  .how__step { align-items: center; text-align: center; }
  .how__step p { margin-inline: auto; }

  /* hero photo centered */
  .hero__bg { background-position: 70% center; }

  /* plans */
  .plans__grid { grid-template-columns: 1fr; max-width: 28rem; }

  /* footer */
  .ft__main { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0 3rem; }
}

/* ================================================================
   RESPONSIVE — 640px
================================================================ */
@media (max-width: 640px) {
  .sc { width: min(calc(100% - 2rem), var(--container)); }

  .hero__text h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__desc { font-size: 1rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .btn-primary { width: 100%; justify-content: center; }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__sep { display: none; }
  .stats__item { padding: 2rem 0.75rem; }
  .stats__item strong { font-size: 2.4rem; }
  .stats__item p { font-size: 0.74rem; }

  .bento { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: span 1; }

  .hero__bg { background-position: 65% center; }

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

  .cta__inner h2 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .cta__actions { flex-direction: column; gap: 1.25rem; }
  .cta__tags { gap: 0.6rem; }

  .ft__bottom-inner {
    flex-direction: column;
    height: auto;
    padding: 1.25rem 0;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ================================================================
   RESPONSIVE — 420px
================================================================ */
@media (max-width: 420px) {
  .sc { width: min(calc(100% - 1.5rem), var(--container)); }

  .sh__logo img { width: 8.5rem; }

  .hero__text h1 { font-size: 1.7rem; }
  .hero__scroll { display: none; }

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