:root {
  --brand: #0645a8;
  --brand-dark: #052c6f;
  --brand-soft: #eaf2ff;
  --aqua: #00a7c7;
  --amber: #f3b431;
  --ink: #172033;
  --muted: #667085;
  --line: #d9e2ef;
  --surface: #ffffff;
  --surface-alt: #f6f9fc;
  --shadow: 0 18px 44px rgba(13, 37, 76, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 226, 239, 0.8);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(15, 32, 60, 0.08);
}

.brand {
  width: 190px;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  color: #344056;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "Sora", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header-cta,
.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 14px 30px rgba(6, 69, 168, 0.22);
}

.btn.secondary {
  color: var(--brand);
  background: #fff;
  border-color: var(--line);
}

.btn.light {
  color: var(--brand);
  background: #fff;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.header-cta svg,
.btn svg,
.text-link svg,
.trust-strip svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 54px;
  min-height: calc(100vh - 78px);
  padding-top: 56px;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", Arial, sans-serif;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(34px, 4.8vw, 60px);
}

h2 {
  font-size: clamp(26px, 3vw, 40px);
}

h3 {
  font-size: 18px;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.hero-copy > p {
  max-width: 630px;
  margin-top: 20px;
  font-size: 16px;
}

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

.hero-media {
  position: relative;
  min-height: 590px;
}

.hero-media::before {
  position: absolute;
  inset: 22px -16px -16px 36px;
  content: "";
  background: linear-gradient(135deg, rgba(0, 167, 199, 0.18), rgba(243, 180, 49, 0.22));
  border-radius: var(--radius);
}

.hero-media > img {
  position: relative;
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card {
  position: absolute;
  left: -28px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 315px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: lift 4s ease-in-out infinite;
}

.quote-card svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--brand);
}

.quote-card span,
.product-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-card strong {
  display: block;
  font-family: "Sora", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 32px;
  gap: 12px;
}

.trust-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 70px;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid #d8e7ff;
  border-radius: var(--radius);
  font-family: "Sora", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.inner-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 24px 82px;
}

.inner-hero-copy {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.breadcrumb-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: "Sora", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.breadcrumb-line a {
  color: var(--brand);
}

.breadcrumb-line svg {
  width: 14px;
  height: 14px;
}

.inner-hero-copy .eyebrow {
  justify-content: center;
}

.inner-hero-copy h1 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(32px, 4vw, 52px);
}

.inner-hero-copy p {
  max-width: 690px;
  margin: 18px auto 0;
  font-size: 16px;
}

.inner-hero-visual {
  position: relative;
  margin-top: 42px;
}

.inner-hero-visual::before {
  position: absolute;
  inset: 22px 34px -18px;
  content: "";
  background: linear-gradient(135deg, rgba(0, 167, 199, 0.16), rgba(243, 180, 49, 0.2));
  border-radius: var(--radius);
}

.inner-hero-visual img {
  position: relative;
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inner-hero-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  color: #fff;
  background: var(--brand);
  border-radius: var(--radius);
  font-family: "Sora", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(7, 22, 47, 0.18);
}

.inner-hero-card.secondary {
  right: 28px;
  left: auto;
  color: var(--brand);
  background: #fff;
}

.inner-hero-card svg {
  width: 18px;
  height: 18px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 54px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 24px 74px;
}

.page-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(32px, 4vw, 52px);
}

.page-hero-copy p {
  max-width: 670px;
  margin-top: 20px;
  font-size: 16px;
}

.page-hero-media {
  position: relative;
}

.page-hero-media::before {
  position: absolute;
  inset: 18px -14px -14px 32px;
  content: "";
  background: linear-gradient(135deg, rgba(0, 167, 199, 0.16), rgba(243, 180, 49, 0.2));
  border-radius: var(--radius);
}

.page-hero-media img {
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: start;
}

.story-copy p {
  margin-top: 16px;
}

.story-panel {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(16, 39, 73, 0.07);
}

.story-panel div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-family: "Sora", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.story-panel svg {
  width: 20px;
  height: 20px;
}

.story-panel strong {
  display: block;
  margin-top: 18px;
  font-family: "Sora", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
}

.story-panel p {
  margin-top: 14px;
}

.values-section {
  max-width: none;
  background: var(--surface-alt);
}

.values-section > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.value-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(16, 39, 73, 0.06);
}

.icon-box.static {
  position: static;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border: 0;
}

.value-card p {
  margin-top: 10px;
}

.capability-section {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: center;
  gap: 54px;
}

.capability-media img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.capability-copy p {
  margin-top: 16px;
}

.capability-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.capability-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.capability-list svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--brand);
}

.capability-list span {
  color: #344056;
  font-size: 14px;
  font-weight: 700;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 0;
}

.stats-band div {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(16, 39, 73, 0.06);
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  color: var(--brand);
  font-family: "Sora", Arial, sans-serif;
  font-size: 18px;
}

.stats-band span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.service-detail-section {
  display: grid;
  gap: 30px;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  align-items: center;
  gap: 38px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(16, 39, 73, 0.07);
}

.service-detail.reverse .service-detail-media {
  order: 2;
}

.service-detail-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-detail-copy {
  padding: 10px 10px 10px 0;
}

.service-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: var(--radius);
  font-family: "Sora", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.service-detail-copy p {
  margin-top: 14px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #344056;
  font-size: 14px;
  font-weight: 700;
}

.check-list svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--brand);
}

.support-section {
  max-width: none;
  background: var(--surface-alt);
}

.support-section > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.support-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(16, 39, 73, 0.06);
}

.support-card > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--brand);
}

.support-card p {
  margin-top: 10px;
}

.industries-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: start;
  gap: 48px;
}

.industries-copy p {
  margin-top: 16px;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid #d8e7ff;
  border-radius: var(--radius);
  font-family: "Sora", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.works-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: start;
  gap: 46px;
}

.works-intro-copy p {
  margin-top: 16px;
}

.works-price-panel {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(16, 39, 73, 0.07);
}

.works-price-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 16px;
}

.works-price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.works-price-list span {
  color: #344056;
  font-size: 14px;
  font-weight: 800;
}

.works-price-list strong {
  color: var(--brand);
  font-family: "Sora", Arial, sans-serif;
  font-size: 14px;
  white-space: nowrap;
}

.works-gallery-section {
  max-width: none;
  background: var(--surface-alt);
}

.works-gallery-section > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.work-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(16, 39, 73, 0.06);
}

.work-card.large {
  grid-column: span 2;
}

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

.work-card.large img {
  height: 340px;
}

.work-card div {
  padding: 20px;
}

.work-card span {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-card h3 {
  margin-top: 8px;
}

.work-card p {
  margin-top: 10px;
}

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

.method-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(16, 39, 73, 0.06);
}

.method-card > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--brand);
}

.method-card p {
  margin-top: 10px;
}

.shop-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 44px;
}

.shop-intro-top {
  padding-top: 70px;
}

.shop-breadcrumb {
  justify-content: flex-start;
  margin-bottom: 16px;
}

.shop-intro-copy p {
  margin-top: 16px;
}

.shop-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  background: var(--brand-soft);
  border: 1px solid #d8e7ff;
  border-radius: var(--radius);
}

.shop-note svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  color: var(--brand);
}

.shop-note p {
  color: #344056;
  font-weight: 700;
}

.shop-section {
  max-width: none;
  padding-top: 0;
}

.shop-section > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.shop-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(16, 39, 73, 0.06);
}

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

.shop-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.shop-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-card h3 {
  margin-top: 7px;
  font-size: 16px;
}

.shop-card strong {
  display: block;
  margin-top: 12px;
  color: var(--brand);
  font-family: "Sora", Arial, sans-serif;
}

.shop-card .btn {
  width: 100%;
  margin-top: auto;
  padding-right: 12px;
  padding-left: 12px;
}

.shop-card strong + .btn {
  margin-top: 18px;
}

.checkout-section {
  padding-top: 70px;
}

.checkout-copy {
  max-width: 760px;
  margin-bottom: 34px;
}

.checkout-copy p {
  margin-top: 16px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  align-items: start;
  gap: 30px;
}

.order-summary,
.checkout-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.order-summary {
  display: grid;
  gap: 18px;
  padding: 30px;
  position: sticky;
  top: 104px;
}

.order-summary > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.order-summary h2 {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.summary-lines {
  display: grid;
  gap: 14px;
}

.summary-lines > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.summary-lines span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.summary-lines strong {
  color: var(--brand);
  font-family: "Sora", Arial, sans-serif;
  font-size: 18px;
  white-space: nowrap;
}

.summary-lines .summary-total {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-color: transparent;
}

.summary-total span,
.summary-total strong {
  color: #fff;
}

.summary-total strong {
  font-size: 24px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 38px 64px 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.quantity-control button,
.quantity-control input {
  height: 38px;
  border: 0;
  text-align: center;
  font-family: "Sora", Arial, sans-serif;
  font-weight: 800;
}

.quantity-control button {
  color: var(--brand);
  background: var(--brand-soft);
  cursor: pointer;
}

.quantity-control input {
  width: 100%;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.checkout-form {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: #344056;
  font-size: 13px;
  font-weight: 800;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.checkout-form textarea {
  resize: vertical;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(6, 69, 168, 0.1);
}

.checkout-form .btn {
  width: 100%;
  margin-top: 4px;
}

.checkout-form .btn:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.payment-result-section {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding-top: 70px;
}

.payment-result-card {
  width: min(100%, 760px);
  padding: 36px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.payment-result-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
}

.payment-result-card.is-failed .payment-result-icon {
  background: #b42318;
}

.payment-result-icon svg {
  width: 34px;
  height: 34px;
}

.payment-result-card .eyebrow {
  justify-content: center;
}

.payment-result-card h1 {
  margin-top: 4px;
}

.payment-result-card p {
  max-width: 590px;
  margin: 16px auto 0;
}

.payment-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
  text-align: left;
}

.payment-details div {
  padding: 16px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.payment-details span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-details strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-family: "Sora", Arial, sans-serif;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.payment-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.contact-hero {
  padding-bottom: 42px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: start;
  gap: 48px;
  padding-top: 44px;
}

.contact-info p {
  margin-top: 16px;
}

.contact-card-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(16, 39, 73, 0.06);
}

.contact-card > svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 3px;
  color: var(--brand);
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: "Sora", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-heading span {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-heading h3 {
  margin-top: 6px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #344056;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(6, 69, 168, 0.1);
}

.contact-form .btn {
  width: 100%;
  margin-top: 4px;
}

.location-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 24px;
  padding-top: 0;
}

.location-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  background: var(--brand-soft);
  border: 1px solid #d8e7ff;
  border-radius: var(--radius);
}

.location-panel p {
  margin-top: 14px;
}

.location-panel .btn {
  align-self: flex-start;
}

.map-frame {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(16, 39, 73, 0.06);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

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

.section-heading p {
  margin-top: 14px;
}

.product-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
}

.product-heading > div {
  max-width: 720px;
}

.product-heading .btn {
  flex: 0 0 auto;
  margin-bottom: 4px;
}

.services-section,
.product-section {
  max-width: none;
  background: var(--surface-alt);
}

.services-section > *,
.product-section > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

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

.service-card,
.product-card,
.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(16, 39, 73, 0.06);
}

.service-card {
  position: relative;
  overflow: hidden;
}

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

.service-card h3,
.service-card p {
  padding-right: 22px;
  padding-left: 22px;
}

.service-card h3 {
  margin-top: 26px;
}

.service-card p {
  margin-top: 10px;
  padding-bottom: 24px;
}

.icon-box {
  position: absolute;
  top: 198px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--brand);
  border: 5px solid #fff;
  border-radius: var(--radius);
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: center;
  gap: 58px;
}

.split-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-copy p {
  margin-top: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--brand);
  font-family: "Sora", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

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

.product-card {
  overflow: hidden;
}

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

.product-card div {
  padding: 18px;
}

.product-card h3 {
  margin-top: 6px;
  font-size: 16px;
}

.product-card strong {
  display: block;
  margin-top: 12px;
  color: var(--brand);
  font-family: "Sora", Arial, sans-serif;
}

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

.process-step {
  padding: 26px;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--brand);
  background: var(--brand-soft);
  border-radius: var(--radius);
  font-family: "Sora", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.process-step p {
  margin-top: 10px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto 88px;
  padding: 42px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #07306f 68%, #05265b);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-band .eyebrow,
.cta-band p {
  color: #fff;
}

.cta-band .eyebrow::before {
  background: var(--amber);
}

.cta-band h2 {
  max-width: 700px;
}

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

.site-footer {
  padding: 56px clamp(20px, 4vw, 56px) 26px;
  background: #07162f;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, 1fr);
  gap: 36px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand img {
  width: 160px;
}

.footer-brand p {
  max-width: 380px;
  margin-top: 18px;
  color: #cbd5e1;
}

.footer-links,
.footer-social {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h3,
.footer-social h3 {
  margin: 0 0 8px;
  font-family: "Sora", Arial, sans-serif;
  font-size: 15px;
}

.footer-links a,
.footer-links span {
  color: #cbd5e1;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social div {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.footer-social .social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  margin: 38px auto 0;
  padding-top: 22px;
  color: #9fb0c7;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes lift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1040px) {
  .header-cta {
    display: none;
  }

  .hero,
  .split-section,
  .inner-hero,
  .page-hero,
  .story-section,
  .capability-section,
  .service-detail,
  .industries-section,
  .works-intro-section,
  .shop-intro-section,
  .checkout-layout,
  .contact-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .service-detail.reverse .service-detail-media {
    order: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: auto;
  }

  .service-grid,
  .value-grid,
  .support-grid,
  .process-grid,
  .works-grid,
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid,
  .shop-grid,
  .stats-band,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 13px 18px;
  }

  .brand {
    width: 158px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    margin: 0;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    gap: 14px;
  }

  .main-nav a::after {
    display: none;
  }

  .section-pad {
    padding: 62px 18px;
  }

  .inner-hero {
    padding: 48px 18px 62px;
  }

  .inner-hero-visual {
    margin-top: 32px;
  }

  .page-hero {
    gap: 34px;
    padding: 52px 18px 62px;
  }

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

  h1 {
    font-size: 36px;
  }

  .service-grid,
  .value-grid,
  .support-grid,
  .process-grid,
  .product-grid,
  .shop-grid,
  .works-grid,
  .method-grid,
  .stats-band,
  .trust-strip,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .work-card.large {
    grid-column: span 1;
  }

  .hero-media > img,
  .split-media img,
  .inner-hero-visual img,
  .page-hero-media img,
  .capability-media img,
  .service-detail-media img,
  .work-card.large img,
  .work-card img,
  .shop-card img {
    height: 390px;
  }

  .inner-hero-visual::before {
    inset: 16px 14px -12px;
  }

  .inner-hero-card,
  .inner-hero-card.secondary {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }

  .quote-card {
    right: 14px;
    left: 14px;
    bottom: 16px;
    max-width: none;
  }

  .split-section,
  .capability-section,
  .industries-section,
  .works-intro-section,
  .shop-intro-section,
  .checkout-layout,
  .contact-section,
  .location-section {
    gap: 34px;
  }

  .works-price-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-lines > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .payment-result-card {
    padding: 26px 18px;
  }

  .payment-details {
    grid-template-columns: 1fr;
  }

  .product-heading,
  .cta-band,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band {
    margin: 0 18px 62px;
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
