* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #071426; }
.site-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: #071426;
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  background: rgba(7,20,38,0.78);
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(90,167,214,0.26), transparent 44%),
    linear-gradient(90deg, transparent, rgba(159,212,242,0.10), transparent);
  transition: opacity .25s ease;
}
.site-header:hover {
  border-bottom-color: rgba(90,167,214,0.42);
  background: rgba(7,20,38,0.90);
  box-shadow: 0 18px 60px rgba(90,167,214,0.14);
}
.site-header:hover::before { opacity: 1; }
.header-inner {
  position: relative;
  z-index: 1;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-brand {
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  border-radius: 22px;
  padding: 6px 10px;
  transition: transform .22s ease, filter .22s ease;
}
.header-brand::after {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 28px;
  opacity: 0;
  background: radial-gradient(circle, rgba(90,167,214,0.34), transparent 68%);
  filter: blur(14px);
  transition: opacity .22s ease;
}
.header-brand:hover { transform: translateY(-1px); filter: drop-shadow(0 0 14px rgba(159,212,242,0.24)); }
.header-brand:hover::after { opacity: 1; }
.brand-logo { display: flex; align-items: center; color: white; }
.logo-img {
  display: block;
  width: min(430px, 100%);
  height: auto;
  object-fit: contain;
}
.brand-logo-small .logo-img {
  width: 74px;
  max-height: 62px;
}
.brand-logo-small.logo-variant-horizontal .logo-img {
  width: 230px;
  max-height: 58px;
}
.header-brand .brand-logo-small.logo-variant-horizontal .logo-img {
  width: 235px;
  max-height: 54px;
}
.contact-logo-only .brand-logo-small.logo-variant-horizontal .logo-img {
  width: 260px;
  max-height: 72px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.nav a::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle at center, rgba(90,167,214,0.28), transparent 68%);
  transition: opacity .22s ease;
}
.nav a:hover {
  color: white;
  transform: translateY(-1px);
  border-color: rgba(90,167,214,0.36);
  background: rgba(90,167,214,0.10);
  box-shadow: 0 0 24px rgba(90,167,214,0.18), inset 0 0 18px rgba(159,212,242,0.045);
}
.nav a:hover::before { opacity: 1; }
.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: transform .2s ease, color .2s ease, filter .2s ease;
}
.header-social-link .social-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
}
.header-social-link .social-icon-svg {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}
.header-social-link:hover {
  color: #9fd4f2;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 14px rgba(90,167,214,0.34));
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
  border: 1px solid rgba(90,167,214,0.45);
  background: rgba(90,167,214,0.12);
  color: white;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-1px); border-color: #5aa7d6; background: rgba(90,167,214,0.20); }
.button-primary { background: #5aa7d6; color: #071426; box-shadow: 0 24px 70px rgba(90,167,214,0.24); }
.button-primary:hover { background: #9fd4f2; }
.button-secondary { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.03); }
.button .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-left: 2px;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  transform: translateY(-1px);
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  color: white;
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.menu-button:hover {
  border-color: rgba(90,167,214,0.44);
  background: rgba(90,167,214,0.10);
  box-shadow: 0 0 24px rgba(90,167,214,0.18);
}
.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 18px 0;
  background: #071426;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,0.76);
  text-decoration: none;
  font-weight: 700;
}
.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 90px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(90,167,214,0.22), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(255,255,255,0.08), transparent 28%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -110px;
  top: 150px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,0.10);
  transform: rotate(45deg);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.74);
  font-size: 14px;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: #5aa7d6; }
h1, h2, h3, p { margin: 0; }
h1 {
  max-width: 850px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: .95;
  letter-spacing: -0.055em;
  font-weight: 950;
}
.hero-option {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 12%, rgba(90,167,214,0.14), transparent 30%),
    rgba(255,255,255,0.035);
  box-shadow: 0 26px 80px rgba(0,0,0,0.24);
}
.hero-option::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .10;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.22) .6px, transparent .6px);
  background-size: 4px 4px;
}
.hero-option h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: .98;
  letter-spacing: -0.05em;
  font-weight: 950;
}
.hero-option p {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: rgba(255,255,255,0.66);
  font-size: 18px;
  line-height: 1.75;
}
.hero-option-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-option-image {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 42px;
  align-items: center;
}
.hero-option-image-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  background: #0c1b2f;
}
.hero-option-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,20,38,0.72));
  pointer-events: none;
}
.hero-option-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-option-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.hero-option-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.74);
  line-height: 1.6;
}
.hero-option-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: #5aa7d6;
  box-shadow: 0 0 14px rgba(90,167,214,0.55);
}
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 34px;
  background: #0c1b2f;
  box-shadow: 0 30px 90px rgba(0,0,0,.36);
}
.card-texture {
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.06), transparent 28%),
    linear-gradient(135deg, rgba(90,167,214,0.12), transparent 36%),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
}
.paper-grain::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .10;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.22) .6px, transparent .6px);
  background-size: 4px 4px;
  mix-blend-mode: screen;
}
.glow {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(90,167,214,0.15);
  filter: blur(44px);
}
.label {
  color: #9fd4f2;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  font-weight: 900;
}
.section {
  position: relative;
  overflow: visible;
  padding: 96px 0;
}
.section > .container {
  position: relative;
  z-index: 1;
}
.section-lines {
  position: absolute;
  inset: -70px 0;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}
.line-box {
  position: absolute;
  border: 1px solid rgba(90,167,214,0.13);
  border-radius: 30px;
  transform: rotate(45deg);
  box-shadow: 0 0 36px rgba(90,167,214,0.045);
}
.line-box-1 { width: 320px; height: 320px; }
.line-box-2 { width: 200px; height: 200px; border-color: rgba(159,212,242,0.10); }
.line-box-3 { width: 120px; height: 120px; border-color: rgba(255,255,255,0.075); }
.section-lines-a .line-box-1 { right: -150px; top: 18%; }
.section-lines-a .line-box-2 { left: 7%; top: 42%; }
.section-lines-a .line-box-3 { right: 22%; bottom: 12%; }
.section-lines-b .line-box-1 { left: -155px; top: 18%; }
.section-lines-b .line-box-2 { right: 9%; top: 36%; }
.section-lines-b .line-box-3 { left: 28%; bottom: 12%; }
.section-lines-c .line-box-1 { right: -160px; top: 28%; }
.section-lines-c .line-box-2 { left: 10%; bottom: 14%; }
.section-lines-c .line-box-3 { right: 34%; top: 12%; }
.section-lines-d .line-box-1 { left: -150px; top: 34%; }
.section-lines-d .line-box-2 { right: 8%; bottom: 16%; }
.section-lines-d .line-box-3 { left: 31%; top: 14%; }
.section-lines-e .line-box-1 { right: -155px; top: 16%; }
.section-lines-e .line-box-2 { left: 8%; bottom: 18%; }
.section-lines-e .line-box-3 { right: 31%; top: 47%; }
.section-head { max-width: 720px; margin-bottom: 46px; }
.section-head-wide { max-width: 100%; width: 100%; }
.section-head-wide .section-title { white-space: nowrap; }
.section-title { font-size: clamp(36px, 5vw, 58px); line-height: 1; letter-spacing: -0.04em; font-weight: 950; }
.section-copy { margin-top: 20px; color: rgba(255,255,255,0.65); font-size: 18px; line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card,
.step-card,
.contact-panel {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.035);
  border-radius: 28px;
}
.service-card { position: relative; overflow: hidden; padding: 30px; transition: transform .2s ease, border-color .2s ease; }
.service-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.service-card-head .icon-box {
  flex: 0 0 58px;
  margin-bottom: 0;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(90,167,214,0.40); }
.icon-box {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 1px solid rgba(90,167,214,0.35);
  border-radius: 18px;
  background: rgba(90,167,214,0.10);
  color: #9fd4f2;
}
.icon-svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 26px; font-weight: 950; margin: 0; }
.service-card p, .step-card p { margin-top: 14px; color: rgba(255,255,255,0.63); line-height: 1.7; }
.service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.45;
}
.service-list li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 999px;
  background: #5aa7d6;
  box-shadow: 0 0 14px rgba(90,167,214,0.55);
}
.workflow-alt {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(90,167,214,0.18), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
}
.workflow-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .10;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.22) .6px, transparent .6px);
  background-size: 4px 4px;
}
.workflow-alt-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  align-items: start;
}
.workflow-alt-intro {
  position: sticky;
  top: 120px;
}
.workflow-alt-intro .section-copy { max-width: 420px; }
.workflow-contact-button {
  margin-top: 28px;
}
.workflow-timeline {
  position: relative;
  display: grid;
  gap: 16px;
}
.workflow-timeline::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 30px;
  width: 1px;
  background: linear-gradient(180deg, #5aa7d6, rgba(159,212,242,0.24), transparent);
}
.workflow-row {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: stretch;
}
.workflow-dot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(90,167,214,0.40);
  border-radius: 22px;
  background: #0c1b2f;
  color: #9fd4f2;
  font-weight: 950;
  box-shadow: 0 0 30px rgba(90,167,214,0.14);
}
.workflow-row-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  background: rgba(7,20,38,0.58);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.workflow-row-card:hover {
  transform: translateX(4px);
  border-color: rgba(90,167,214,0.42);
  background: rgba(12,27,47,0.78);
}
.workflow-row-card h3 { font-size: 24px; font-weight: 950; }
.workflow-row-card p { margin-top: 10px; color: rgba(255,255,255,0.64); line-height: 1.7; }
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 34px;
  background: #0c1b2f;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.about-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,20,38,0.88));
  pointer-events: none;
}
.about-photo {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-photo-label {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(7,20,38,0.72);
  backdrop-filter: blur(12px);
}
.about-photo-label-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(90,167,214,0.28);
  border-radius: 18px;
  background: rgba(90,167,214,0.10);
}
.about-photo-label-logo img {
  display: block;
  width: 48px;
  max-height: 48px;
  object-fit: contain;
}
.about-photo-label-text { min-width: 0; }
.about-photo-label strong { display: block; font-size: 24px; }
.about-photo-label span { display: block; margin-top: 6px; color: rgba(255,255,255,0.68); }
.about-content-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 34px;
  background: rgba(255,255,255,0.035);
}
.about-content-card p {
  margin-top: 20px;
  color: rgba(255,255,255,0.68);
  font-size: 18px;
  line-height: 1.78;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: rgba(0,0,0,0.18);
  color: rgba(255,255,255,0.74);
  line-height: 1.55;
  font-size: 14px;
}
.checkmark { color: #5aa7d6; font-weight: 900; }
.social-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 34px;
  background: #0c1b2f;
  box-shadow: 0 30px 90px rgba(0,0,0,.24);
}
.social-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}
.social-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.social-link {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  background: rgba(255,255,255,0.035);
  color: white;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.social-link::before {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(90,167,214,0.12);
  filter: blur(18px);
  transition: background .2s ease;
}
.social-link:hover {
  transform: translateY(-5px);
  border-color: rgba(90,167,214,0.42);
  background: rgba(90,167,214,0.08);
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}
.social-link:hover::before { background: rgba(90,167,214,0.22); }
.social-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(90,167,214,0.35);
  border-radius: 18px;
  background: rgba(90,167,214,0.10);
  color: #9fd4f2;
  line-height: 1;
}
.social-icon-svg {
  width: 28px;
  height: 28px;
  display: block;
  flex: 0 0 28px;
}
.social-link strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 24px;
  font-size: 20px;
}
.social-link span:last-child {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.60);
  font-size: 14px;
  line-height: 1.55;
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  background: rgba(255,255,255,0.035);
}
.review-card::before {
  content: "“";
  position: absolute;
  right: 22px;
  top: 8px;
  color: rgba(90,167,214,0.16);
  font-size: 100px;
  line-height: 1;
  font-weight: 950;
}
.review-stars { color: #9fd4f2; letter-spacing: .18em; font-size: 14px; }
.review-card p { position: relative; margin-top: 20px; color: rgba(255,255,255,0.70); line-height: 1.75; }
.review-card strong { display: block; margin-top: 24px; font-size: 16px; }
.contact-card { padding: 50px; }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .86fr 1.14fr; gap: 34px; align-items: start; }
.contact-panel,
.contact-form {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  background: rgba(0,0,0,0.25);
}
.contact-panel { padding: 28px; }
.contact-name { display: flex; align-items: center; gap: 16px; margin: 28px 0 22px; }
.contact-logo-only { margin-bottom: 24px; }
.contact-intro {
  margin-top: 22px;
  color: rgba(255,255,255,0.66);
  font-size: 17px;
  line-height: 1.75;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
  color: white;
  text-decoration: none;
  font-weight: 750;
  transition: border-color .2s ease, background .2s ease;
}
.contact-link:hover { border-color: rgba(90,167,214,0.45); background: rgba(90,167,214,0.08); }
.contact-link .icon-box {
  flex: 0 0 44px;
  margin: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-link .icon-box .icon-svg {
  width: 22px;
  height: 22px;
  display: block;
}
.contact-form { padding: 30px; }
.form-title { font-size: 28px; font-weight: 950; letter-spacing: -0.02em; }
.form-note { margin-top: 8px; color: rgba(255,255,255,0.58); line-height: 1.65; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { color: rgba(255,255,255,0.78); font-size: 13px; font-weight: 850; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
  color: white;
  font: inherit;
  outline: none;
  padding: 14px 15px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  line-height: 1.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%239fd4f2' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px 18px;
}
.form-field select::-ms-expand { display: none; }
.form-field select option { color: #071426; }
.form-field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.38); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(90,167,214,0.70);
  background: rgba(255,255,255,0.075);
  box-shadow: 0 0 0 4px rgba(90,167,214,0.12);
}
.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit { width: 100%; min-height: 54px; margin-top: 18px; cursor: pointer; }
.form-message {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  line-height: 1.6;
}
.form-message.is-success {
  display: block;
  border: 1px solid rgba(90,167,214,0.35);
  background: rgba(90,167,214,0.10);
  color: rgba(255,255,255,0.82);
}
.form-message.is-error {
  display: block;
  border: 1px solid rgba(255,120,120,0.35);
  background: rgba(255,120,120,0.10);
  color: rgba(255,255,255,0.86);
}
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 28px 0;
  color: rgba(255,255,255,0.50);
  font-size: 14px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-inner > span {
  min-height: 40px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.4;
}
.footer-inner > span:first-child { justify-self: start; }
.footer-socials {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-inner > span:last-child { justify-self: end; text-align: right; }
.footer-link {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color .2s ease, text-shadow .2s ease;
}
.footer-link:hover {
  color: #9fd4f2;
  text-shadow: 0 0 18px rgba(90,167,214,0.34);
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: transform .2s ease, color .2s ease, filter .2s ease;
}
.footer-social-link .social-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
}
.footer-social-link .social-icon-svg {
  width: 21px;
  height: 21px;
  flex-basis: 21px;
}
.footer-social-link:hover {
  color: #9fd4f2;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 14px rgba(90,167,214,0.34));
}

@media (max-width: 980px) {
  .nav { display: none; }
  .header-actions { gap: 10px; }
  .header-social-link .social-mark {
    width: 36px;
    height: 36px;
    border-radius: 13px;
  }
  .header-social-link .social-icon-svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }
  .menu-button { display: inline-flex; }
  .hero-option-image,
  .workflow-alt-grid,
  .about-grid,
  .social-card-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 125px; }
  .hero::after { display: none; }
  .service-grid, .reviews-grid, .social-links { grid-template-columns: 1fr; }
  .about-photo-wrap, .about-photo { min-height: 440px; }
  .workflow-alt-intro { position: static; }
  .workflow-alt { padding: 30px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { gap: 8px; }
  .header-brand { padding: 4px 0; }
  .header-brand .brand-logo-small.logo-variant-horizontal .logo-img { width: 158px; }
  .header-socials { gap: 6px; }
  .header-social-link .social-mark {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }
  .header-social-link .social-icon-svg {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }
  .menu-button {
    width: 40px;
    height: 40px;
  }
  .form-grid { grid-template-columns: 1fr; }
  .about-content-card, .social-card, .hero-option { padding: 26px; }
  .contact-card { padding: 0; }
  .contact-grid { gap: 18px; }
  .contact-panel,
  .contact-form {
    width: 100%;
    padding: 20px;
    border-radius: 22px;
  }
  .contact-panel .section-title { font-size: clamp(34px, 11vw, 46px); }
  .contact-logo-only {
    justify-content: flex-start;
    margin: 24px 0 18px;
  }
  .contact-logo-only .brand-logo-small.logo-variant-horizontal .logo-img {
    width: min(230px, 100%);
    max-height: 64px;
  }
  .contact-link {
    width: 100%;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    font-size: 14px;
    overflow-wrap: anywhere;
  }
  .contact-link .icon-box {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }
  .form-title { font-size: 25px; }
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; }
  .form-submit { padding: 0 18px; }
  .hero-option-image-wrap,
  .hero-option-image-wrap img { min-height: 300px; }
  .section-head-wide .section-title { white-space: normal; }
  .about-points, .service-list { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .workflow-row { grid-template-columns: 52px 1fr; gap: 14px; }
  .workflow-dot { width: 52px; height: 52px; border-radius: 18px; }
  .workflow-timeline::before { left: 25px; }
  .workflow-row-card { padding: 20px; }
  .hero-option-actions { flex-direction: column; align-items: stretch; }
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
  }
  .footer-inner > span:first-child,
  .footer-socials,
  .footer-inner > span:last-child {
    justify-self: start;
    text-align: left;
  }
  .about-photo-label {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 12px;
    padding: 14px;
  }
  .about-photo-label-logo {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
  .about-photo-label-logo img {
    width: 42px;
    max-height: 42px;
  }
  .about-photo-label strong {
    font-size: 20px;
  }
}

@media (max-width: 420px) {
  .header-brand .brand-logo-small.logo-variant-horizontal .logo-img { width: 132px; }
  .header-socials { gap: 4px; }
  .header-social-link .social-mark {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }
  .header-social-link .social-icon-svg {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }
  .menu-button {
    width: 38px;
    height: 38px;
  }
}
