@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --ink: #020617;
  --muted: #58677a;
  --navy: #071225;
  --navy-2: #0f2746;
  --blue: #0369a1;
  --blue-2: #0ea5e9;
  --gold: #d5a942;
  --paper: #f8fafc;
  --line: #dbe5ef;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(2, 6, 23, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

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

img {
  max-width: 100%;
}

h1,
h2,
h3,
.brand strong,
.service-card span {
  font-family: "Lexend", Arial, sans-serif;
}

.site-shell {
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  width: 306px;
  padding: 22px 22px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 18, 37, 0.97), rgba(12, 39, 70, 0.97)),
    radial-gradient(circle at 30% 0%, rgba(14, 165, 233, 0.28), transparent 38%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  flex-direction: column;
}

.brand {
  display: block;
  min-width: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 190px;
  object-fit: contain;
}

.brand span {
  display: none;
  min-width: 0;
  margin-top: 14px;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.2;
}

.brand-dark strong {
  color: var(--ink);
}

.brand-dark small {
  color: var(--muted);
}

.sidebar-nav {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 13px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-nav i {
  color: var(--blue-2);
}

.sidebar-cta {
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.sidebar-cta span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.content {
  min-height: 100vh;
  margin-left: 306px;
  background: var(--paper);
  overflow-x: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 14px 34px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topbar-context {
  align-items: center;
  min-width: 0;
  gap: 13px;
}

.topbar-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(145deg, var(--blue) 0%, var(--navy-2) 100%);
  box-shadow: 0 12px 26px rgba(3, 105, 161, 0.18);
  font-size: 22px;
  flex: 0 0 auto;
}

.topbar-context-text {
  display: block;
  min-width: 0;
}

.topbar-context-text strong {
  display: block;
  color: var(--navy);
  font-family: "Lexend", Arial, sans-serif;
  font-size: 19px;
  line-height: 1.12;
}

.topbar-context-text small {
  display: block;
  max-width: 600px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-brand img {
  width: 118px;
  height: 54px;
  object-fit: contain;
}

.mobile-brand span {
  display: none;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.icon-btn,
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.icon-btn {
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--white);
}

.icon-link {
  color: var(--white);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(145deg, #0ea5e9 0%, #0369a1 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 24px rgba(3, 105, 161, 0.2);
  font-weight: 800;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.icon-link i {
  display: block;
  font-size: 21px;
  line-height: 1;
}

.icon-link:hover {
  color: var(--white);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(145deg, #0369a1 0%, #0f2746 100%);
  box-shadow: 0 14px 28px rgba(3, 105, 161, 0.24);
  transform: translateY(-1px);
}

.messenger-icon {
  display: block;
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.messenger-icon--telegram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M22.5 3.1c.3-.1.6.2.5.5l-3.6 16.9c-.1.5-.7.7-1.1.4l-5-3.7-2.6 2.5c-.3.3-.8.1-.8-.3l.1-4.6 9.3-8.4c.2-.2 0-.5-.3-.3l-11.4 7-4.6-1.5c-.5-.2-.5-.9 0-1.1L22.5 3.1z'/%3E%3C/svg%3E");
}

.messenger-icon--phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.2 4.4 9.4 8c.4.6.3 1.4-.2 1.9l-1 1c1.2 2.3 3.1 4.2 5.4 5.4l1-1c.5-.5 1.3-.6 1.9-.2l3.6 2.2c.6.4.9 1.1.7 1.8-.4 1.3-1.7 2.3-3.1 2.3C9.5 21.4 2.6 14.5 2.6 6.3c0-1.4 1-2.7 2.3-3.1.7-.2 1.4.1 1.8.7Z' fill='white'/%3E%3C/svg%3E");
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px 0 10px;
  color: var(--navy);
  border: 1px solid rgba(3, 105, 161, 0.16);
  border-radius: 999px;
  background: var(--white);
  font-family: "Lexend", Arial, sans-serif;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(15, 39, 70, 0.07);
}

.contact-pill b {
  color: var(--blue);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  border-radius: 50%;
  background:
    linear-gradient(145deg, var(--blue) 0%, var(--navy-2) 100%);
  font-size: 17px;
  flex: 0 0 auto;
}

.contact-pill:hover {
  color: var(--navy);
  border-color: rgba(3, 105, 161, 0.28);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 46px 34px 0;
  background:
    linear-gradient(90deg, #f8fafc 0%, #f8fafc 62%, #eef6fb 62%, #eef6fb 100%);
  overflow: hidden;
}

.hero .row {
  position: relative;
  overflow: visible;
}

.hero .row > [class*="col-"] {
  overflow: visible;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue);
  font-family: "Lexend", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 710px;
  margin: 22px 0 0;
  color: #334155;
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  border-radius: 8px;
  font-weight: 700;
}

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

.btn-primary:hover {
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.btn-outline-primary {
  color: var(--blue);
  border-color: rgba(3, 105, 161, 0.35);
}

.btn-outline-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.hero-visual {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 430px;
  height: min(500px, calc(100vh - 120px));
  padding: 26px 0 0;
  overflow: visible;
}

.hero-visual img {
  position: relative;
  z-index: 3;
  display: block;
  width: auto;
  max-width: none;
  height: min(540px, 82vh);
  max-height: none;
  margin-left: -98px;
  margin-bottom: 0;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 35px rgba(15, 39, 70, 0.16));
}

.trust-strip,
.section,
.contact-band,
.footer {
  padding-right: 34px;
  padding-left: 34px;
}

.trust-strip {
  position: relative;
  z-index: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  height: 100%;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: #fbfdff;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding-top: 62px;
  padding-bottom: 66px;
}

.section-muted {
  background: #eef4f8;
}

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

.section-head h2,
.section h2,
.contact-band h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
}

.section-head p,
.section-copy {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover {
  color: var(--ink);
  border-color: rgba(3, 105, 161, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #edf5fa;
}

.service-card span {
  display: block;
  padding: 18px 18px 0;
  color: var(--blue);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.service-card p {
  margin: 9px 0 0;
  padding: 0 18px 20px;
  color: #465568;
}

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

.process-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.process-list b {
  color: var(--gold);
  font-family: "Lexend", Arial, sans-serif;
  font-size: 25px;
}

.contact-band {
  padding-top: 42px;
  padding-bottom: 42px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 18, 37, 0.98), rgba(15, 39, 70, 0.98)),
    radial-gradient(circle at 85% 20%, rgba(14, 165, 233, 0.32), transparent 28%);
}

.contact-band h2 {
  color: var(--white);
}

.contact-band p {
  max-width: 720px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-hero {
  padding: 42px 34px 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 58%, rgba(238, 246, 251, 0.98) 100%);
  border-bottom: 1px solid var(--line);
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 42px;
  align-items: center;
}

.contact-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

.contact-hero .lead {
  max-width: 720px;
  font-size: 21px;
}

.contact-hero-card {
  padding: 24px;
  border: 1px solid rgba(3, 105, 161, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 39, 70, 0.08);
}

.contact-hero-card span,
.contact-hero-card small {
  display: block;
}

.contact-hero-card span {
  color: var(--muted);
  font-weight: 800;
}

.contact-hero-card a {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-family: "Lexend", Arial, sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.1;
}

.contact-hero-card small {
  margin-top: 16px;
  color: #475569;
  font-size: 16px;
  line-height: 1.35;
}

.contact-details-section {
  padding-top: 42px;
}

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

.contact-detail {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  min-width: 0;
}

.contact-detail:hover {
  color: inherit;
  border-color: rgba(3, 105, 161, 0.32);
  box-shadow: var(--shadow);
}

.contact-detail i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  border-radius: 8px;
  background: var(--blue);
  font-size: 24px;
}

.contact-detail span,
.contact-detail strong {
  display: block;
  min-width: 0;
}

.contact-detail span {
  color: var(--muted);
  font-weight: 800;
}

.contact-detail strong {
  margin-top: 5px;
  color: var(--navy);
  font-family: "Lexend", Arial, sans-serif;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-detail-wide {
  grid-column: 1 / -1;
}

.contact-detail-wide strong {
  max-width: 780px;
}

.contact-office {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  margin-top: 32px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-office h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.contact-office p {
  max-width: 780px;
  margin: 14px 0 0;
  color: #475569;
  font-size: 20px;
}

.contact-office-note {
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: #fbfdff;
}

.contact-office-note b,
.contact-office-note span {
  display: block;
}

.contact-office-note b {
  color: var(--navy);
  font-family: "Lexend", Arial, sans-serif;
}

.contact-office-note span {
  margin-top: 8px;
  color: #475569;
}

.legal-page .contact-hero {
  padding-bottom: 54px;
}

.legal-page .contact-hero-inner {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.legal-summary {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(3, 105, 161, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(15, 39, 70, 0.08);
}

.legal-summary div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}

.legal-summary i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--blue);
  border-radius: 8px;
  background: #eef6fb;
  font-size: 19px;
}

.legal-summary p {
  margin: 0;
}

.legal-summary span {
  display: block;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.legal-summary strong {
  display: block;
  color: var(--navy);
  font-family: "Lexend", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.25;
}

.legal-section {
  padding-top: 34px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px) 320px;
  gap: 32px;
  align-items: start;
}

.legal-article {
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.legal-article h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Lexend", Arial, sans-serif;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.18;
}

.legal-article h3 {
  margin: 30px 0 12px;
  color: var(--navy);
  font-family: "Lexend", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.legal-article p,
.legal-article li {
  color: #334155;
  font-size: 18px;
  line-height: 1.62;
}

.legal-article p {
  margin: 0 0 17px;
}

.legal-article a,
.legal-aside a {
  color: var(--blue);
  font-weight: 800;
}

.legal-details {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(3, 105, 161, 0.18);
  border-radius: 8px;
  background: #f8fbfd;
}

.legal-details div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
}

.legal-details span {
  color: #64748b;
  font-weight: 800;
}

.legal-details strong,
.legal-details a {
  color: var(--navy);
  font-weight: 800;
}

.legal-aside {
  position: sticky;
  top: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-aside strong {
  display: block;
  color: var(--navy);
  font-family: "Lexend", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.legal-aside p {
  margin: 12px 0 18px;
  color: #475569;
}

.legal-aside a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer {
  padding-top: 28px;
  padding-bottom: 28px;
  color: #475569;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-links a {
  color: var(--blue);
  font-weight: 700;
}

.service-page {
  background: var(--paper);
}

.service-hero {
  padding: 34px 34px 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 58%, rgba(238, 246, 251, 0.98) 100%);
  border-bottom: 1px solid var(--line);
}

.service-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: stretch;
}

.service-hero-main {
  min-width: 0;
  max-width: 960px;
}

.service-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.service-hero .lead {
  max-width: 780px;
  margin-top: 18px;
  font-size: 21px;
  line-height: 1.55;
}

.service-hero-panel {
  align-self: center;
  padding: 22px;
  border: 1px solid rgba(3, 105, 161, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 39, 70, 0.08);
}

.service-panel-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.service-panel-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  border-radius: 8px;
  background: var(--blue);
  font-size: 24px;
}

.service-panel-head strong {
  display: block;
  color: var(--navy);
  font-family: "Lexend", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.15;
}

.service-panel-head small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.25;
}

.service-panel-grid {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.service-panel-grid div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.service-panel-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--blue);
  border-radius: 8px;
  background: #eef6fb;
  font-size: 18px;
}

.service-panel-grid span {
  display: block;
  min-width: 0;
  color: #475569;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.service-panel-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: 18px;
  padding: 13px 14px;
  color: var(--white);
  border-radius: 8px;
  background: var(--navy-2);
  font-weight: 800;
}

.service-panel-link:hover {
  color: var(--white);
  background: var(--blue);
}

.service-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-left: 0;
}

.service-breadcrumbs a,
.service-breadcrumbs span {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: "Lexend", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: none;
}

.service-breadcrumbs a {
  gap: 7px;
  color: #0369a1;
}

.service-breadcrumbs a:hover {
  color: var(--navy-2);
}

.service-breadcrumbs span {
  color: #64748b;
}

.service-breadcrumbs span::before {
  content: "/";
  margin-right: 12px;
  color: var(--gold);
  font-weight: 900;
}

.service-content-section {
  padding-top: 34px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px) 300px;
  gap: 32px;
  align-items: start;
}

.service-article {
  min-width: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.service-article h1 {
  display: none;
}

.service-article > .detail,
.service-article > .detail > .content,
.service-article > .detail > .content > div {
  display: contents;
}

.service-article h2,
.service-article h3,
.service-article h4 {
  margin: 30px 0 14px;
  color: var(--navy);
  font-family: "Lexend", Arial, sans-serif;
  line-height: 1.18;
}

.service-article h2 {
  font-size: clamp(25px, 2.4vw, 34px);
}

.service-article h3 {
  font-size: 24px;
}

.service-article p,
.service-article li {
  color: #334155;
}

.service-article p {
  margin: 0 0 17px;
}

.service-article ul,
.service-article ol {
  margin: 0 0 22px;
  padding-left: 22px;
}

.service-article a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.service-article img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 0 24px;
  border-radius: 8px;
  object-fit: contain;
}

.service-article table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  overflow-wrap: anywhere;
}

.service-article th,
.service-article td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  vertical-align: top;
}

.service-article th {
  color: var(--navy);
  background: #eef6fb;
}

.service-nav {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-nav-title {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: "Lexend", Arial, sans-serif;
  font-weight: 700;
}

.service-nav a {
  display: block;
  padding: 10px 11px;
  border-radius: 8px;
  color: #475569;
  font-weight: 700;
  line-height: 1.2;
}

.service-nav a:hover,
.service-nav a.active {
  color: var(--blue);
  background: #eef6fb;
}

.mobile-menu-panel {
  width: 100vw !important;
  max-width: none;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(14, 165, 233, 0.22), transparent 30%),
    linear-gradient(160deg, #050b18 0%, #071225 54%, #0b2540 100%);
}

.mobile-menu-panel .offcanvas-header {
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-panel .offcanvas-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 18px 20px 22px;
}

.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: calc(100% - 60px);
  color: var(--white);
}

.mobile-menu-brand:hover {
  color: var(--white);
}

.mobile-menu-brand img {
  width: 112px;
  height: 60px;
  object-fit: contain;
  flex: 0 0 auto;
}

.mobile-menu-brand span {
  display: block;
  max-width: 170px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Lexend", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: 2px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 20px;
  flex: 0 0 auto;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.mobile-nav {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 10px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  font-family: "Lexend", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--white);
  border-color: rgba(14, 165, 233, 0.42);
  background: rgba(14, 165, 233, 0.16);
}

.mobile-nav i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #7dd3fc;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.12);
  font-size: 21px;
}

.mobile-menu-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.mobile-menu-primary,
.mobile-menu-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 8px;
  font-family: "Lexend", Arial, sans-serif;
  font-weight: 800;
}

.mobile-menu-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 32px rgba(3, 105, 161, 0.26);
}

.mobile-menu-primary:hover {
  color: var(--white);
  background: var(--blue-2);
}

.mobile-menu-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-secondary:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.mobile-menu-contact {
  margin-top: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.mobile-menu-contact span,
.mobile-menu-contact strong {
  display: block;
}

.mobile-menu-contact span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.mobile-menu-contact strong {
  margin-top: 6px;
  color: var(--white);
  font-family: "Lexend", Arial, sans-serif;
  font-size: 21px;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-2px);
}

@media (max-width: 1199.98px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar-context-text small {
    max-width: 360px;
  }

  .service-hero-inner {
    grid-template-columns: 1fr;
  }

  .service-hero-panel {
    max-width: 560px;
  }
}

@media (max-width: 991.98px) {
  .content {
    margin-left: 0;
  }

  .topbar,
  .hero,
  .service-hero,
  .contact-hero,
  .trust-strip,
  .section,
  .contact-band,
  .footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    padding-top: 42px;
    background: var(--paper);
  }

  .hero-visual {
    display: none;
  }

  .contact-actions,
  .footer-links {
    justify-content: flex-start;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-nav {
    position: static;
  }

  .service-hero-panel {
    max-width: none;
  }

  .contact-hero-inner,
  .contact-office,
  .legal-page .contact-hero-inner,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }

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

@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }

  .topbar {
    min-height: 68px;
    padding: 10px 16px;
    gap: 10px;
    background:
      radial-gradient(circle at 38% 0%, rgba(91, 211, 226, 0.18), transparent 34%),
      linear-gradient(160deg, #050b18 0%, #071225 54%, #0b2540 100%);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
  }

  .topbar .icon-btn {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-brand {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 6px;
    margin-right: 10px;
    margin-left: -6px;
  }

  .mobile-brand img {
    width: 96px;
    height: 50px;
    flex: 0 0 auto;
  }

  .mobile-brand span {
    display: block;
    min-width: 0;
    color: var(--white);
  }

  .mobile-brand strong {
    display: block;
    font-family: "Lexend", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
  }

  .mobile-brand small {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1.05;
  }

  .topbar-actions {
    display: none;
  }

  .hero .container-fluid {
    width: 100%;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
  }

  .service-hero .container-fluid,
  .contact-hero .container-fluid,
  .service-hero-inner {
    width: 100%;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
  }

  .hero h1,
  .service-hero h1,
  .contact-hero h1 {
    width: 100%;
    max-width: none;
    font-size: 32px;
    line-height: 1.1;
  }

  .lead {
    width: 100%;
    max-width: none;
    font-size: 19px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-head {
    display: block;
  }

  .service-article {
    padding: 22px;
  }

  .legal-article,
  .legal-summary,
  .legal-aside {
    padding: 22px;
  }

  .legal-details div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .section-head p {
    margin-top: 12px;
  }

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

  .process-list div {
    grid-template-columns: 48px 1fr;
  }
}

@media (max-width: 420px) {
  .topbar,
  .hero,
  .service-hero,
  .contact-hero,
  .trust-strip,
  .section,
  .contact-band,
  .footer {
    padding-right: 14px;
    padding-left: 14px;
  }

  .topbar {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .icon-link {
    display: none;
  }
}

@media (max-width: 360px) {
  .mobile-brand small {
    display: none;
  }
}
