:root {
  --brand-950: #071727;
  --brand-900: #0d2238;
  --brand-800: #163754;
  --brand-700: #26648f;
  --accent-600: #d67a34;
  --accent-500: #ef9757;
  --accent-100: #f8e4d4;
  --sand-50: #fbfcfd;
  --sand-100: #f4f7fa;
  --sky-50: #eef3f7;
  --sky-100: #dde7ef;
  --ink-900: #162535;
  --ink-700: #425266;
  --ink-500: #637388;
  --line: #d7e1e9;
  --paper: #ffffff;
  --success: #2f7a4c;
  --shadow-sm: 0 18px 44px rgba(7, 23, 39, 0.09);
  --shadow-lg: 0 34px 84px rgba(7, 23, 39, 0.16);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --max-width: 1180px;
  --header-height: 88px;
  --font-body: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  --font-display: "Aptos", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 12% 12%, rgba(214, 122, 52, 0.12), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(38, 100, 143, 0.16), transparent 24%),
    linear-gradient(180deg, var(--sand-50), var(--sky-50));
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: var(--brand-900);
}

p {
  margin: 0;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 3px solid rgba(198, 108, 49, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--brand-900);
  color: var(--paper);
  transform: translateY(-200%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-600);
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.lead {
  font-size: clamp(1.02rem, 2vw, 1.16rem);
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.section--light {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}

.section--tint {
  background:
    radial-gradient(circle at right top, rgba(214, 122, 52, 0.14), transparent 28%),
    radial-gradient(circle at left bottom, rgba(38, 100, 143, 0.1), transparent 26%),
    rgba(229, 237, 243, 0.56);
}

.section--dark {
  background:
    radial-gradient(circle at right top, rgba(217, 133, 75, 0.18), transparent 26%),
    linear-gradient(135deg, var(--brand-900), #1f4165);
  color: var(--paper);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: rgba(255, 255, 255, 0.98);
}

.section--dark .section__intro h1,
.section--dark .section__intro h2,
.section--dark .section__intro h3,
.section--dark .section__intro h4 {
  color: rgba(255, 255, 255, 0.99) !important;
  text-shadow: 0 1px 0 rgba(5, 14, 24, 0.22);
}

.section--dark .section__intro p {
  color: rgba(255, 255, 255, 0.88) !important;
}

.section--compact {
  padding-top: 0;
}

.section__intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section__intro p {
  max-width: 48rem;
  color: var(--ink-700);
}

.section__intro--center {
  text-align: center;
  justify-items: center;
}

.section__intro--center p {
  text-align: center;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--accent-600);
  color: var(--paper);
  box-shadow: 0 16px 30px rgba(198, 108, 49, 0.22);
}

.button--primary:hover {
  background: var(--accent-500);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--paper);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-900);
  border-color: rgba(16, 38, 63, 0.08);
}

.button--ghost:hover {
  background: var(--paper);
}

.button--dark {
  background: var(--brand-900);
  color: var(--paper);
}

.button--dark:hover {
  background: var(--brand-800);
}

.button--block {
  width: 100%;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill-list a,
.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 38, 63, 0.09);
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 600;
}

.topbar {
  background: var(--brand-900);
  color: rgba(255, 255, 255, 0.85);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.9rem;
  font-size: 0.92rem;
}

.topbar__inner p {
  max-width: 28rem;
}

.topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

.topbar__links a {
  color: rgba(255, 255, 255, 0.95);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
}

.header-shell {
  background: rgba(248, 251, 253, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13, 34, 56, 0.06);
  box-shadow: 0 8px 26px rgba(7, 23, 39, 0.04);
}

.header-shell__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

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

.brand__mark {
  width: 3.1rem;
  height: 3.1rem;
  padding: 0.7rem;
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.02)),
    linear-gradient(155deg, var(--brand-700), var(--brand-950));
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    0 12px 24px rgba(7, 23, 39, 0.14);
}

.brand__mark svg {
  width: 100%;
  height: 100%;
}

.brand__text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.brand__text strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-900);
}

.brand__text span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink-700);
  transition: background-color var(--transition), color var(--transition);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: rgba(36, 80, 122, 0.1);
  color: var(--brand-900);
}

.nav-list .nav-list__cta {
  background: var(--brand-900);
  color: var(--paper);
}

.nav-list .nav-list__cta:hover,
.nav-list .nav-list__cta[aria-current="page"] {
  background: var(--accent-600);
  color: var(--paper);
}

.site-nav__meta {
  display: none;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(16, 38, 63, 0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 239, 245, 0.94));
  color: var(--brand-900);
  box-shadow: 0 12px 28px rgba(7, 23, 39, 0.12);
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2.5px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span + span {
  margin-top: 0.26rem;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle.is-open {
  background: var(--brand-900);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px rgba(7, 23, 39, 0.2);
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10;
  background: rgba(16, 38, 63, 0.36);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

body.nav-open .mobile-backdrop {
  opacity: 1;
  visibility: visible;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(214, 122, 52, 0.28), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 36%);
  pointer-events: none;
}

.hero {
  padding: clamp(4rem, 8vw, 6.8rem) 0 clamp(2.8rem, 6vw, 4.2rem);
  background:
    radial-gradient(circle at 82% 16%, rgba(214, 122, 52, 0.18), transparent 18%),
    linear-gradient(135deg, rgba(7, 23, 39, 0.98), rgba(13, 34, 56, 0.98) 48%, rgba(18, 56, 91, 0.95));
  color: var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  top: 4rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.hero__content {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}

.hero__content h1 {
  max-width: 9ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.92;
  color: var(--paper);
}

.hero__content p {
  max-width: 36rem;
}

.hero__facts {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.hero__facts li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero__facts li::before,
.check-list li::before {
  content: "";
  flex: 0 0 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.25rem;
  border-radius: 999px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.2 6.4 11 12.5 4.9' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/0.75rem no-repeat,
    rgba(217, 133, 75, 0.95);
}

.hero-card,
.panel,
.stat-card,
.service-card,
.detail-card,
.info-card,
.contact-card,
.team-card,
.value-card,
.success-card {
  border: 1px solid rgba(16, 38, 63, 0.08);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.hero-card {
  position: relative;
  display: grid;
  gap: 1.2rem;
  align-content: start;
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(4, 12, 22, 0.28);
  color: var(--paper);
  backdrop-filter: blur(18px);
}

.hero-card__title {
  font-size: 1.45rem;
  color: var(--paper);
}

.hero-card__copy {
  color: rgba(255, 255, 255, 0.82);
}

.step-list {
  display: grid;
  gap: 0.95rem;
  counter-reset: steps;
}

.step-list li {
  position: relative;
  display: grid;
  gap: 0.15rem;
  padding-left: 3rem;
  color: rgba(255, 255, 255, 0.84);
}

.step-list li::before {
  counter-increment: steps;
  content: "0" counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(214, 122, 52, 0.18);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.88rem;
  font-weight: 800;
}

.step-list strong {
  color: var(--paper);
  font-size: 1rem;
}

.hero-card__footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -2.8rem;
  position: relative;
  z-index: 1;
}

.stat-card {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 1.3rem 1.2rem;
  border-top: 4px solid rgba(214, 122, 52, 0.48);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 251, 0.95));
}

.stat-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-600);
}

.stat-card__label::before {
  content: "";
  width: 1.85rem;
  height: 1px;
  background: currentColor;
  opacity: 0.58;
}

.stat-card strong {
  display: block;
  margin-bottom: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--brand-900);
}

.stat-card span {
  color: var(--ink-700);
}

.stat-card > span:last-child {
  font-size: 0.98rem;
  line-height: 1.5;
}

.feature-grid,
.service-grid,
.detail-grid,
.value-grid,
.contact-grid,
.story-grid,
.process-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: start;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.service-card,
.detail-card,
.value-card,
.contact-card,
.team-card,
.info-card {
  display: grid;
  gap: 1rem;
  padding: 1.55rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 251, 0.94));
}

.service-card::after,
.detail-card::after,
.value-card::after,
.contact-card::after,
.team-card::after,
.info-card::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  top: -1.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 122, 52, 0.12), transparent 70%);
  pointer-events: none;
}

.service-card:hover,
.detail-card:hover,
.value-card:hover,
.contact-card:hover,
.team-card:hover,
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.95rem;
  background: linear-gradient(145deg, rgba(36, 80, 122, 0.12), rgba(217, 133, 75, 0.14));
  color: var(--brand-900);
}

.card-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.detail-card h3,
.value-card h3,
.contact-card h3,
.team-card h3,
.info-card h3 {
  font-size: 1.3rem;
}

.service-card p,
.detail-card p,
.value-card p,
.contact-card p,
.info-card p,
.panel p,
.story-copy p {
  color: var(--ink-700);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brand-700);
  font-weight: 700;
}

.service-card__link::after {
  content: ">";
  font-size: 1rem;
}

.check-list {
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  color: var(--ink-700);
}

.check-list li::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.2 6.4 11 12.5 4.9' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/0.75rem no-repeat,
    var(--brand-700);
}

.split-panel {
  display: grid;
  gap: 1.5rem;
}

.story-copy {
  display: grid;
  gap: 1rem;
}

.panel {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
}

.panel--dark {
  background:
    linear-gradient(160deg, rgba(16, 38, 63, 0.98), rgba(31, 65, 101, 0.94));
  color: var(--paper);
}

.panel--dark h3,
.panel--dark strong {
  color: var(--paper);
}

.panel--dark p,
.panel--dark li {
  color: rgba(255, 255, 255, 0.9);
}

.panel--dark .check-list li::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.2 6.4 11 12.5 4.9' fill='none' stroke='%2310263f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/0.75rem no-repeat,
    rgba(255, 255, 255, 0.94);
}

.panel--dark .tag-list span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.98);
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 20px rgba(6, 18, 31, 0.12);
}

.panel--accent {
  background:
    linear-gradient(135deg, rgba(243, 223, 208, 0.88), rgba(232, 241, 247, 0.96));
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(16, 38, 63, 0.08);
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.timeline__item {
  position: relative;
  padding-left: 2.5rem;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.5rem;
  bottom: -1rem;
  width: 2px;
  background: rgba(36, 80, 122, 0.16);
}

.timeline__item:last-child::before {
  bottom: 0.5rem;
}

.timeline__item strong {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1rem;
  color: var(--brand-900);
}

.timeline__item strong::before {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: var(--accent-600);
  box-shadow: 0 0 0 0.35rem rgba(198, 108, 49, 0.16);
}

.timeline__item p {
  margin-top: 0.35rem;
  color: var(--ink-700);
}

.process-step {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.85rem;
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 237, 0.92));
  border: 1px solid rgba(13, 34, 56, 0.06);
  box-shadow: var(--shadow-sm);
}

.process-step::before {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(214, 122, 52, 0.9), rgba(239, 151, 87, 0.7));
}

.process-step__count {
  display: inline-grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgba(217, 133, 75, 0.16);
  color: var(--accent-600);
  font-size: 0.95rem;
  font-weight: 800;
}

.process-step p {
  color: var(--ink-700);
}

.process-step:nth-child(2) {
  background: linear-gradient(160deg, rgba(7, 23, 39, 0.98), rgba(13, 34, 56, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 64px rgba(7, 23, 39, 0.22);
}

.process-step:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(214, 122, 52, 0.72));
}

.process-step:nth-child(2) h3,
.process-step:nth-child(2) p {
  color: var(--paper);
}

.process-step:nth-child(2) .process-step__count {
  background: rgba(255, 255, 255, 0.14);
  color: var(--paper);
}

.page-hero {
  padding: clamp(3rem, 6vw, 4.4rem) 0;
  background:
    linear-gradient(135deg, rgba(16, 38, 63, 0.97), rgba(31, 65, 101, 0.95)),
    var(--brand-900);
  color: var(--paper);
}

.page-hero__content {
  position: relative;
  display: grid;
  gap: 1rem;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  color: var(--paper);
}

.page-hero p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.breadcrumb span[aria-hidden="true"] {
  opacity: 0.6;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-card a {
  color: var(--brand-700);
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--ink-700);
}

.contact-list li::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--accent-600);
  flex: 0 0 auto;
}

.form-card {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.45rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid rgba(16, 38, 63, 0.08);
  box-shadow: var(--shadow-lg);
}

.form-card h2 {
  font-size: 1.7rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-900);
}

.field span {
  color: var(--accent-600);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(16, 38, 63, 0.14);
  border-radius: 1rem;
  background: rgba(238, 244, 247, 0.45);
  color: var(--ink-900);
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(36, 80, 122, 0.6);
  box-shadow: 0 0 0 4px rgba(36, 80, 122, 0.08);
  background: var(--paper);
  outline: none;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--ink-700);
}

.consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--brand-700);
}

.consent a {
  color: var(--brand-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.form-note {
  font-size: 0.9rem;
  color: var(--ink-500);
}

.form-note a {
  color: var(--brand-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.form-status {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(16, 38, 63, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink-700);
  font-size: 0.95rem;
}

.success-card {
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(1.8rem, 5vw, 2.6rem);
  text-align: center;
}

.success-card p {
  color: var(--ink-700);
}

.success-card .actions {
  justify-content: center;
}

.legal-content {
  display: grid;
  gap: 1.3rem;
  max-width: 54rem;
}

.legal-content h2 {
  margin-top: 1rem;
  font-size: 1.45rem;
}

.legal-content h3 {
  font-size: 1.08rem;
}

.legal-content p,
.legal-content li,
.legal-content address {
  color: var(--ink-700);
}

.legal-content ul {
  display: grid;
  gap: 0.6rem;
  padding-left: 0.2rem;
}

.legal-content li {
  display: flex;
  gap: 0.7rem;
}

.legal-content li::before {
  content: "";
  flex: 0 0 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--accent-600);
}

.notice {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent-600);
  border-radius: var(--radius-sm);
  background: rgba(243, 223, 208, 0.56);
  color: var(--ink-700);
}

.placeholder {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.35rem 0.7rem;
  border: 1px dashed rgba(198, 108, 49, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-900);
  font-weight: 700;
}

.site-footer {
  padding: 3.8rem 0 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(214, 122, 52, 0.18), transparent 24%),
    linear-gradient(180deg, var(--brand-950), var(--brand-900));
  color: rgba(255, 255, 255, 0.82);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.88fr));
  gap: 2rem;
}

.brand--footer .brand__text strong,
.brand--footer .brand__text span {
  color: var(--paper);
}

.footer__copy {
  margin-top: 1rem;
  max-width: 25rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer__title {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__links {
  display: grid;
  gap: 0.65rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer__address {
  display: grid;
  gap: 0.55rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0.9rem;
  z-index: 14;
  width: min(calc(100% - 2rem), 920px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1.2rem;
  background: rgba(16, 38, 63, 0.96);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  transform: translateX(-50%);
  font-size: 0.86rem;
}

.cookie-banner a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.cookie-banner p {
  max-width: 38rem;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-left: auto;
}

.cookie-banner__actions button {
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.cookie-banner__actions .cookie-banner__accept {
  background: var(--accent-600);
  color: var(--paper);
}

.cookie-banner__actions .cookie-banner__close {
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
}

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

  .feature-grid,
  .service-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero__grid,
  .story-grid,
  .contact-grid,
  .detail-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .topbar__inner,
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .topbar__inner {
    padding: 0.65rem 0;
  }

  .header-shell__inner {
    min-height: 76px;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    bottom: auto;
    z-index: 13;
    width: min(92vw, 360px);
    max-width: 100%;
    max-height: calc(100dvh - 8.5rem);
    overflow: auto;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1rem;
    border: 1px solid rgba(16, 38, 63, 0.08);
    border-radius: 1.5rem;
    background: rgba(252, 250, 247, 0.98);
    box-shadow: 0 26px 60px rgba(16, 38, 63, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.9rem) scale(0.98);
    transform-origin: top right;
    transition:
      transform var(--transition),
      opacity var(--transition),
      visibility var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .nav-list a {
    justify-content: flex-start;
    min-height: 3.15rem;
    padding-inline: 1rem;
    background: rgba(221, 231, 238, 0.38);
  }

  .site-nav__meta {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1.35rem;
    background: linear-gradient(180deg, rgba(221, 231, 238, 0.72), rgba(242, 246, 249, 0.92));
    border: 1px solid rgba(16, 38, 63, 0.06);
  }

  .site-nav__meta p {
    color: var(--ink-700);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.6rem 0;
  }

  .metrics,
  .feature-grid,
  .service-grid,
  .value-grid,
  .form-row,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__content h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .actions,
  .cookie-banner,
  .cookie-banner__actions {
    align-items: stretch;
  }

  .actions .button,
  .cookie-banner__actions button {
    width: 100%;
  }

  .metrics {
    margin-top: -1.3rem;
  }
}

@media (max-width: 560px) {
  .topbar__links {
    gap: 0.55rem 1rem;
  }

  .brand__text strong {
    font-size: 0.92rem;
  }

  .brand__text span {
    font-size: 0.72rem;
  }

  .hero-card,
  .panel,
  .service-card,
  .detail-card,
  .value-card,
  .contact-card,
  .team-card,
  .info-card,
  .success-card,
  .form-card {
    padding: 1.25rem;
  }

  .cookie-banner {
    left: 50%;
    bottom: 0.75rem;
    width: calc(100% - 1.5rem);
    padding: 0.8rem 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
