:root {
  --navy: #050b16;
  --navy-2: #0a1628;
  --navy-3: #12233d;
  --blue: #0d6fb8;
  --sky: #3ec6f0;
  --sky-2: #1aa7d6;
  --ink: #102033;
  --muted: #5d6f84;
  --line: #dbe7f2;
  --bg: #f4f8fc;
  --white: #ffffff;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(8, 24, 48, 0.12);
  --radius: 18px;
  --max: 1180px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Outfit", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--sky-2); }
h1, h2, h3, h4, .display { font-family: var(--display); line-height: 1.15; margin: 0 0 .6em; }
p { margin: 0 0 1em; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip { position: absolute; left: -999px; top: 8px; }
.skip:focus { left: 12px; background: #fff; padding: 8px 12px; z-index: 99; }

.topbar {
  background: #000;
  color: #c9d7e6;
  font-size: 13px;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; min-height: 40px; flex-wrap: wrap;
}
.topbar a { color: #d7e6f3; }
.topbar-left, .topbar-right { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; background: #151515; color: var(--sky);
}

.offer-flash {
  background: linear-gradient(90deg, #c41212, #e85d04 55%, #c41212);
  color: #fff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.offer-flash-track {
  display: flex;
  width: max-content;
  animation: offer-scroll 28s linear infinite;
}
.offer-flash a {
  color: #fff;
  font: 800 14px var(--display);
  letter-spacing: .04em;
  white-space: nowrap;
  padding: 10px 48px;
  text-transform: uppercase;
}
.offer-flash a:hover { color: #fff; text-decoration: underline; }
@keyframes offer-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .offer-flash-track { animation: none; }
}

.site-header {
  background: #fff;
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(8, 24, 48, .04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.logo img { height: 85px; width: auto; }
.logo-mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px;
  background: var(--sky); color: #04202b; font-family: var(--display); font-weight: 800; font-size: 18px;
}
.logo-word { font-family: var(--display); font-weight: 800; letter-spacing: .14em; font-size: 18px; color: var(--ink); }
.footer-brand { margin-bottom: 12px; }
.footer-brand img {
  height: 48px; width: auto; background: #fff; padding: 8px 12px; border-radius: 12px;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .drop > button {
  color: var(--ink); background: none; border: 0; cursor: pointer;
  font: 600 14px var(--font); padding: 10px 12px; border-radius: 10px;
}
.nav > a:hover, .drop > button:hover, .nav > a.active { color: var(--sky-2); }
.nav > a.btn {
  background: linear-gradient(90deg, var(--sky-2), var(--sky));
  color: #04202b;
  font-weight: 800;
  padding: 10px 18px;
  margin-left: 8px;
}
.nav > a.btn:hover { color: #04202b; filter: brightness(1.05); }
.drop { position: relative; }
.drop-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 240px;
  background: #0b1626; border: 1px solid rgba(62,198,240,.2); border-radius: 14px;
  padding: 10px; box-shadow: var(--shadow);
}
.drop:hover .drop-menu, .drop:focus-within .drop-menu { display: grid; }
.drop-menu a { color: #d5e6f3; padding: 9px 10px; border-radius: 8px; font-size: 14px; }
.drop-menu a:hover { background: rgba(62,198,240,.12); color: var(--sky); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(90deg, var(--sky-2), var(--sky));
  color: #04202b; font-weight: 800; border: 0; border-radius: 999px;
  padding: 12px 20px; cursor: pointer; font-family: var(--font);
}
.btn:hover { color: #04202b; filter: brightness(1.05); }
.btn-dark { background: var(--navy-3); color: #fff; }
.btn-dark:hover { color: #fff; }
.btn-outline {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35);
}
.btn-outline:hover { color: var(--sky); border-color: var(--sky); }
.menu-toggle {
  display: none; background: #fff; color: var(--ink); border: 1px solid var(--line);
  width: 44px; height: 44px; border-radius: 10px; font-size: 22px;
}

.hero {
  position: relative; overflow: hidden; color: #fff; min-height: 78vh;
  display: grid; align-items: end;
}
.photo-hero { position: relative; overflow: hidden; color: #fff; }
.hero-photo, .photo-hero > .hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,11,22,.82) 0%, rgba(5,11,22,.45) 55%, rgba(5,11,22,.25) 100%);
}
.hero-copy { position: relative; z-index: 1; padding: 90px 0 72px; }
.hero-copy h1, .page-hero h1 { font-size: clamp(32px, 5vw, 58px); max-width: 16ch; }
.hero-copy p { color: #e4eef7; font-size: 18px; max-width: 52ch; }
.kicker {
  display: inline-block; color: var(--sky); font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; font-size: 12px; margin-bottom: 14px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 0; }
.page-hero.photo-hero { min-height: 42vh; }
.page-hero .hero-copy { padding: 70px 0 48px; }
.page-hero .hero-copy h1 { max-width: 20ch; }

.photo-card { overflow: hidden; padding: 0; }
.photo-card img { width: 100%; height: 190px; object-fit: cover; }
.photo-card .body { padding: 18px 20px 22px; }
.photo-card:hover { transform: translateY(-4px); transition: .2s ease; }

.band-photo { position: relative; min-height: 320px; display: grid; align-items: center; color: #fff; }
.band-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band-copy {
  position: relative; z-index: 1; width: min(var(--max), calc(100% - 40px)); margin: 0 auto;
  background: rgba(5,11,22,.72); padding: 36px; border-radius: 20px; max-width: 720px;
}

.cta-photo { position: relative; min-height: 340px; display: grid; align-items: center; color: #fff; }
.cta-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-inner { position: relative; z-index: 1; text-align: center; padding: 64px 0; }
.cta-inner h2 { font-size: clamp(26px, 4vw, 40px); }

.domain-section {
  margin-top: -42px; position: relative; z-index: 3; padding-bottom: 12px;
}
.domain-card {
  background: #fff; border-radius: 24px; padding: 28px 28px 22px;
  box-shadow: 0 24px 60px rgba(8, 24, 48, .16); border: 1px solid var(--line);
}
.domain-copy h2 { margin-bottom: .35em; }
.domain-copy p { color: var(--muted); margin-bottom: 16px; }
.domain-form {
  display: grid; grid-template-columns: 1fr 140px auto; gap: 10px; align-items: end;
}
.domain-field span { display: block; font-size: 12px; font-weight: 800; margin-bottom: 6px; color: var(--muted); }
.domain-field input, .domain-field select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
  font: 16px var(--font); background: #f8fbfe;
}
.domain-exts { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.domain-exts span {
  background: var(--bg); color: var(--ink); border-radius: 999px; padding: 4px 10px;
  font-size: 12px; font-weight: 800;
}
.domain-results { margin-top: 16px; display: grid; gap: 8px; }
.domain-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; flex-wrap: wrap;
}
.domain-row strong { font-family: var(--display); }
.domain-row .muted { color: var(--muted); font-size: 14px; }

.hero:after { display: none; }
.hero-grid { display: none; }

.section { padding: 72px 0; }
.section-muted { background: var(--bg); }
.section-dark { background: var(--navy-2); color: #fff; }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 40px); }
.section-head p { color: var(--muted); }
.section-dark .section-head p { color: #b7c8da; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 8px 24px rgba(10,30,60,.04);
}
.card h3 { font-size: 20px; }
.card p { color: var(--muted); margin-bottom: 0; }
.icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(62,198,240,.12); color: var(--sky-2); font-weight: 800; margin-bottom: 14px;
}
.service-card { transition: .2s ease; }
.service-card:hover { transform: translateY(-4px); border-color: #b9e7f7; }

.portfolio-card { overflow: hidden; padding: 0; }
.portfolio-card .thumb {
  height: 190px; background: linear-gradient(135deg, #0c2348, #1aa7d6);
  display: grid; place-items: center; color: #fff; font-family: var(--display); font-size: 22px; text-align: center; padding: 12px;
}
.portfolio-card img { width: 100%; height: 190px; object-fit: cover; }
.portfolio-card .body { padding: 18px 20px 22px; }
.meta { color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 28px; }
.filter-bar a {
  border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 14px;
  color: var(--ink); font-weight: 700;
}
.filter-bar a.active, .filter-bar a:hover { background: var(--navy-2); color: #fff; border-color: var(--navy-2); }

.page-hero {
  background: linear-gradient(120deg, #050b16, #12345f);
  color: #fff; padding: 54px 0 48px;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 46px); }
.crumbs { color: #9cb3c9; font-size: 14px; margin-bottom: 12px; }
.crumbs a { color: var(--sky); }
.prose h2 { margin-top: 1.4em; }
.layout-aside { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }
.side-card { position: sticky; top: 100px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 800; font-family: var(--display); }
.faq p { color: var(--muted); margin: 10px 0 4px; }

.form { display: grid; gap: 12px; }
.form input, .form select, .form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px;
  font: 16px var(--font); background: #fff;
}
.form textarea { min-height: 130px; resize: vertical; }
.alert { padding: 12px 14px; border-radius: 12px; margin-bottom: 14px; }
.alert-ok { background: #e8f8ef; color: #146c3a; }
.alert-err { background: #fdecec; color: #9b1c1c; }
.hp { position: absolute; left: -9999px; }

.cta-band {
  background: linear-gradient(90deg, #0d6fb8, #3ec6f0);
  color: #04202b; border-radius: 24px; padding: 36px; display: flex;
  justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cta-band h2 { margin: 0; }
.locations .card address, .card address {
  font-style: normal; color: var(--muted); line-height: 1.7; display: block; margin: 0 0 10px;
}

.site-footer { background: #050505; color: #b7c4d3; padding: 54px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.site-footer h3 { color: #fff; font-size: 16px; }
.site-footer a { color: #c5d4e3; display: block; padding: 4px 0; }
.site-footer a:hover { color: var(--sky); }
.copy { border-top: 1px solid #1b1b1b; padding-top: 16px; font-size: 13px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-logo { height: 64px; margin-bottom: 12px; }

.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related a { display: block; }
.list-check { list-style: none; padding: 0; }
.list-check li { padding: 8px 0 8px 28px; position: relative; }
.list-check li:before { content: "✓"; position: absolute; left: 0; color: var(--sky-2); font-weight: 800; }

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
}
.wa-float svg { width: 32px; height: 32px; display: block; }
.wa-float:hover { color: #fff; transform: scale(1.07); filter: brightness(1.05); }

.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-side { background: #050b16; color: #d5e4f2; padding: 24px 16px; }
.admin-side a { color: #d5e4f2; display: block; padding: 10px 12px; border-radius: 10px; }
.admin-side a:hover, .admin-side a.active { background: rgba(62,198,240,.15); color: var(--sky); }
.admin-main { padding: 28px; background: #f4f8fc; }
.table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; }
.table th, .table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
.badge { display: inline-block; padding: 3px 8px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.badge-on { background: #e8f8ef; color: #146c3a; }
.badge-off { background: #fdecec; color: #9b1c1c; }
.login-wrap { min-height: 100vh; display: grid; place-items: center; background: #050b16; }
.clients-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.client-logo {
  margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 14px 14px; text-align: center;
}
.client-logo img {
  width: 100%; height: 120px; object-fit: contain; margin: 0 auto 10px;
}
.client-logo figcaption {
  font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.35;
}

@media (max-width: 980px) {
  .hero-grid, .grid-3, .grid-4, .grid-2, .layout-aside, .footer-grid, .related, .admin-shell { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .domain-form { grid-template-columns: 1fr; }
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    display: none; position: absolute; top: 118px; left: 0; right: 0;
    background: #fff; padding: 12px; flex-direction: column; align-items: stretch;
    border-bottom: 1px solid var(--line); box-shadow: 0 12px 30px rgba(8,24,48,.08);
  }
  .nav.open { display: flex; }
  .drop-menu { position: static; display: none; min-width: 0; }
  .drop.open .drop-menu { display: grid; }
}
@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; }
}
