:root {
  --navy: #062967;
  --navy-2: #0a397d;
  --cyan: #10aee8;
  --ink: #142033;
  --muted: #647084;
  --line: #dbe4ec;
  --paper: #f7f9fb;
  --soft-blue: #eef8fc;
  --surface: #ffffff;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(6, 41, 103, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(190px, 250px) 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 236, 0.9);
  backdrop-filter: blur(14px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-link img {
  width: min(205px, 100%);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.header-cta,
.primary-button,
.text-link {
  text-decoration: none;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--navy);
}

.header-cta,
.primary-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.header-cta:hover,
.primary-button:hover {
  background: var(--navy-2);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.hero-section,
.work-section,
.package-section,
.sme-section,
.future-section,
.contact-section,
.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(480px, 0.9fr);
  gap: 48px;
  align-items: center;
  padding: 76px 0 70px;
}

.hero-copy {
  min-width: 0;
}

h1,
h2,
h3,
p,
li,
span,
strong,
a {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 620px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  font-weight: 850;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1;
  font-weight: 830;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.hero-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.hero-image,
.package-image {
  min-width: 0;
  margin: 0;
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  background: var(--soft-blue);
  border: 1px solid #ccebf6;
}

.hero-image img,
.package-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-strip p {
  min-height: 96px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px 24px;
  color: var(--ink);
  border-right: 1px solid var(--line);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 780;
  line-height: 1.15;
}

.signal-strip p:last-child {
  border-right: 0;
}

.work-section,
.package-section,
.sme-section,
.future-section,
.contact-section {
  padding: 86px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.work-grid article {
  min-height: 280px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  padding: 28px;
  background: #fff;
}

.work-grid span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.work-grid p {
  max-width: 310px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.package-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.58fr);
  gap: 54px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.package-copy p {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 760;
  line-height: 1.15;
}

.package-copy ul {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.package-copy li {
  padding: 14px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 18px;
  font-weight: 650;
}

.sme-section {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 0.92fr);
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.record-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.record-tags span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 750;
  max-width: 100%;
}

.future-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.62fr);
  gap: 46px;
  align-items: end;
  color: #fff;
  background: var(--navy);
  max-width: none;
  width: 100%;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
}

.future-section h2 {
  color: #fff;
}

.future-section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.55;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(430px, 0.78fr);
  gap: 48px;
  align-items: start;
}

.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.contact-copy address {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.contact-copy address strong {
  color: var(--navy);
}

.contact-copy address a {
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(16, 174, 232, 0.14);
}

.full-field {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer {
  min-height: 96px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 26px 0 36px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-footer span:first-of-type {
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-section,
  .package-section,
  .sme-section,
  .future-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .future-section {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 18px;
  }

  .brand-link img {
    width: 190px;
  }

  .header-cta,
  .primary-button {
    width: 100%;
  }

  .hero-section,
  .work-section,
  .package-section,
  .sme-section,
  .contact-section,
  .site-footer,
  .signal-strip {
    width: min(358px, calc(100% - 32px));
  }

  .future-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-section {
    gap: 34px;
    padding-top: 42px;
  }

  h1 {
    max-width: 360px;
    font-size: 42px;
    line-height: 1;
  }

  h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .hero-copy p,
  .future-section p,
  .contact-copy p {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-image::before {
    inset: 12px -8px -12px 8px;
  }

  .hero-image img,
  .package-image img {
    aspect-ratio: 4 / 3;
  }

  .signal-strip,
  .work-grid,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .signal-strip p {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip p:last-child {
    border-bottom: 0;
  }

  .work-section,
  .package-section,
  .sme-section,
  .future-section,
  .contact-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .work-grid article {
    min-height: 210px;
    padding: 22px;
  }

  .package-copy p {
    font-size: 22px;
  }

  .sme-section h2,
  .future-section h2,
  .future-section p {
    max-width: 340px;
  }

  .record-tags span {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    text-align: center;
  }

  .contact-form {
    padding: 16px;
  }

  .site-footer {
    text-align: left;
  }
}
