:root {
  color-scheme: light;
  --bg: #f6f8f7;
  --paper: #ffffff;
  --ink: #111817;
  --ink-soft: #344541;
  --muted: #536963;
  --line: #dce6e3;
  --line-strong: #c5d4d0;
  --accent: #1f8f8a;
  --accent-deep: #156b68;
  --blue: #3d6fce;
  --gold: #c99542;
  --shadow: 0 18px 48px rgba(17, 24, 23, 0.12);
  --radius: 8px;
  --max: 1160px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(31, 143, 138, 0.09), transparent 34%),
    linear-gradient(270deg, rgba(61, 111, 206, 0.08), transparent 38%),
    repeating-linear-gradient(90deg, rgba(17, 24, 23, 0.025) 0 1px, transparent 1px 96px);
}

a {
  color: inherit;
  text-decoration-color: rgba(31, 143, 138, 0.45);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-deep);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: #ffffff;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 230, 227, 0.92);
  background: rgba(246, 248, 247, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand span:last-child {
  background: linear-gradient(90deg, #102033 0 42%, #087fdc 43% 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 850;
  -webkit-text-fill-color: transparent;
}

.brand-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 52px;
  height: 38px;
  color: transparent;
  font-size: 0;
  filter: drop-shadow(0 8px 12px rgba(8, 127, 220, 0.3));
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
}

.brand-mark::before {
  inset: 0 16px 2px 3px;
  background: linear-gradient(145deg, #f1f8fc 0%, #9fb9ca 45%, #3c6076 100%);
  clip-path: polygon(48% 0, 100% 100%, 72% 100%, 51% 48%, 22% 100%, 0 100%);
}

.brand-mark::after {
  left: 0;
  top: 16px;
  width: 52px;
  height: 16px;
  background: linear-gradient(135deg, #004da6 0%, #057fe0 58%, #27b5ff 100%);
  clip-path: polygon(3% 100%, 100% 0, 78% 36%, 18% 100%);
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  color: var(--accent-deep);
}

.section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 76px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  min-height: min(620px, calc(100vh - 130px));
  gap: 54px;
  padding-top: 46px;
  padding-bottom: 58px;
}

.hero-copy {
  max-width: 620px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: 6.8rem;
  font-weight: 850;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.7rem;
  font-weight: 820;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.1rem;
  font-weight: 820;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 1.32rem;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 23, 0.18);
}

.button.primary:hover {
  background: #20302e;
  color: #ffffff;
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  position: absolute;
  right: 8%;
  bottom: 6%;
  left: 10%;
  height: 30%;
  content: "";
  background: rgba(17, 24, 23, 0.12);
  filter: blur(28px);
  transform: skewX(-8deg);
}

.detail-visual {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(var(--shadow));
}

.split-band {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 52px;
  border-top: 1px solid var(--line);
}

.split-band > div:first-child p,
.proof-copy p,
.contact-band p,
.page-hero p,
.request-intro p,
.legal-page p,
.thanks-panel p {
  color: var(--ink-soft);
}

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

.service-item,
.proof-points > div,
.chat-request-panel,
.thanks-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(17, 24, 23, 0.06);
}

.service-item {
  min-height: 220px;
  padding: 24px;
}

.service-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.icon-line {
  display: block;
  width: 52px;
  height: 4px;
  margin-bottom: 42px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--gold));
}

.proof-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: start;
  gap: 52px;
  border-top: 1px solid var(--line);
}

.proof-points {
  display: grid;
  gap: 14px;
}

.proof-points > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) 1fr;
  gap: 20px;
  padding: 20px;
}

.proof-points strong {
  color: var(--ink);
}

.proof-points span {
  color: var(--muted);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
  padding: 36px;
  border: 1px solid #223936;
  border-radius: var(--radius);
  background: #111817;
  color: #ffffff;
}

.contact-band h2,
.contact-band p {
  color: #ffffff;
}

.contact-band h2 {
  margin-bottom: 10px;
  font-size: 3rem;
}

.contact-band p {
  max-width: 640px;
  margin-bottom: 0;
  color: #d6e2df;
}

.contact-band .button.primary {
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
}

.page-hero {
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.narrow {
  max-width: 940px;
}

.page-hero h1 {
  max-width: 11ch;
  font-size: 5.7rem;
}

.page-hero p {
  max-width: 720px;
  font-size: 1.18rem;
}

.booking-hero {
  padding-top: 54px;
  padding-bottom: 24px;
}

.booking-hero h1 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: 4.6rem;
}

.request-layout {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 46px;
  align-items: start;
  padding-top: 44px;
}

.request-intro {
  position: sticky;
  top: 116px;
}

.request-intro h2 {
  font-size: 3.2rem;
}

.contact-summary {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-summary a {
  color: var(--accent-deep);
  font-weight: 750;
}

.chat-request-panel {
  display: grid;
  gap: 18px;
  width: min(100%, 340px);
  padding: 28px;
}

.chat-request-panel h3 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: 2rem;
}

.chat-request-panel p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.panel-kicker {
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-points {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.request-points span {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f9fbfa;
  color: var(--ink);
  font-weight: 760;
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid #1f8f8a;
  outline-offset: 3px;
}

.legal-page {
  max-width: 860px;
}

.legal-header {
  margin-bottom: 42px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-header h1 {
  max-width: 14ch;
  font-size: 5rem;
}

.legal-page section {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.legal-page h2 {
  margin-bottom: 10px;
  font-size: 1.9rem;
}

.legal-page p {
  margin-bottom: 12px;
}

.legal-page p:last-child {
  margin-bottom: 0;
}

.thanks-page {
  display: grid;
  min-height: calc(100vh - 258px);
  place-items: center;
}

.thanks-panel {
  max-width: 720px;
  padding: 40px;
  text-align: center;
}

.thanks-panel h1 {
  max-width: none;
  font-size: 5rem;
}

.thanks-panel .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  gap: 32px;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 0.94rem;
}

.site-footer a {
  font-weight: 750;
}

@media (max-width: 1080px) {
  .split-band,
  .proof-section {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding: 18px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 3rem;
  }

  .page-hero h1,
  .legal-header h1,
  .thanks-panel h1 {
    font-size: 4.6rem;
  }

  .booking-hero h1 {
    font-size: 3.7rem;
  }

  .request-intro h2,
  .contact-band h2 {
    font-size: 2.7rem;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 680px;
  }

  .service-item {
    min-height: 0;
  }

  .icon-line {
    margin-bottom: 28px;
  }

  .request-intro {
    position: static;
  }

  .chat-request-panel {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .nav,
  .section,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 46px 0;
  }

  .hero {
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 18px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-lede {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .hero-visual {
    max-width: 205px;
    margin: 0 auto;
  }

  .page-hero h1,
  .legal-header h1,
  .thanks-panel h1 {
    font-size: 3rem;
  }

  .booking-hero {
    padding-top: 24px;
    padding-bottom: 8px;
  }

  .booking-hero h1 {
    font-size: 2.55rem;
  }

  .request-intro h2,
  .contact-band h2 {
    font-size: 2rem;
  }

  .request-layout {
    gap: 92px;
    padding-top: 24px;
  }

  .contact-summary {
    margin-top: 18px;
    padding-top: 16px;
  }

  .hero-actions,
  .contact-band,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 44px;
  }

  .nav-links {
    gap: 8px 12px;
    font-size: 0.86rem;
  }

  .proof-points > div {
    grid-template-columns: 1fr;
  }

  .chat-request-panel,
  .thanks-panel,
  .contact-band {
    padding: 22px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
