:root {
  --color-primary: #22335a;
  --color-accent: #ff6a1a;
  --color-bg: #ffffff;
  --color-surface: #f8fafc;
  --color-surface-strong: #f2f6fb;
  --color-text: #111111;
  --color-muted: #667085;
  --color-border: #d0d5dd;
  --shadow-soft: 0 20px 60px rgba(34, 51, 90, 0.08);
  --shadow-card: 0 16px 36px rgba(34, 51, 90, 0.06);
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#top {
  scroll-margin-top: 0;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

[data-reveal] {
  --reveal-offset-x: 0px;
  --reveal-offset-y: 22px;
  --reveal-duration: 620ms;
  --reveal-delay: 0ms;
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="section"] {
  --reveal-offset-y: 26px;
  --reveal-duration: 680ms;
}

[data-reveal="card"] {
  --reveal-offset-y: 24px;
  --reveal-duration: 560ms;
}

[data-reveal="left"] {
  --reveal-offset-x: -26px;
  --reveal-offset-y: 10px;
  --reveal-duration: 640ms;
}

[data-reveal="right"] {
  --reveal-offset-x: 26px;
  --reveal-offset-y: 10px;
  --reveal-duration: 640ms;
}

.hero [data-reveal] {
  --reveal-offset-y: 20px;
}

.hero-copy > [data-reveal] {
  --reveal-offset-x: -18px;
}

.hero-eyebrow {
  --reveal-duration: 520ms;
  --reveal-delay: 40ms;
}

.hero-title {
  --reveal-duration: 760ms;
  --reveal-delay: 120ms;
}

.hero-actions-premium {
  --reveal-offset-y: 16px;
  --reveal-duration: 640ms;
  --reveal-delay: 280ms;
}

.service-grid [data-reveal],
.three-up [data-reveal],
.four-up [data-reveal],
.about-values [data-reveal],
.hero-service-grid [data-reveal],
.trust-items [data-reveal],
.footer-grid [data-reveal],
.service-list [data-reveal],
.support-grid [data-reveal] {
  --reveal-duration: 540ms;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(208, 213, 221, 0.65);
  box-shadow: 0 10px 32px rgba(34, 51, 90, 0.06);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.9rem 0;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: 168px;
  height: auto;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  flex: 1;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.menu a,
.site-footer p,
.service-list li,
.about-values span,
.info-card p,
.sector-card p,
.card-grid p,
.cta-box p,
.section-heading p,
.service-group-copy,
.hero-lead,
.hero-points li {
  color: var(--color-muted);
}

.menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.menu a::after {
  content: '';
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.55rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), rgba(255, 106, 26, 0.28));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--color-primary);
  background: rgba(34, 51, 90, 0.06);
}

.menu a:hover::after,
.menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.nav-cta {
  min-height: 46px;
  padding-inline: 1.1rem;
  box-shadow: 0 14px 28px rgba(255, 106, 26, 0.18);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
  border: 1px solid rgba(208, 213, 221, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(34, 51, 90, 0.06);
}

.lang-btn,
.menu-toggle {
  font: inherit;
  cursor: pointer;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font-weight: 900;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
  background: var(--color-primary);
  color: #fff;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(34, 51, 90, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 246, 251, 0.98) 100%);
  color: var(--color-primary);
  padding: 0.72rem 0.95rem;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(34, 51, 90, 0.08);
}

.menu-toggle-icon {
  position: relative;
  width: 18px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.menu-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 2px solid currentColor;
  transform: translateY(-50%);
}

.menu-toggle-label {
  line-height: 1;
}

.hero {
  padding: 5rem 0 3rem;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 26, 0.12), transparent 28%),
    radial-gradient(circle at left top, rgba(34, 51, 90, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

.hero-grid,
.about-grid,
.footer-row,
.cta-box,
.hero-actions,
.trust-items {
  display: flex;
  gap: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 2rem;
}

.hero-grid,
.about-grid,
.cta-box {
  justify-content: space-between;
}

.hero-grid,
.cta-box {
  align-items: flex-start;
}

.about-grid {
  align-items: center;
}

.hero-copy,
.hero-card,
.about-grid > div,
.cta-box > div {
  flex: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.15rem;
  padding-top: 0.15rem;
}

.hero-copy > * {
  margin: 0;
}

.hero-copy .eyebrow,
.hero-copy h1 {
  margin-bottom: 0;
}

.hero-copy .hero-actions {
  margin-top: 0.55rem;
}

.hero-lead {
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-points {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 700;
}

.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), #ff9a62);
  box-shadow: 0 0 0 6px rgba(255, 106, 26, 0.12);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(34, 51, 90, 0.08);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--color-primary);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.7rem);
  max-width: 11.5ch;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 0.85rem;
}

h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-accent);
}

.lead {
  max-width: 60ch;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--color-muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(255, 106, 26, 0.22);
}

.button-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

html.js [data-reveal] {
  opacity: 0;
  transform: translate3d(var(--reveal-offset-x), var(--reveal-offset-y), 0);
  transition:
    opacity var(--reveal-duration) ease,
    transform var(--reveal-duration) var(--reveal-ease);
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

html.js .hero [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-card,
.info-card,
.sector-card,
.info-box,
.highlight-box,
.cta-box,
.about-values,
.card-grid article {
  background: #fff;
  border: 1px solid rgba(208, 213, 221, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.info-card,
.sector-card,
.process-card,
.info-box,
.highlight-box,
.about-values div {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.info-card:hover,
.sector-card:hover,
.process-card:hover,
.info-box:hover,
.highlight-box:hover,
.about-values div:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(34, 51, 90, 0.12);
}

.hero-card {
  align-self: flex-start;
  margin-top: 0.2rem;
  padding: 1rem;
}

.hero-card-premium {
  position: relative;
  overflow: hidden;
  --reveal-delay: 180ms;
  --reveal-duration: 760ms;
}

.hero-card-premium::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
  opacity: 0.8;
}

.hero-card-label {
  display: inline-block;
  margin: 0 0 0.8rem 0.2rem;
}

.card-grid {
  display: grid;
  gap: 0.85rem;
}

.hero-card .card-grid {
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.card-grid article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  padding: 1.25rem;
}

.hero-service-grid article {
  justify-content: flex-start;
  min-height: 164px;
  padding: 1.35rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease;
}

.hero-card-premium .hero-card-label {
  --reveal-delay: 280ms;
  position: relative;
  z-index: 1;
}

.hero-card-premium .hero-service-grid {
  position: relative;
  z-index: 1;
}

.hero-card-premium .hero-service-grid article:nth-child(1) {
  --reveal-delay: 340ms;
}

.hero-card-premium .hero-service-grid article:nth-child(2) {
  --reveal-delay: 460ms;
}

.hero-card-premium .hero-service-grid article:nth-child(3) {
  --reveal-delay: 580ms;
}

.hero-card-premium .hero-service-grid article:hover,
.hero-card-premium .hero-service-grid article:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(34, 51, 90, 0.1);
  border-color: rgba(255, 106, 26, 0.18);
}

.hero-card h2 {
  margin: 0.25rem 0 0.45rem;
  font-size: clamp(1.4rem, 1.8vw, 1.75rem);
  line-height: 1.15;
  font-weight: 900;
}

.card-kicker,
.mini-kicker,
.service-group-tag {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-kicker {
  margin-bottom: 0.5rem;
}

.mini-kicker {
  margin-bottom: 0.25rem;
}

.service-group-heading {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
}

.service-group-heading-support {
  margin-top: 2.2rem;
}

.service-group-tag {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 106, 26, 0.08);
  width: fit-content;
}

.service-group-tag-support {
  color: var(--color-primary);
  background: rgba(34, 51, 90, 0.08);
}

.service-group-copy {
  margin: 0;
  max-width: 62ch;
}

.metric {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-primary);
}

.trust-bar {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(208, 213, 221, 0.7);
  border-bottom: 1px solid rgba(208, 213, 221, 0.7);
  background: #fff;
}

.trust-items {
  justify-content: space-between;
  flex-wrap: wrap;
}

.trust-items span {
  font-weight: 900;
  color: var(--color-primary);
}

.section {
  padding: 5.5rem 0;
}

.alt {
  background: var(--color-surface);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin-bottom: 1.1rem;
}

.cards {
  display: grid;
  gap: 1.4rem;
  align-items: stretch;
}

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

.service-grid-premium .service-card,
.support-grid .service-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.service-grid-premium .service-card::before,
.support-grid .service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 106, 26, 0.03), rgba(34, 51, 90, 0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-grid-premium .service-card:hover,
.service-grid-premium .service-card:focus-within,
.support-grid .service-card:hover,
.support-grid .service-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(34, 51, 90, 0.09);
  border-color: rgba(255, 106, 26, 0.2);
}

.service-grid-premium .service-card:hover::before,
.service-grid-premium .service-card:focus-within::before,
.support-grid .service-card:hover::before,
.support-grid .service-card:focus-within::before {
  opacity: 1;
}

.service-card-core {
  border-color: rgba(255, 106, 26, 0.18);
}

.service-card-support {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.service-grid-premium .service-card:nth-child(1) { --reveal-delay: 40ms; }
.service-grid-premium .service-card:nth-child(2) { --reveal-delay: 120ms; }
.service-grid-premium .service-card:nth-child(3) { --reveal-delay: 200ms; }
.support-grid .service-card:nth-child(1) { --reveal-delay: 40ms; }
.support-grid .service-card:nth-child(2) { --reveal-delay: 120ms; }
.support-grid .service-card:nth-child(3) { --reveal-delay: 200ms; }

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

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

.info-card,
.sector-card,
.process-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 1.75rem;
}

.process-card {
  background: #fff;
  border: 1px solid rgba(208, 213, 221, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.info-card p,
.sector-card p,
.process-card p,
.info-box li,
.highlight-box li,
.about-values span {
  line-height: 1.7;
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 106, 26, 0.12);
  color: var(--color-accent);
  font-weight: 900;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
}

.service-list > div {
  width: 100%;
}

.info-box,
.highlight-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  height: 100%;
  padding: 1.75rem;
}

.service-list ul,
.info-box ul,
.highlight-box ul {
  margin: 0;
  padding-left: 1.2rem;
}

.highlight-box {
  background: #fff;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
  padding: 1.25rem;
  align-items: stretch;
}

.about-values div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  padding: 1.35rem;
  border: 1px solid rgba(208, 213, 221, 0.7);
  border-radius: var(--radius-md);
  background: var(--color-surface-strong);
}

.about-values strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-primary);
  font-size: 1.05rem;
}

.cta-box {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(34, 51, 90, 0.98) 0%, rgba(34, 51, 90, 0.9) 100%);
}

.contact-layout {
  align-items: stretch;
  gap: 2.5rem;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0.35rem;
}

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

.cta-box .eyebrow {
  background: rgba(255, 255, 255, 0.12);
}

.contact-form {
  width: min(100%, 540px);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(13, 20, 39, 0.18);
  backdrop-filter: blur(12px);
}

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

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

.form-field-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-field span,
.form-helper {
  color: rgba(255, 255, 255, 0.82);
}

.form-field span {
  font-size: 0.95rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  font: inherit;
  padding: 0.95rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 106, 26, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.16);
}

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

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-form-actions .button {
  border: 0;
  cursor: pointer;
}

.contact-form-actions .button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-helper {
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status.is-pending {
  color: rgba(255, 255, 255, 0.88);
}

.form-status.is-success {
  color: #b9ffcf;
}

.form-status.is-error {
  color: #ffd0d0;
}

.contact-note {
  margin-top: 0.85rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.82);
}

.contact-email {
  display: inline-block;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.cta-actions .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(208, 213, 221, 0.7);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.footer-brand img,
.footer-brand-block img {
  width: 152px;
  height: auto;
}

.footer-brand {
  display: inline-flex;
}

.footer-summary {
  max-width: 32ch;
  margin: 1rem 0 0;
}

.footer-title {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--color-primary);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links,
.footer-socials {
  display: grid;
  gap: 0.75rem;
}

.footer-links a,
.footer-socials span {
  color: var(--color-muted);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-primary);
}

.footer-row {
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(208, 213, 221, 0.7);
  text-align: center;
}

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .cta-box,
  .footer-row {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    width: 100%;
  }

  .hero-grid,
  .about-grid,
  .cta-box {
    gap: 1.5rem;
  }

  .hero-copy,
  .hero-card,
  .about-grid > div,
  .cta-box > div {
    width: 100%;
  }

  .hero-card .card-grid {
    grid-template-rows: none;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .support-grid,
  .three-up,
  .four-up {
    grid-template-columns: 1fr;
  }

  .about-values {
    width: 100%;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-panel {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-top: 0.35rem;
    padding: 1rem;
    border: 1px solid rgba(208, 213, 221, 0.95);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    box-shadow: 0 24px 48px rgba(34, 51, 90, 0.12);
  }

  .nav-panel.open {
    display: flex;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    width: 100%;
  }

  .menu a {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(34, 51, 90, 0.04);
  }

  .menu a::after {
    left: 1rem;
    right: 1rem;
    bottom: 0.7rem;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-top: 0.2rem;
    border-top: 1px solid rgba(208, 213, 221, 0.8);
  }

  .nav-cta {
    width: 100%;
  }

  .lang-switch {
    align-self: stretch;
    justify-content: center;
    margin-top: 0;
  }

  .lang-btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .site-header {
    backdrop-filter: blur(10px);
  }

  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .brand img {
    width: 148px;
  }

  .nav {
    gap: 0.8rem;
    padding: 0.72rem 0;
  }

  .hero {
    padding: 2.35rem 0 1.9rem;
  }

  .hero-grid,
  .about-grid,
  .cta-box {
    gap: 1.2rem;
  }

  .hero-copy {
    gap: 0.9rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.76rem;
  }

  h1 {
    font-size: clamp(1.95rem, 8.4vw, 2.7rem);
    margin-bottom: 0.65rem;
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  h3 {
    font-size: 1.08rem;
    padding-bottom: 0.6rem;
    margin-bottom: 0.8rem;
  }

  .lead,
  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-points {
    gap: 0.55rem;
  }

  .hero-points li {
    padding-left: 1.35rem;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .hero-points li::before {
    top: 0.52rem;
    width: 0.58rem;
    height: 0.58rem;
    box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.1);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.72rem;
  }

  .hero-card {
    padding: 0.8rem;
  }

  .hero-card .card-grid {
    gap: 0.7rem;
  }

  .hero-service-grid article {
    min-height: auto;
    padding: 1rem;
  }

  .hero-card h2 {
    font-size: 1.22rem;
    margin: 0.2rem 0 0.3rem;
  }

  .card-grid p,
  .info-card p,
  .sector-card p,
  .process-card p,
  .about-values span,
  .cta-box p,
  .section-heading p {
    line-height: 1.58;
  }

  .section-heading {
    margin-bottom: 1.45rem;
  }

  .cards {
    gap: 0.9rem;
  }

  .hero-card,
  .info-card,
  .sector-card,
  .process-card,
  .info-box,
  .highlight-box,
  .cta-box,
  .about-values,
  .card-grid article {
    border-radius: 18px;
  }

  .info-card,
  .sector-card,
  .process-card,
  .info-box,
  .highlight-box,
  .card-grid article {
    padding: 1.05rem;
  }

  .process-card {
    padding: 1.1rem;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.85rem;
  }

  .about-values div {
    padding: 0.9rem;
  }

  .process-step {
    width: 38px;
    height: 38px;
    margin-bottom: 0.7rem;
  }

  .trust-bar {
    padding: 0.85rem 0;
  }

  .trust-items {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 0.55rem;
    flex-wrap: wrap;
  }

  .trust-items span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.62rem 0.9rem;
    border: 1px solid rgba(34, 51, 90, 0.09);
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 8px 18px rgba(34, 51, 90, 0.05);
    font-size: 0.93rem;
    line-height: 1.15;
    text-align: center;
  }

  .cta-box {
    padding: 1.1rem;
    gap: 1.15rem;
  }

  .contact-copy {
    padding-top: 0;
  }

  .contact-note {
    margin-top: 0.65rem;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0.78rem;
  }

  .contact-form {
    padding: 0.95rem;
  }

  .form-field span {
    font-size: 0.92rem;
  }

  .form-field input,
  .form-field textarea {
    padding: 0.85rem 0.92rem;
    border-radius: 14px;
  }

  .form-field textarea {
    min-height: 132px;
  }

  .contact-form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .footer-grid {
    gap: 1.35rem;
  }

  .footer-row {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }

  .cta-actions,
  .cta-actions .button,
  .hero-actions .button,
  .contact-form-actions .button,
  .contact-email {
    width: 100%;
  }
}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}
