:root {
  --bg: #07111f;
  --bg-2: #0b1628;
  --panel: rgba(15, 27, 46, .78);
  --panel-strong: #0f1d33;
  --panel-soft: #12233d;
  --line: rgba(148, 169, 208, .18);
  --line-strong: rgba(148, 169, 208, .28);
  --text: #eaf1ff;
  --muted: #9fb0cf;
  --brand: #8ab4ff;
  --brand-2: #d3e2ff;
  --accent: #7ef0d1;
  --shadow: 0 24px 80px rgba(0, 0, 0, .35);
  --radius: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Inter, Arial, sans-serif;
  background: radial-gradient(circle at top left, rgba(52, 101, 197, .22), transparent 30%), radial-gradient(circle at 85% 10%, rgba(126, 240, 209, .08), transparent 24%), linear-gradient(180deg, #06101d 0%, #081321 28%, #09182a 100%);
  color: var(--text);
  line-height: 1.6
}

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

img {
  display: block;
  max-width: 100%;
  border-radius: 22px
}

.wp-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto
}

.wp-section {
  padding: 92px 0;
  position: relative
}

.wp-h2 {
  font-size: 38px;
  margin: 18px 0 16px;
  font-weight: 800
}

.wp-lead {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 760px
}

.wp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(138, 180, 255, .1);
  color: var(--brand-2);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid rgba(138, 180, 255, .16);
  backdrop-filter: blur(10px)
}

.wp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .25s ease;
  cursor: pointer
}

.wp-btn:hover {
  transform: translateY(-1px)
}

.wp-btn-primary {
  background: linear-gradient(135deg, #b9d0ff, #7ef0d1);
  color: #07111f !important;
  box-shadow: 0 12px 28px rgba(126, 240, 209, .16)
}

.wp-btn-primary:hover {
  color: #fff !important;
}

.wp-btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong)
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 16, 29, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px
}

.brand {
  font-weight: 800;
  letter-spacing: -.03em;
  max-width: 360px;
  font-size: 1.02rem;
  color: #fff
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.nav a {
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600
}

.nav a:hover,
.nav a.is-active {
  background: rgba(255, 255, 255, .06);
  color: #fff
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem
}

.hero {
  padding: 44px 0 34px
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  gap: 24px;
  align-items: stretch
}

.hero-panel,
.hero-card,
.info-card,
.text-block,
.visual-block,
.step,
.service-row,
.person-card,
.contact-card,
.quote-card,
.faq-item,
.page-hero-box,
.contact-panel,
.form-panel,
.legal-card,
.sidebar-note,
.cta-panel,
.stats-strip {
  background: var(--panel);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.hero-panel {
  border-radius: 34px;
  padding: 54px;
  min-height: 620px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.hero-panel:before {
  content: '';
  position: absolute;
  inset: auto -80px -120px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 180, 255, .26) 0%, rgba(138, 180, 255, 0) 70%)
}

.hero-panel:after {
  content: '';
  position: absolute;
  left: -70px;
  top: -70px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 240, 209, .13) 0%, rgba(126, 240, 209, 0) 70%)
}

.hero-panel h1 {
  font-size: 38px; 
  max-width: 720px;
  margin: 20px 0
}

.hero-panel p {
  font-size: 1.08rem;
  max-width: 640px;
  color: #c8d5ef
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 28px
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px
}

.hero-list span {
  display: block;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  color: #d9e4fb
}

.hero-list b {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-size: 1rem
}

.hero-card {
  border-radius: 34px;
  padding: 22px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  background: linear-gradient(180deg, rgba(20, 37, 62, .9), rgba(10, 20, 35, .95))
}

.hero-card img {
  height: 280px;
  width: 100%;
  object-fit: cover
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px
}

.quick-item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 20px;
  padding: 18px
}

.quick-item strong {
  display: block;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 4px
}

.quick-item span {
  color: var(--muted)
}

.sidebar-note {
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .025))
}

.sidebar-note strong {
  display: block;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px
}

.sidebar-note p,
.sidebar-note a {
  color: var(--muted)
}

.stats-strip {
  margin-top: 24px;
  border-radius: 26px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: rgba(13, 24, 40, .74)
}

.stat-box {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .04)
}

.stat-box strong {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 4px
}

.stat-box span {
  color: var(--muted)
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px
}

.card-grid,
.timeline,
.team-grid,
.testimonial-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

 

.info-card,
.step,
.contact-card,
.quote-card,
.faq-item,
.legal-card {
  border-radius: 24px;
  padding: 28px
}

.info-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  background: rgba(138, 180, 255, .11);
  margin-bottom: 18px
}

.info-card h3,
.step h3,
.faq-item h3,
.legal-card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px
}

.info-card p,
.step p,
.contact-card p,
.quote-card p,
.faq-item p,
.legal-card p,
.person-card p,
.service-body p,
.service-body li {
  color: var(--muted)
}

.band {
  background: linear-gradient(180deg, rgba(255, 255, 255, .015), rgba(255, 255, 255, .03));
  border-top: 1px solid rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.split-panel {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 24px;
  align-items: center
}

.split-panel.reverse {
  grid-template-columns: .98fr 1.02fr
}

.text-block,
.visual-block {
  border-radius: 30px
}

.text-block {
  padding: 40px;
  background: linear-gradient(180deg, rgba(18, 35, 61, .96), rgba(12, 23, 40, .92))
}

.visual-block {
  padding: 16px;
  background: rgba(255, 255, 255, .035)
}

.visual-block img {
  min-height: 460px;
  height: 100%;
  object-fit: cover
}

.point-list {
  display: grid;
  gap: 16px;
  margin-top: 24px
}

.point-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: flex-start
}

.point-list span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(138, 180, 255, .18), rgba(126, 240, 209, .18));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, .06)
}

.timeline {
  grid-template-columns: repeat(3, 1fr)
}

.step em {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #8ab4ff, #7ef0d1);
  color: #081321;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 800;
  margin-bottom: 16px
}

.service-stack {
  display: grid;
  gap: 18px
}

.service-row {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  padding: 18px;
  border-radius: 30px;
  align-items: stretch
}

.service-row img {
  height: 100%;
  min-height: 280px;
  object-fit: cover
}

.service-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 8px
}

.service-body h3 {
  font-size: 1.8rem;
  margin: 14px 0 10px;
  color: #fff;
  letter-spacing: -.03em
}

.service-body ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin: 18px 0 24px;
  padding-left: 0
}

.service-body li {
  list-style: none
}

.service-tag {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(138, 180, 255, .1);
  color: var(--brand-2);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(138, 180, 255, .14)
}

.team-grid {
  grid-template-columns: repeat(4, 1fr)
}

.person-card {
  padding: 18px;
  border-radius: 26px
}

.person-card img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 16px
}

.person-card h3 {
  color: #fff
}

.person-card strong {
  display: block;
  color: var(--brand-2);
  margin: 4px 0 10px
}

.contact-layout {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 24px
}

.contact-panel,
.form-panel,
.page-hero-box {
  padding: 34px;
  border-radius: 30px
}

.contact-panel {
  background: linear-gradient(180deg, rgba(11, 23, 41, .96), rgba(8, 18, 33, .96));
  position: relative;
  overflow: hidden
}

.contact-panel:before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 180, 255, .16), rgba(138, 180, 255, 0) 70%)
}

.contact-panel>* {
  position: relative;
  z-index: 1
}

.contact-cards {
  margin-top: 22px
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  padding: 34px;
  overflow: hidden
}

.contact-card h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #fff;
  margin: 14px 0 12px;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word
}

.contact-card p {
  font-size: 1rem;
  line-height: 1.65;
  max-width: 34ch
}

.contact-card--email {
  grid-area: email;
  min-height: 280px
}

.contact-card--phone {
  grid-area: phone
}

.contact-card--address {
  grid-area: address;
  min-height: 220px
}

.contact-card--hours {
  grid-area: hours
}

.contact-card--compact p {
  max-width: 18ch
}

.contact-card .contact-link {
  font-size: clamp(1.6rem, 2.4vw, 2.8rem);
  line-height: 1.02;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.05em;
  overflow-wrap: anywhere
}

.contact-card .contact-meta {
  margin-top: auto;
  padding-top: 18px;
  color: #b8c8e6
}

.contact-card .label {
  font-size: .76rem;
  font-weight: 800;
  color: var(--brand-2);
  text-transform: uppercase;
  letter-spacing: .14em
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}

.form-row {
  display: grid;
  gap: 8px;
  margin-top: 14px
}

label {
  font-weight: 700;
  font-size: .92rem;
  color: #e8f0ff
}

input,
textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .04);
  font: inherit;
  color: var(--text)
}

textarea {
  min-height: 170px;
  resize: vertical
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.cta-panel {
  border-radius: 34px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, rgba(18, 34, 59, .98), rgba(11, 22, 40, .98))
}

.cta-panel p {
  color: #c8d5ef
}

.mini-list {
  display: grid;
  gap: 12px
}

.mini-list span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted)
}

.page-hero {
  padding: 42px 0 14px
}

.page-hero-box {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: end;
  background: linear-gradient(180deg, rgba(18, 35, 61, .96), rgba(12, 23, 40, .92))
}

.page-hero-box h1 {
  max-width: 800px
}

.site-footer {
  padding: 34px 0 24px;
  background: #050c17;
  color: #dbe7ff;
  margin-top: 84px;
  border-top: 1px solid rgba(255, 255, 255, .05)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .95fr .85fr;
  gap: 20px
}

.footer-grid p,
.footer-grid a,
.footer-grid li,
.footer-bottom {
  color: #91a6cb
}

.footer-grid h4 {
  color: #fff;
  margin-bottom: 12px
}

.footer-brand {
  font-size: 1.12rem;
  font-weight: 800;
  color: #fff;
  display: inline-block;
  margin-bottom: 14px
}

.footer-nav,
.footer-list,
.legal-wrap {
  display: grid;
  gap: 18px
}

.legal-intro {
  padding: 30px 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06)
}

.legal-intro p {
  color: #c6d4ee;
  max-width: 1000px
}

.legal-grid {
  grid-template-columns: repeat(2, 1fr)
}

.legal-card h2 {
  font-size: 1.3rem;
  line-height: 1.15;
  letter-spacing: -.03em
}

.legal-card ul {
  margin-top: 14px;
  padding-left: 20px;
  color: var(--muted)
}

.legal-card li+li {
  margin-top: 10px
}

.legal-card p+p {
  margin-top: 12px
}

.legal-card--full {
  grid-column: 1 / -1
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 18px;
  margin-top: 24px
}

#cc-popup {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 760px;
  margin: auto;
  background: rgba(10, 18, 31, .95);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .38);
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 80
}

#cc-popup.is-hidden {
  display: none
}

#cc-popup p {
  color: var(--muted);
  flex: 1
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

::placeholder {
  color: #8da1c7
}

@media (max-width: 1100px) {

  .hero-shell,
  .split-panel,
  .split-panel.reverse,
  .contact-layout,
  .cta-panel,
  .page-hero-box,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .card-grid,
  .timeline,
  .team-grid,
  .contact-cards,
  .testimonial-grid,
  .legal-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .contact-cards {
    grid-template-areas: "email phone" "address hours"
  }

  .service-row {
    grid-template-columns: 1fr
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-list {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block
  }

  .nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    background: #0b1628;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch
  }

  .nav.is-open {
    display: flex
  }

  .hero-panel,
  .hero-card,
  .text-block,
  .contact-panel,
  .form-panel,
  .page-hero-box,
  .cta-panel {
    padding: 24px
  }

  .card-grid,
  .timeline,
  .team-grid,
  .contact-cards,
  .testimonial-grid,
  .faq-grid,
  .legal-grid,
  .quick-grid,
  .form-grid,
  .service-body ul,
  .stats-strip {
    grid-template-columns: 1fr
  }

  .contact-cards {
    grid-template-areas: "email" "phone" "address" "hours"
  }

  .wp-section {
    padding: 66px 0
  }

  .hero-panel {
    min-height: auto
  }

  .visual-block img {
    min-height: 280px
  }

  #cc-popup {
    flex-direction: column;
    align-items: flex-start
  }
}