:root {
  --navy: #07182f;
  --blue: #0479d9;
  --blue-2: #0aa4ff;
  --lime: #c8ff3d;
  --ink: #111827;
  --muted: #667085;
  --line: #e7edf4;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --shadow: 0 24px 70px rgba(7, 24, 47, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 14px 28px;
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(231,237,244,.86);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; color: var(--navy); white-space: nowrap; letter-spacing: -.01em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(7,24,47,.12);
  border-radius: 14px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 12px 28px rgba(7,24,47,.08);
}
.brand-mark svg {
  width: 30px;
  height: 30px;
  overflow: visible;
}
.brand-mark path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.logo-base {
  stroke: var(--blue);
  stroke-width: 4;
}
.logo-mast,
.logo-roof {
  stroke: var(--navy);
  stroke-width: 4.2;
}
.logo-wave {
  stroke: var(--blue);
  stroke-width: 3.7;
}
.main-nav { display: flex; align-items: center; justify-content: center; gap: 20px; flex: 1; font-size: 14px; font-weight: 650; color: #334155; }
.main-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.languages { display: inline-flex; padding: 4px; gap: 2px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.languages button { border: 0; border-radius: 999px; background: transparent; padding: 7px 9px; font-size: 12px; font-weight: 800; color: #667085; cursor: pointer; }
.languages button.active, .languages button:hover { background: var(--navy); color: #fff; }
.phone-link { font-weight: 800; color: var(--navy); white-space: nowrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 0 18px; background: var(--lime); color: var(--navy); }
.btn-primary { background: var(--lime); color: var(--navy); box-shadow: 0 16px 34px rgba(158, 214, 37, .35); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-ghost {
  border-color: rgba(255,255,255,.9);
  color: var(--navy);
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 34px rgba(7,24,47,.14);
}
.btn-ghost:hover {
  background: #fff;
  box-shadow: 0 18px 42px rgba(7,24,47,.2);
}
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 84px 0 76px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(30,195,255,.72) 0, transparent 30%),
    linear-gradient(160deg, #065fbd 0%, #0aa6ff 43%, #8edfff 78%, #f5f8fc 100%);
}
.hero-bg::before, .hero-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 230px;
  background: linear-gradient(180deg, rgba(245,248,252,0) 0%, rgba(245,248,252,.58) 48%, #f5f8fc 100%);
  filter: none;
  border-radius: 0;
  pointer-events: none;
}
.hero-bg::after {
  height: 360px;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,.9) 0%, rgba(245,248,252,.45) 46%, rgba(245,248,252,0) 72%);
  opacity: .72;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 52px; }
.eyebrow { display: inline-flex; margin-bottom: 14px; color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
.eyebrow.light { color: var(--lime); }
.hero .eyebrow { color: var(--lime); }
.starlink-eyebrow {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy) !important;
  background: var(--lime);
}
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 22px; font-size: clamp(42px, 6vw, 82px); line-height: .94; letter-spacing: 0; }
h2 { margin-bottom: 16px; color: var(--navy); font-size: clamp(31px, 4vw, 54px); line-height: 1; letter-spacing: 0; }
h3 { margin-bottom: 10px; color: var(--navy); font-size: 19px; line-height: 1.2; }
p { color: var(--muted); line-height: 1.7; }
.hero-copy p { max-width: 730px; color: rgba(255,255,255,.88); font-size: 18px; }
.hero-copy { max-width: 780px; }
.hero-cta {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-items: center;
  gap: 9px;
  margin-top: 20px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(7,24,47,.18);
  font-size: 13px;
  font-weight: 850;
}

.hero-visual { position: relative; min-height: 520px; perspective: 1100px; }
.sky-card {
  position: absolute;
  inset: 54px 20px 48px 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.22));
  box-shadow: var(--shadow);
  transform: rotateY(-8deg) rotateX(3deg);
}
.roof { position: absolute; left: 12%; right: 6%; bottom: 12%; height: 130px; background: linear-gradient(135deg, #142b45, #07182f); clip-path: polygon(0 52%, 50% 0, 100% 52%, 100% 100%, 0 100%); }
.mast { position: absolute; left: 48%; bottom: 66%; width: 6px; height: 120px; background: #fff; border-radius: 99px; }
.antenna { position: absolute; left: 38%; bottom: 118%; width: 130px; height: 5px; background: #fff; border-radius: 99px; }
.antenna-two { transform: rotate(90deg); transform-origin: center; }
.dish { position: absolute; right: 18%; bottom: 78%; width: 70px; height: 54px; border: 8px solid #fff; border-left-color: transparent; border-radius: 50%; transform: rotate(-18deg); }
.starlink-panel { position: absolute; left: 13%; top: 17%; width: 150px; height: 92px; border-radius: 18px; background: #f7fbff; box-shadow: 0 18px 44px rgba(7,24,47,.22); transform: rotate(-10deg); }
.signal-lines span { position: absolute; right: 14%; top: 17%; border: 2px solid rgba(255,255,255,.78); border-left: 0; border-bottom: 0; border-radius: 0 120px 0 0; }
.signal-lines span:nth-child(1) { width: 80px; height: 80px; }
.signal-lines span:nth-child(2) { width: 130px; height: 130px; top: 12%; }
.signal-lines span:nth-child(3) { width: 180px; height: 180px; top: 7%; }
.float-card {
  position: absolute;
  min-width: 150px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  color: var(--navy);
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}
.float-card strong { display: block; font-size: 22px; }
.float-card span { display: block; margin-top: 4px; color: #667085; font-size: 12px; font-weight: 700; }
.card-a { left: 2%; top: 10%; }
.card-b { right: 2%; top: 6%; animation-delay: .4s; }
.card-c { left: 8%; bottom: 10%; animation-delay: .8s; }
.card-d { right: 6%; bottom: 18%; animation-delay: 1.2s; }
.card-e { left: 37%; bottom: 0; animation-delay: 1.6s; }
.card-f { left: 36%; top: 34%; animation-delay: 2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1120px, calc(100% - 40px));
  margin: -54px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(7,24,47,.1);
}
.trust-item {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy); font-size: 26px; line-height: 1; }
.trust-item span { margin-top: 8px; color: var(--muted); font-weight: 760; line-height: 1.22; }

.section { padding: 105px 0; }
.section-head { max-width: 720px; margin-bottom: 36px; text-align: center; margin-left: auto; margin-right: auto; }
.row-head { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; text-align: left; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card, .benefits-grid article, .contact-form, .contact-card, .price-panel, .starlink-reasons article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(7,24,47,.07);
}
.service-card { min-height: 260px; padding: 26px; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card.featured { background: linear-gradient(180deg, #07182f, #0b396d); }
.service-card.featured h3, .service-card.featured p, .service-card.featured a { color: #fff; }
.starlink-card {
  position: relative;
  order: -1;
  grid-column: span 2;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7,24,47,.94), rgba(4,121,217,.86)),
    url('assets/starlink-4.jpeg') center / cover;
  border-color: rgba(10,164,255,.28);
}
.popular-badge {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
}
.starlink-card h3,
.starlink-card p,
.starlink-card a {
  color: #fff;
}
.starlink-card .icon {
  background: #fff;
}
.starlink-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--lime);
}
.sat-card {
  grid-column: span 2;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7,24,47,.96), rgba(8,74,129,.82)),
    url('https://paslaugos-img.dgn.lt/gallery_10_19801857/antenu-montavimas-derinimas-remontas-yt121-galerija.jpg') center / cover;
  border-color: rgba(255,255,255,.12);
}
.sat-card h3,
.sat-card p,
.sat-card a {
  color: #fff;
}
.sat-card .icon {
  background: var(--lime);
}
.icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 28px; border-radius: 14px; background: var(--lime); color: var(--navy); font-size: 13px; font-weight: 900; }
.service-card p { font-size: 14px; }
.service-card p, .benefits-grid p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card a { color: var(--blue); font-weight: 900; }

.split-section, .gallery-section, .faq-section { background: var(--soft); }
.split-grid, .feature-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; }
.proof-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.proof-panel div, .tech-cards article {
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
}
.proof-panel strong { display: block; color: var(--blue); font-size: 38px; }
.proof-panel span { color: var(--muted); font-weight: 700; }
.visual-panel {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 34px;
  border-radius: 32px;
  color: #fff;
  background: radial-gradient(circle at 70% 18%, #c8ff3d 0, transparent 18%), linear-gradient(145deg, #07182f, #087ccf 68%, #65cbff);
}
.visual-panel h2, .visual-panel p { color: #fff; }
.visual-panel h2 {
  max-width: 620px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
}
.visual-panel p {
  max-width: 620px;
  font-size: 16px;
}
.mini-sat { width: 86px; height: 86px; margin-bottom: auto; border: 10px solid #fff; border-left-color: transparent; border-radius: 50%; transform: rotate(-22deg); opacity: .9; }
.check-list ul { padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li { padding: 16px 0 16px 34px; border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 750; position: relative; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 20px; width: 16px; height: 16px; border-radius: 50%; background: var(--lime); }
.dark-band { color: #fff; background: #07182f; }
.dark-band h2, .dark-band p { color: #fff; }
.tech-cards { display: grid; gap: 14px; }
.tech-cards article { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
.tech-cards strong { display: block; color: var(--lime); font-size: 25px; }
.tech-cards span { color: rgba(255,255,255,.78); }
.starlink-reason-section {
  background: linear-gradient(180deg, #fff, #f5f8fc);
}
.starlink-reasons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.starlink-reasons article {
  padding: 26px;
}
.starlink-reasons h3 {
  margin-bottom: 8px;
}
.starlink-reasons p {
  margin-bottom: 0;
  font-size: 14px;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.location-grid article {
  position: relative;
  overflow: hidden;
  min-height: 130px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 80% 8%, rgba(10,164,255,.14), transparent 34%),
    #fff;
  box-shadow: 0 16px 45px rgba(7,24,47,.07);
  display: flex;
  align-items: center;
}
.location-grid article::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  border: 18px solid rgba(4,121,217,.08);
  border-radius: 50%;
}
.location-grid article span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  border-radius: 14px;
  color: var(--navy);
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
}
.location-grid article strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.1;
}
.location-grid article small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
.scope-list { display: flex; flex-wrap: wrap; gap: 12px; }
.scope-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}
.scope-list {
  align-content: center;
  justify-content: center;
}
.scope-list span {
  min-width: 165px;
}
.gallery-actions { display: flex; gap: 10px; }
.gallery-actions button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 12px 30px rgba(7,24,47,.08);
  font-size: 30px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.gallery-actions button:hover {
  transform: translateY(-2px);
  color: #fff;
  background: var(--navy);
}
.gallery-groups {
  display: grid;
  gap: 34px;
}
.gallery-row {
  min-width: 0;
}
.gallery-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}
.gallery-row-head h3 {
  margin-bottom: 0;
  font-size: clamp(22px, 2vw, 30px);
}
.gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 320px);
  grid-template-rows: 190px;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(7,24,47,.25) transparent;
}
.gallery-grid::-webkit-scrollbar { height: 8px; }
.gallery-grid::-webkit-scrollbar-thumb { background: rgba(7,24,47,.25); border-radius: 999px; }
.gallery-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: 14px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  background-image: linear-gradient(180deg, rgba(7,24,47,.04), rgba(7,24,47,.78)), var(--photo, linear-gradient(135deg, #eaf4ff, #cfe8fb));
  background-position: center;
  background-size: cover;
  scroll-snap-align: start;
}
.gallery-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,24,47,.02), rgba(7,24,47,.76)); transition: transform .25s ease; }
.gallery-card:hover::before { transform: scale(1.08); }
.clean-gallery .gallery-card::before {
  background: linear-gradient(180deg, rgba(7,24,47,0), rgba(7,24,47,.14));
}
.clean-gallery .gallery-card:hover::before {
  background: linear-gradient(180deg, rgba(7,24,47,0), rgba(7,24,47,.22));
}
.gallery-card span, .gallery-card strong { position: relative; z-index: 1; }
.gallery-card span { padding: 6px 9px; border-radius: 999px; background: rgba(255,255,255,.18); font-size: 11px; font-weight: 900; }
.gallery-card strong { margin-top: 8px; font-size: 16px; line-height: 1.15; }
.gallery-card.tall, .gallery-card.wide { grid-row: span 1; grid-column: span 1; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.benefits-grid article { padding: 28px; }
.price-section { background: linear-gradient(180deg, #fff, #eef7ff); }
.price-panel { display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; padding: 42px; }
.faq-list { max-width: 900px; margin: 0 auto; }
details { border-bottom: 1px solid var(--line); background: #fff; }
details:first-child { border-radius: 22px 22px 0 0; }
details:last-child { border-radius: 0 0 22px 22px; border-bottom: 0; }
summary { padding: 22px 26px; color: var(--navy); font-size: 18px; font-weight: 850; cursor: pointer; }
details p { padding: 0 26px 22px; margin: 0; }
.contact-grid { align-items: stretch; }
.contact-form, .contact-card { padding: 34px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form h2, .contact-form .eyebrow, .contact-form label:nth-of-type(5), .contact-form button { grid-column: 1 / -1; }
label { display: grid; gap: 8px; color: var(--navy); font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 14px 15px; background: #f9fbfd; color: var(--ink); }
.contact-card { color: #fff; background: linear-gradient(160deg, #07182f, #0b4f8d); }
.contact-card h2, .contact-card p { color: #fff; }
.contact-card a[href^="mailto"], .contact-card a[href^="https"] { color: var(--lime); text-decoration: none; word-break: break-all; }
.contact-card a[href^="mailto"]:hover, .contact-card a[href^="https"]:hover { text-decoration: underline; }
.contact-director { margin-top: 20px !important; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.15); font-size: 13px; opacity: .8; }
.contact-director strong { display: block; font-size: 16px; opacity: 1; color: #fff; margin-top: 4px; }
.big-phone { display: block; margin: 20px 0; color: var(--lime); font-size: clamp(30px, 4vw, 52px); font-weight: 900; }
.socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.socials a { padding: 12px 14px; border-radius: 999px; background: rgba(255,255,255,.12); font-weight: 800; }
.site-footer { padding: 58px 0; color: #fff; background: #070b12; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .8fr .6fr; gap: 34px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.74); }
.site-footer a { display: block; margin: 9px 0; }
.site-footer h3 { color: #fff; }
.footer-brand span:last-child { color: #fff; }
.footer-director { margin-top: 14px !important; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; line-height: 1.4; }
.footer-director strong { display: block; font-size: 14px; color: #fff; margin-top: 3px; }
.footer-langs button { color: #fff; background: rgba(255,255,255,.08); }
.site-footer .languages {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
}
.site-footer .languages button {
  color: rgba(255,255,255,.82);
  background: transparent;
}
.site-footer .languages button.active,
.site-footer .languages button:hover {
  color: var(--navy);
  background: var(--lime);
}
.site-footer .brand-mark {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}
.site-footer .logo-mast,
.site-footer .logo-roof {
  stroke: #fff;
}
.quick-contact { position: fixed; right: 18px; bottom: 22px; z-index: 60; display: grid; gap: 10px; }
.quick-contact a { padding: 13px 16px; border-radius: 999px; background: var(--navy); color: #fff; font-weight: 900; box-shadow: var(--shadow); }
.quick-contact a:first-child { background: var(--lime); color: var(--navy); }
.mobile-call { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; padding: 10px 14px; background: #fff; border-top: 1px solid var(--line); }
.mobile-call a { display: flex; justify-content: center; padding: 15px; border-radius: 999px; background: var(--lime); color: var(--navy); font-weight: 900; }
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; background: rgba(7,24,47,.78); }
.lightbox.open { display: grid; }
.lightbox-close { position: absolute; right: 24px; top: 24px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: #fff; color: var(--navy); font-size: 30px; cursor: pointer; z-index: 2; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: 0; border-radius: 50%; background: rgba(255,255,255,.22); color: #fff; font-size: 36px; line-height: 1; cursor: pointer; z-index: 2; transition: background .2s; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.38); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox div { width: min(1100px, calc(100% - 36px)); height: min(82vh, 760px); min-height: 320px; display: flex; flex-direction: column; justify-content: end; padding: 0; border-radius: 24px; color: #fff; background-color: transparent; box-shadow: none; }
.lightbox span { width: fit-content; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.16); font-weight: 900; }
.lightbox strong { margin-top: 14px; font-size: 30px; }

@media (max-width: 1120px) {
  .main-nav { display: none; position: absolute; left: 18px; right: 18px; top: 78px; padding: 18px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
  .main-nav.open { display: grid; justify-content: stretch; }
  .menu-toggle { display: block; }
  .phone-link { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { padding: 12px 14px; min-height: 70px; }
  .brand span:last-child { display: none; }
  .header-actions .btn-small { display: none; }
  .languages button { padding: 6px 7px; }
  .hero { min-height: 0; padding: 44px 0 42px; }
  .hero-grid { gap: 22px; }
  h1 { font-size: 36px; line-height: 1; }
  h2 { font-size: 32px; }
  .hero-copy p { font-size: 15px; line-height: 1.55; }
  .hero-cta { display: grid; grid-template-columns: 1fr; margin-top: 22px; }
  .hero-cta .btn { width: 100%; min-height: 52px; }
  .hero-badges { grid-template-columns: 1fr; }
  .hero-badges span { justify-content: center; }
  .hero-visual { min-height: 300px; }
  .sky-card { inset: 24px 0 46px; border-radius: 24px; }
  .float-card { min-width: 116px; padding: 12px; border-radius: 18px; }
  .float-card strong { font-size: 17px; }
  .float-card span { font-size: 11px; }
  .card-b { right: 0; top: 0; }
  .card-e { left: 26%; }
  .card-f { left: 42%; top: 39%; min-width: 118px; }
  .card-d, .card-e, .card-f { display: none; }
  .trust-strip, .services-grid, .split-grid, .feature-grid, .benefits-grid, .price-panel, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .starlink-reasons { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); margin-top: 0; border-radius: 0; width: 100%; }
  .trust-item { min-height: 112px; padding: 20px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust-item strong { font-size: 20px; }
  .trust-item span { font-size: 13px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 24px; text-align: left; }
  .service-card { min-height: auto; padding: 20px; border-radius: 20px; }
  .starlink-card { grid-column: span 1; }
  .sat-card { grid-column: span 1; }
  .popular-badge { right: 14px; top: 14px; }
  .icon { margin-bottom: 18px; }
  .proof-panel { grid-template-columns: 1fr; }
  .visual-panel { min-height: 330px; border-radius: 24px; padding: 24px; }
  .visual-panel h2 { font-size: 32px; }
  .visual-panel p { font-size: 15px; }
  .price-panel, .contact-form, .contact-card { padding: 24px; border-radius: 22px; }
  .scope-list { justify-content: stretch; }
  .scope-list span { width: 100%; min-width: 0; }
  .row-head { display: block; }
  .gallery-row-head { align-items: flex-start; }
  .gallery-actions { margin-top: 0; }
  .gallery-actions button { width: 44px; height: 44px; }
  .gallery-grid { grid-auto-columns: minmax(230px, 82vw); grid-template-rows: 160px; gap: 10px; }
  .gallery-card { padding: 12px; border-radius: 16px; }
  .gallery-card strong { font-size: 14px; }
  .gallery-card span { font-size: 10px; }
  .tall, .wide { grid-row: span 1; grid-column: span 1; }
  .location-grid { grid-template-columns: 1fr; }
  .location-grid article { min-height: 145px; }
  .contact-form { grid-template-columns: 1fr; }
  .quick-contact { display: none; }
  .mobile-call { display: block; }
  body { padding-bottom: 74px; }
}
