:root {
  --color-primary-500: #0b84d8;
  --color-primary-600: #1567b3;
  --color-primary-900: #0b1f33;
  --color-accent-500: #d91f26;

  --color-white: #ffffff;
  --color-bg: #f4f7fa;
  --color-bg-soft: #eef3f7;
  --color-surface: #ffffff;
  --color-surface-soft: #f8fbfd;
  --color-surface-muted: #f1f6fa;
  --color-border: #d6e0e8;
  --color-border-strong: #c3d3df;

  --color-text: #163042;
  --color-text-muted: #5e6a75;
  --color-text-inverse: #edf4fa;

  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Sora", "Segoe UI", sans-serif;

  --text-xs: 0.78rem;
  --text-sm: 0.92rem;
  --text-base: 1rem;
  --text-lg: 1.06rem;
  --text-xl: 1.24rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-9: 2.5rem;
  --space-10: 3rem;
  --space-11: 4rem;
  --space-12: 5rem;
  --space-13: 6.5rem;
  --card-padding: 1.5rem;
  --card-padding-lg: 1.875rem;
  --container-max: 1240px;
  --container-pad: 1rem;
  --grid-gap: 1.5rem;
  --grid-gap-lg: 3rem;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-2xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 10px 24px rgba(13, 31, 51, 0.05);
  --shadow-md: 0 16px 34px rgba(13, 31, 51, 0.07);
  --shadow-lg: 0 22px 44px rgba(11, 31, 51, 0.08);
  --shadow-xl: 0 28px 52px rgba(11, 31, 51, 0.1);

  --transition-base: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.site-body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: linear-gradient(180deg, #f9fbfd 0%, var(--color-bg) 100%);
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-base);
}

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

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

.container {
  width: min(var(--container-max), calc(100% - (var(--container-pad) * 2)));
}

.section-shell {
  display: grid;
  gap: var(--space-9);
}

.site-grid-row {
  --bs-gutter-x: var(--grid-gap);
  --bs-gutter-y: var(--grid-gap);
}

.site-grid-row-lg {
  --bs-gutter-x: var(--grid-gap-lg);
}

.site-col {
  display: flex;
  flex-direction: column;
}

.site-card-row {
  --bs-gutter-y: var(--space-6);
}

.site-form-row {
  --bs-gutter-x: var(--space-4);
  --bs-gutter-y: var(--space-4);
}

.site-stat-row {
  --bs-gutter-y: var(--space-4);
}

.site-topbar {
  background: #eef4f8;
  border-bottom: 1px solid rgba(21, 103, 179, 0.08);
}

.topbar-copy {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
  }

.topbar-link {
    color: var(--color-primary-600);
    font-weight: 800;
  }

.topbar-link:hover,
.topbar-link:focus {
  color: var(--color-primary-500);
}

.site-navbar-wrap {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(214, 224, 232, 0.92);
  backdrop-filter: blur(18px);
}

.site-navbar {
  min-height: 82px;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.site-brand {
  margin-right: 0;
}

.brand-mark-wrap,
.footer-brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.brand-mark-shell,
.footer-brand-mark-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-mark-shell {
  width: 84px;
  height: 84px;
}

.brand-mark-image,
.footer-brand-mark-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.06) contrast(1.04);
}

.brand-wordmark,
.footer-brand-wordmark {
  display: grid;
  gap: 0.24rem;
}

.brand-wordmark-title,
.footer-brand-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.brand-wordmark-main,
.footer-brand-main {
  display: block;
}

.brand-wordmark-legal,
.footer-brand-legal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-wordmark-title {
  color: var(--color-primary-900);
}

.brand-wordmark-legal {
  border: 1px solid rgba(21, 103, 179, 0.14);
  background: linear-gradient(180deg, rgba(11, 132, 216, 0.08) 0%, rgba(11, 132, 216, 0.12) 100%);
  color: var(--color-primary-600);
}

.brand-wordmark-subtitle,
.footer-brand-subtitle {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-wordmark-subtitle {
  color: var(--color-text-muted);
  opacity: 0.9;
}

.site-toggler {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.55rem 0.7rem;
  background: var(--color-surface);
}

.site-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2811, 31, 51, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(11, 132, 216, 0.15);
}

.site-nav-link {
  position: relative;
  padding: 0.62rem 0.9rem !important;
  color: var(--color-text-muted);
  font-size: 0.94rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  outline: none;
}

.site-nav-link:hover,
.site-nav-link.active {
  color: var(--color-primary-600);
  background: rgba(11, 132, 216, 0.04);
}

.site-nav-link:focus {
  color: var(--color-text-muted);
  box-shadow: none;
}

.site-nav-link:focus-visible {
  color: var(--color-primary-600);
  box-shadow: 0 0 0 3px rgba(11, 132, 216, 0.16);
}

.site-nav-link.active::after,
.site-nav-link:hover::after {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.12rem;
  height: 2px;
  content: "";
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-primary-500), var(--color-accent-500));
}

.site-header-cta {
  min-width: 184px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base);
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.btn-brand-primary {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-500));
  border: 1px solid transparent;
  box-shadow: 0 14px 28px rgba(11, 132, 216, 0.18);
}

.btn-brand-primary:hover,
.btn-brand-primary:focus {
  color: var(--color-white);
  background: linear-gradient(135deg, #135b9c, #0a79c7);
}

.btn-brand-secondary {
  color: var(--color-primary-600);
  background: var(--color-surface);
  border: 1px solid rgba(21, 103, 179, 0.18);
  box-shadow: var(--shadow-sm);
}

.btn-brand-secondary:hover,
.btn-brand-secondary:focus {
  color: var(--color-primary-600);
  background: var(--color-surface-soft);
  border-color: rgba(21, 103, 179, 0.3);
}

.btn-brand-outline {
  color: var(--color-primary-600);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(21, 103, 179, 0.22);
  box-shadow: 0 10px 24px rgba(13, 31, 51, 0.04);
}

.btn-brand-outline:hover,
.btn-brand-outline:focus {
  color: var(--color-primary-600);
  background: rgba(11, 132, 216, 0.05);
  border-color: rgba(21, 103, 179, 0.32);
  box-shadow: 0 14px 28px rgba(13, 31, 51, 0.06);
}

.section-kicker {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  margin-top: 0.35rem;
  margin-bottom: var(--space-4);
  padding: 0.5rem 0.95rem 0.45rem;
  border-radius: var(--radius-pill);
  background: rgba(11, 132, 216, 0.08);
  color: var(--color-primary-500);
  font-size: var(--text-xs);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.1vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  color: var(--color-text);
}

.section-title-light {
  color: var(--color-white);
}

.section-copy {
  margin: var(--space-5) 0 0;
  max-width: 60ch;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.section-header {
  margin-bottom: var(--space-9);
  padding-top: 0.45rem;
}

.section-header-inline {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-6);
}

.section-header > :last-child,
.section-header-inline > div > :last-child {
  margin-bottom: 0;
}

.section-header-inline > div:first-child {
  max-width: 48rem;
}

.section-header-inline > .btn,
.section-header-inline > .projects-index-meta {
  flex-shrink: 0;
}

.section-header-panel {
  align-items: stretch;
}

.section-intro-panel,
.section-copy-panel,
.services-copy-panel,
.contact-copy-panel {
  border: 1px solid rgba(214, 224, 232, 0.86);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 250, 253, 0.92) 100%);
  box-shadow: 0 14px 28px rgba(11, 31, 51, 0.05);
}

.section-intro-panel,
.services-copy-panel,
.contact-copy-panel {
  padding: 1.9rem 1.45rem 1.5rem;
}

.section-intro-panel-tall {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.section-copy-panel {
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: 1.45rem 1.3rem 1.2rem;
}

.section-copy-panel.section-copy,
.section-intro-panel .section-copy,
.services-copy-panel .section-copy,
.contact-copy-panel .section-copy {
  margin-top: 0.9rem;
}

.section-title-balanced {
  font-size: clamp(1.68rem, 2.05vw, 2.35rem);
  line-height: 1.08;
}

.section-hero-row {
  --bs-gutter-y: var(--space-6);
}

.section-hero-copy {
  max-width: 46rem;
}

.section-hero-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  min-height: 21rem;
  padding: var(--space-7);
  border: 1px solid rgba(21, 103, 179, 0.12);
  border-radius: var(--radius-2xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 249, 0.96)),
    linear-gradient(135deg, #d8e4ed, #eef4f8);
  box-shadow: var(--shadow-lg);
}

.section-hero-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(11, 31, 51, 0.42) 100%),
    radial-gradient(circle at top right, rgba(11, 132, 216, 0.16), transparent 26%);
}

.section-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-hero-overlay {
  position: relative;
  z-index: 1;
  max-width: 24rem;
  padding: 1rem 1.05rem 1.1rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.18) 0%, rgba(11, 31, 51, 0.66) 100%);
  backdrop-filter: blur(3px);
  box-shadow: 0 14px 28px rgba(11, 31, 51, 0.16);
}

.section-hero-overlay span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 0.8rem;
  padding: 0 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-hero-overlay strong {
  display: block;
  max-width: 18ch;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.8vw, 1.7rem);
  line-height: 1.24;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 22px rgba(11, 31, 51, 0.34);
}

.section-hero-visual-compact {
  min-height: 18.5rem;
  margin-top: var(--space-6);
}

.site-section {
  padding: var(--space-12) 0;
}

.section-alt {
  background: linear-gradient(180deg, #f8fbfd 0%, var(--color-bg-soft) 100%);
}

.section-surface-hero {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.section-surface-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 36%, rgba(255, 255, 255, 0.84) 62%, rgba(244, 248, 251, 0.8) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 248, 251, 0.22) 100%);
  pointer-events: none;
}

.section-surface-hero .container,
.section-surface-hero .section-shell,
.section-surface-hero .contact-shell {
  position: relative;
  z-index: 1;
}

.section-surface-services {
  background-image: url("../assets/home/hero-main.png");
}

.section-surface-services::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.985) 0%, rgba(255, 255, 255, 0.955) 38%, rgba(248, 251, 253, 0.92) 62%, rgba(242, 247, 251, 0.9) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(244, 248, 251, 0.24) 100%);
}

.section-surface-projects {
  background-image: url("../assets/projects/climatizacion-oficinas-las-condes/cover.png");
}

.section-surface-company {
  background-image: url("../assets/home/about-company.png");
}

.section-surface-contact {
  background-image: url("../assets/home/contact-evaluation.png");
}

.trust-logos-section {
  padding: 1.2rem 0 var(--space-11);
  background:
    linear-gradient(180deg, rgba(16, 35, 53, 0.48) 0%, rgba(32, 55, 78, 0.4) 100%),
    linear-gradient(90deg, rgba(233, 240, 247, 0.58) 0%, rgba(221, 230, 239, 0.46) 34%, rgba(214, 225, 236, 0.5) 100%),
    url("../assets/home/trust-background.png") center center / cover no-repeat;
}

.trust-logos-shell {
  gap: var(--space-8);
}

.trust-logos-header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: end;
  gap: var(--space-6);
  margin-bottom: 0;
}

.trust-logos-intro {
  max-width: 34rem;
  padding-right: 1rem;
}

.trust-logos-header .section-title {
  max-width: 16ch;
}

.trust-logos-header .section-copy,
.trust-logos-copy {
  margin-top: 0;
  justify-self: end;
  max-width: 31rem;
  padding: 1rem 1.1rem 1.05rem;
  border: 1px solid rgba(228, 236, 244, 0.36);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.06);
  backdrop-filter: blur(10px);
}

.trust-names-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.trust-name-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-name-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(228, 236, 244, 0.34);
  border-radius: 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(247, 250, 253, 0.08) 100%);
  box-shadow: 0 12px 28px rgba(11, 31, 51, 0.06);
  backdrop-filter: blur(10px);
}

.trust-name-marquee::before,
.trust-name-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  content: "";
  z-index: 2;
  pointer-events: none;
}

.trust-name-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(209, 220, 232, 0.96) 0%, rgba(209, 220, 232, 0) 100%);
}

.trust-name-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(209, 220, 232, 0.96) 0%, rgba(209, 220, 232, 0) 100%);
}

.trust-name-marquee-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.9rem;
  width: max-content;
  will-change: transform;
  animation: trust-marquee 28s linear infinite;
}

.trust-marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.trust-marquee-item-logo {
  min-height: 3rem;
  padding: 0 0.2rem;
}

.trust-name-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0 1rem;
  border: 1px solid rgba(21, 103, 179, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(22, 48, 66, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.trust-name-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  padding: var(--space-6) var(--space-5);
  border: 1px solid rgba(228, 236, 244, 0.72);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(247, 250, 253, 0.56) 100%);
  box-shadow: 0 16px 30px rgba(11, 31, 51, 0.08);
  backdrop-filter: blur(12px);
  text-align: center;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.trust-name-card:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 244, 249, 0.94);
  box-shadow: 0 22px 34px rgba(11, 31, 51, 0.11);
}

.trust-name-card-fallback {
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}

.trust-name-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 96px;
  padding: 0.45rem 0.75rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
  border-radius: var(--radius-md);
}

.logo-link:hover,
.logo-link:focus {
  color: inherit;
}

.logo-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(11, 132, 216, 0.16);
}

.trust-name-logo {
  max-width: min(210px, 100%);
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.04);
}

.trust-name-logo.logo-standard-wide {
  max-width: min(220px, 100%);
}

.trust-name-logo.logo-scale-up-sm {
  transform: scale(1.08);
  transform-origin: center;
}

.trust-name-logo.logo-scale-up {
  transform: scale(1.14);
  transform-origin: center;
}

.trust-name-logo.logo-scale-up-lg {
  transform: scale(1.22);
  transform-origin: center;
}

.trust-name-logo.logo-scale-up-xl {
  transform: scale(1.3);
  transform-origin: center;
}

.trust-name-logo.logo-scale-up-xxl {
  transform: scale(1.42);
  transform-origin: center;
}

.trust-name-logo.logo-scale-up-max {
  transform: scale(1.62);
  transform-origin: center;
}

.trust-marquee-logo {
  max-width: 132px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.04);
}

.trust-logos-section .section-kicker {
  background: rgba(255, 255, 255, 0.82);
}

.trust-logos-section .section-title,
.trust-logos-section .trust-name-card strong {
  color: #08263f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.16);
}

.trust-logos-section .section-copy {
  color: rgba(18, 38, 58, 0.92);
}

.trust-name-card strong {
  display: block;
  max-width: 18ch;
  color: var(--color-primary-900);
  font-family: var(--font-display);
  font-size: 1.04rem;
  line-height: 1.38;
  letter-spacing: -0.02em;
}

.experience-strip-section {
  padding-top: 0;
}

.experience-stage-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(248, 251, 253, 0.56) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.3) 38%, rgba(244, 248, 251, 0.28) 100%),
    url("../assets/home/experience-background.png") center center / cover no-repeat;
}

.experience-stage-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at top right, rgba(11, 132, 216, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(244, 248, 251, 0.04) 100%);
  pointer-events: none;
}

.experience-sectors-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56) 0%, rgba(248, 251, 253, 0.58) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.34) 40%, rgba(244, 248, 251, 0.3) 100%),
    url("../assets/home/sectors-background.png") center center / cover no-repeat;
}

.experience-sectors-section::before {
  background:
    radial-gradient(circle at top left, rgba(11, 132, 216, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(244, 248, 251, 0.04) 100%);
}

.experience-stage-section .container,
.experience-stage-section .section-shell {
  position: relative;
  z-index: 1;
}

.experience-strip-section .section-header-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.52fr) minmax(19rem, 0.78fr);
  gap: var(--space-4);
}

.experience-strip-section .section-intro-panel,
.experience-strip-section .section-copy-panel {
  min-height: 100%;
}

.experience-strip-section .section-intro-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-copy-panel {
  justify-content: center;
  padding: 1.55rem 1.45rem;
  font-size: 0.98rem;
  line-height: 1.68;
}

.experience-visual-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  min-height: 100%;
  padding: 0;
  border: 1px solid rgba(214, 224, 232, 0.86);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 249, 0.96));
  box-shadow: 0 14px 28px rgba(11, 31, 51, 0.05);
}

.experience-visual-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(11, 31, 51, 0.44) 100%),
    radial-gradient(circle at top right, rgba(11, 132, 216, 0.18), transparent 28%);
}

.experience-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-visual-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.15rem 1.2rem 1.25rem;
}

.experience-visual-overlay span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 0.7rem;
  padding: 0 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.experience-visual-overlay strong {
  display: block;
  max-width: 16ch;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.24;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 22px rgba(11, 31, 51, 0.32);
}

.experience-highlight-card,
.brand-partner-chip {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.experience-highlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem var(--card-padding-lg) var(--card-padding-lg);
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 253, 0.96) 100%);
}

.experience-highlight-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--color-primary-500);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.experience-highlight-card strong {
  margin-top: 0.75rem;
  color: var(--color-primary-900);
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.45vw, 1.45rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.experience-highlight-card p {
  margin: 0.9rem 0 0;
  color: var(--color-text-muted);
  line-height: 1.64;
}

.home-hero {
  position: relative;
  padding: 2.4rem 0 2.2rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0.78) 58%, rgba(244, 248, 251, 0.72) 100%),
    url("../assets/home/hero-background.png") center center / cover no-repeat;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at top right, rgba(11, 132, 216, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(244, 248, 251, 0.14) 100%);
  pointer-events: none;
}

.home-hero .section-shell {
  position: relative;
  z-index: 1;
}

.hero-layout {
  --bs-gutter-x: var(--grid-gap-lg);
}

.hero-copy-block {
  max-width: 42rem;
  padding-right: var(--space-6);
}

.hero-title {
  margin: 0;
  max-width: 9.2ch;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4vw, 3.95rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: var(--color-primary-900);
}

.hero-summary {
  margin: var(--space-5) 0 0;
  max-width: 54ch;
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.hero-actions {
  margin-top: 1.4rem;
}

.hero-facts-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.7rem;
}

.hero-fact-card {
  min-height: 100%;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(21, 103, 179, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
}

.hero-fact-card span,
.hero-detail-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 0.65rem;
  color: var(--color-primary-500);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-fact-card strong {
  display: block;
  color: var(--color-text);
  font-size: 0.94rem;
  line-height: 1.58;
}

.hero-visual-shell {
  display: grid;
  gap: var(--space-4);
  height: 100%;
}

.hero-photo-stage {
  min-height: 24.5rem;
  padding: 1.1rem;
  border: 1px solid rgba(21, 103, 179, 0.12);
  border-radius: var(--radius-2xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 249, 0.96));
  box-shadow: var(--shadow-lg);
}

.hero-photo-main,
.about-visual-main {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  background:
    linear-gradient(135deg, rgba(11, 31, 51, 0.22), rgba(11, 132, 216, 0.14)),
    linear-gradient(135deg, #c9d8e5 0%, #edf4f9 100%);
}

.hero-photo-main::before,
.about-visual-main::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(11, 31, 51, 0.3) 100%),
    radial-gradient(circle at top right, rgba(11, 132, 216, 0.28), transparent 24%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 92px);
}

.hero-photo-main {
  display: flex;
  align-items: end;
  min-height: 100%;
  padding: 1.35rem;
}

.hero-photo-image,
.about-visual-image,
.contact-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-copy,
.about-visual-main {
  z-index: 1;
}

.hero-photo-copy,
.about-visual-main {
  position: relative;
}

.hero-photo-copy {
  max-width: 20rem;
  padding: 0.9rem 0.95rem 1rem;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.18) 0%, rgba(11, 31, 51, 0.64) 100%);
  backdrop-filter: blur(3px);
  box-shadow: 0 14px 28px rgba(11, 31, 51, 0.16);
}

.hero-photo-copy span,
.about-visual-main span,
.trust-band-card span,
.about-fact-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 0.7rem;
  padding: 0 0.72rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-photo-copy strong,
.about-visual-main strong {
  position: relative;
  display: block;
  max-width: 17ch;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.6vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 22px rgba(11, 31, 51, 0.34);
}

.hero-side-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: 0.2rem;
}

.hero-detail-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(21, 103, 179, 0.12);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.hero-detail-kicker {
  margin: 0 0 0.6rem;
  color: var(--color-primary-500);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-detail-card h2 {
  margin: 0;
  color: var(--color-primary-900);
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-detail-card strong {
  display: block;
  color: var(--color-text);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-detail-card p {
  margin: 0.75rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.trust-band-section {
  padding: 0 0 var(--space-10);
}

.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
}

.trust-band-card,
.service-card-premium,
.why-card,
.about-fact-card,
.contact-direct-card,
.contact-form-card,
.projects-overview-card,
.projects-support-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.trust-band-card {
  height: 100%;
  padding: var(--card-padding);
}

.trust-band-card p {
  margin: 0.75rem 0 0;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.service-card-premium {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem var(--card-padding-lg) var(--card-padding-lg);
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 253, 0.98) 100%);
}

.service-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-pill);
  background: rgba(11, 132, 216, 0.08);
  color: var(--color-primary-600);
  font-size: 0.88rem;
  font-weight: 800;
}

.service-card-premium h3,
.why-card h3,
.projects-support-card h3,
.contact-direct-card strong {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--color-primary-900);
  line-height: 1.26;
}

.service-card-premium p,
.why-card p,
.projects-support-card p,
.projects-overview-card p,
.contact-direct-card p {
  margin: 0.85rem 0 0;
  color: var(--color-text-muted);
  line-height: 1.68;
}

.service-card-premium small {
  display: block;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--color-text-muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.service-card-premium-featured {
  border-color: rgba(11, 132, 216, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 250, 254, 1) 100%);
}

.why-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.7rem var(--card-padding) var(--card-padding);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 253, 0.98) 100%);
  min-height: 100%;
}

.experience-sectors-section .section-intro-panel {
  max-width: none;
  min-height: 100%;
}

.experience-sectors-section .site-card-row {
  --bs-gutter-y: 1rem;
}

.sectors-intro-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: none;
  height: 100%;
  padding: 1.85rem 1.55rem 1.6rem;
}

.sectors-intro-panel .section-title {
  max-width: 9.6ch;
  font-size: clamp(1.82rem, 2.2vw, 2.65rem);
  line-height: 1.04;
}

.sectors-intro-panel .section-copy {
  max-width: 31ch;
  margin-top: 1rem;
}

.sectors-layout-row {
  --bs-gutter-x: 1.35rem;
}

.sectors-card-grid {
  height: 100%;
}

.sectors-card-grid > .site-col {
  display: flex;
}

.why-card-support {
  margin-top: auto;
  padding-top: 0.8rem;
  color: var(--color-primary-600);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
}

.why-card {
  min-height: 100%;
  padding: 1.45rem 1.35rem 1.3rem;
}

.why-card h3 {
  font-size: 1.02rem;
}

.why-card p {
  font-size: 0.92rem;
  line-height: 1.62;
}

.why-process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.why-process-item {
  padding: 1rem 1.05rem;
  border-top: 4px solid rgba(11, 132, 216, 0.72);
  border-radius: 0 0 1rem 1rem;
  background: linear-gradient(180deg, rgba(11, 132, 216, 0.05), rgba(255, 255, 255, 0.98));
}

.why-process-item strong {
  display: block;
  color: var(--color-text);
}

.why-process-item span {
  display: block;
  margin-top: 0.4rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.project-method-strip,
.company-profile-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.project-method-item,
.company-profile-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(214, 224, 232, 0.82);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 22px rgba(11, 31, 51, 0.04);
}

.project-method-item strong,
.company-profile-item strong {
  color: var(--color-primary-900);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.28;
}

.company-profile-item span {
  margin-top: 0.45rem;
  color: var(--color-text-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.project-card,
.project-list-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.project-card:hover,
.project-list-card:hover,
.project-list-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(11, 132, 216, 0.26);
  box-shadow: var(--shadow-lg);
}

.project-card:focus-within,
.project-list-card:focus-within {
  border-color: rgba(11, 132, 216, 0.34);
  box-shadow: 0 0 0 4px rgba(11, 132, 216, 0.1), var(--shadow-lg);
}

.project-card-link {
  display: block;
  height: 100%;
}

.project-card-link:focus-visible,
.project-list-button:focus-visible,
.projects-filter-chip:focus-visible,
.project-thumb:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(11, 132, 216, 0.14);
  border-radius: var(--radius-lg);
}

.project-card-figure,
.project-list-figure {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #dfeaf3, #eff5fa);
}

.project-card-figure img,
.project-list-figure img,
.project-detail-figure img,
.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.project-card:hover .project-card-figure img,
.project-list-card:hover .project-list-figure img,
.project-list-card.is-active .project-list-figure img {
  transform: scale(1.03);
}

.project-visual-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-4);
  background: linear-gradient(180deg, rgba(11, 31, 51, 0.14) 0%, rgba(11, 31, 51, 0.02) 35%, rgba(11, 31, 51, 0.6) 100%);
  pointer-events: none;
}

.project-visual-top,
.project-visual-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.project-visual-chip,
.project-visual-year,
.project-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 800;
}

.project-visual-chip {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-900);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-visual-year {
  background: rgba(11, 31, 51, 0.72);
  color: var(--color-white);
}

.project-visual-location {
  margin: 0;
  color: var(--color-white);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.project-content,
.project-list-content {
  padding: 1.35rem 1.4rem 1.45rem;
}

.project-kicker,
.project-list-topline,
.project-meta-line {
  margin: 0 0 0.75rem;
  color: var(--color-primary-500);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-list-topline {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
}

.project-meta-line {
  margin: 1rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

.project-card h3,
.project-list-content h3,
.project-detail-head h3 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--color-primary-900);
  letter-spacing: -0.03em;
}

.project-card h3,
.project-list-content h3 {
  font-size: 1.24rem;
}

.project-content p:last-child,
.project-list-content p,
.project-detail-head p {
  margin: 0.9rem 0 0;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.about-visual-panel {
  display: grid;
  gap: var(--space-4);
}

.about-section-layout {
  align-items: stretch;
}

.about-story-block {
  max-width: 46rem;
}

.about-subtitle {
  margin: 0;
  max-width: 56ch;
  color: var(--color-primary-900);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.75;
}

.about-story-copy {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.about-story-copy p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.82;
}

.about-visual-main {
  display: flex;
  align-items: end;
  min-height: 27rem;
  padding: var(--space-8);
}

.about-visual-note {
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(21, 103, 179, 0.12);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.about-pillars-grid {
  margin-top: var(--space-2);
}

.company-profile-strip {
  margin-top: 1.2rem;
}

.services-copy-panel {
  max-width: 41rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 19rem;
}

.service-focus-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.service-focus-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(214, 224, 232, 0.82);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 22px rgba(11, 31, 51, 0.04);
}

.service-focus-item strong {
  color: var(--color-primary-900);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.service-focus-item span {
  margin-top: 0.45rem;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  line-height: 1.48;
}

.services-hero-visual {
  height: 100%;
  min-height: 100%;
  width: 100%;
  max-width: none;
  margin: 0 0 0 auto;
  align-self: stretch;
}

.services-hero-visual .section-hero-overlay {
  max-width: 20rem;
  padding: 0.9rem 0.95rem 1rem;
}

.about-pillar-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.65rem var(--card-padding) var(--card-padding);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.about-pillar-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--color-primary-900);
  letter-spacing: -0.03em;
}

.about-pillar-card p {
  margin: 0.8rem 0 0;
  color: var(--color-text-muted);
  line-height: 1.72;
}

.about-closing-quote {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(21, 103, 179, 0.12);
}

.about-closing-quote p {
  max-width: 62ch;
  margin: 0;
  color: var(--color-primary-900);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.5;
  letter-spacing: -0.03em;
}

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

.brand-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.brand-partner-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  padding: var(--space-6) var(--space-5);
  text-align: center;
}

.brand-partner-chip img {
  max-width: min(240px, 100%);
  max-height: 104px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo-lg {
  max-width: min(190px, 100%);
  max-height: 94px;
}

.brand-logo-bravo {
  max-width: min(228px, 100%);
  max-height: 92px;
}

.brand-logo-frigair {
  max-width: min(250px, 100%);
  max-height: 112px;
}

.brand-logo-gree {
  max-width: min(205px, 100%);
  max-height: 82px;
}

.brand-logo-anwo {
  max-width: min(210px, 100%);
  max-height: 86px;
}

.brand-logo-syp {
  max-width: min(130px, 100%);
  max-height: 130px;
}

.contact-section {
  padding: 0 0 6.5rem;
}

.contact-shell {
  padding: 1.45rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  box-shadow: var(--shadow-md);
}

.contact-copy-block {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-right: 0;
}

.contact-copy-panel {
  min-height: 100%;
  justify-content: space-between;
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  margin-top: 0;
}

.contact-intro-visual {
  width: 100%;
}

.contact-meta-list {
    display: grid;
    gap: 0.58rem;
    margin-top: var(--space-6);
    color: var(--color-text-muted);
    font-size: 0.96rem;
    line-height: 1.58;
    align-content: start;
}

.contact-meta-list a {
    color: var(--color-primary-600);
    font-weight: 700;
    width: fit-content;
}

.contact-meta-list a:hover,
.contact-meta-list a:focus {
  color: var(--color-primary-500);
}

.contact-direct-card {
  display: flex;
  flex-direction: column;
  padding: 1.65rem var(--card-padding) var(--card-padding);
  min-height: 100%;
}

.contact-form-card {
  padding: 1.35rem 1.4rem;
  align-self: start;
}

.contact-status-stack {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.contact-status-alert {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(21, 103, 179, 0.12);
  border-radius: var(--radius-md);
  background: rgba(11, 132, 216, 0.08);
  color: var(--color-primary-900);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.55;
}

.contact-status-alert.is-success {
  border-color: rgba(22, 163, 74, 0.22);
  background: rgba(22, 163, 74, 0.1);
  color: #166534;
}

.contact-status-alert.is-error,
.contact-status-alert.is-warning {
  border-color: rgba(217, 31, 38, 0.16);
  background: rgba(217, 31, 38, 0.07);
  color: #8c1c23;
}

.contact-visual-card {
  position: relative;
  overflow: hidden;
  min-height: 16.5rem;
  margin-top: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #d8e4ed, #eef4f8);
  box-shadow: var(--shadow-md);
}

.contact-map-inline-card {
  overflow: hidden;
  min-height: 18rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.contact-map-inline-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 18rem;
  border: 0;
}

.contact-bottom-row {
  margin-top: 1.15rem;
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.contact-direct-grid .contact-direct-card {
  height: 100%;
}

.contact-intro-visual-bottom {
  height: 100%;
  min-height: 100%;
  margin-top: 0;
}

.contact-top-row {
  --bs-gutter-y: 1.1rem;
}

.form-label {
  margin-bottom: 0.55rem;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-input {
  min-height: 52px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  color: var(--color-text);
  background: #fbfdfe;
}

.site-input::placeholder {
  color: rgba(94, 106, 117, 0.82);
}

.site-input:focus {
  border-color: rgba(11, 132, 216, 0.48);
  box-shadow: 0 0 0 0.22rem rgba(11, 132, 216, 0.12);
}

textarea.site-input {
  min-height: 148px;
}

.form-note {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.field-error {
  margin: 0.45rem 0 0;
  color: #a72c31;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.45;
}

.footer-brand-link {
  display: inline-block;
}

.site-footer {
  padding: 4rem 0 2rem;
  background: var(--color-primary-900);
  color: var(--color-text-inverse);
}

.footer-main {
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(237, 244, 250, 0.12);
}

.footer-brand-mark-shell {
  width: 86px;
  height: 86px;
}

.footer-brand-mark-image {
  filter: saturate(1.06) contrast(1.04) brightness(1.02);
}

.footer-brand-title {
  color: var(--color-white);
}

.footer-brand-legal {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(237, 244, 250, 0.92);
}

.footer-brand-subtitle {
  color: rgba(237, 244, 250, 0.7);
}

.footer-description {
  max-width: 54ch;
  margin: 1.4rem 0 0;
  color: rgba(237, 244, 250, 0.72);
  line-height: 1.75;
}

.footer-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-white);
}

.footer-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(237, 244, 250, 0.7);
}

.footer-list a:hover,
.footer-list a:focus {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-top: 1.3rem;
  color: rgba(237, 244, 250, 0.64);
  font-size: var(--text-sm);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--color-white);
  font-weight: 700;
}

.reveal {
  animation: rise 700ms ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trust-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333333%);
  }
}

@media (max-width: 1199px) {
  .site-navbar {
    min-height: auto;
  }

  .navbar-collapse {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
  }

  .site-header-cta {
    width: 100%;
  }

  .section-header-inline {
    align-items: start;
    flex-direction: column;
  }

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

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

@media (max-width: 991px) {
  .home-hero,
  .site-section,
  .contact-section {
    padding: 4.5rem 0;
  }

  .hero-layout {
    --bs-gutter-x: 1.75rem;
  }

  .trust-band-grid,
  .why-process-strip,
  .hero-side-grid,
  .contact-direct-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-hero-visual {
    min-height: 18rem;
  }

  .hero-facts-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-stage {
    min-height: auto;
  }

  .hero-photo-main {
    min-height: 23rem;
  }

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

  .project-method-strip,
  .company-profile-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-logos-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .trust-logos-header .section-copy,
  .trust-logos-copy {
    justify-self: start;
    max-width: 36rem;
  }

  .services-hero-visual {
    max-width: none;
    margin-left: 0;
  }

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

  .brand-mark-shell,
  .footer-brand-mark-shell {
    width: 74px;
    height: 74px;
  }

  .home-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(244, 248, 251, 0.84) 100%),
      url("../assets/home/hero-background.png") center center / cover no-repeat;
  }

  .section-surface-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(244, 248, 251, 0.86) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(244, 248, 251, 0.18) 100%);
  }

  .experience-strip-section .section-header-panel {
    grid-template-columns: 1fr;
  }

  .experience-sectors-section .section-intro-panel {
    max-width: none;
  }
}

@media (max-width: 767px) {
    .container {
      width: min(var(--container-max), calc(100% - 24px));
    }
  
    .site-topbar-row {
      align-items: center !important;
      justify-content: center !important;
      gap: 0 !important;
    }

    .site-navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: var(--space-3);
      padding-bottom: var(--space-3);
    }
    
    .site-toggler {
      margin-top: 0;
      margin-left: auto;
      flex: 0 0 auto;
    }

    .btn {
      min-height: 48px;
      white-space: normal;
      text-align: center;
    }
  
    .topbar-copy {
      display: none;
    }

    .topbar-link {
      font-size: 0.95rem;
      width: 100%;
      text-align: center;
    }

    .site-brand {
      flex: 1 1 auto;
      min-width: 0;
      margin-right: 0.75rem;
    }

    .hero-title,
    .section-title {
      max-width: none;
    }

    .hero-copy-block {
      padding-right: 0;
      text-align: center;
    }

    .hero-summary {
      max-width: 22rem;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-actions {
      justify-content: center;
      align-items: stretch;
      display: flex !important;
      flex-direction: column;
    }

    .hero-actions .btn {
      width: 100%;
      max-width: 18rem;
      margin-left: auto;
      margin-right: auto;
    }
  
    .contact-form-card,
    .projects-overview-card,
    .projects-support-card,
  .service-card-premium,
  .why-card,
  .trust-band-card,
  .contact-direct-card,
  .about-fact-card,
  .contact-shell {
    padding: 1.35rem;
  }

  .section-intro-panel,
  .section-copy-panel,
  .services-copy-panel,
  .contact-copy-panel {
    padding: 1.1rem 1.1rem 1.2rem;
  }

  .project-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-method-strip,
  .company-profile-strip {
    grid-template-columns: 1fr;
  }

  .trust-band-grid,
  .why-process-strip,
  .hero-side-grid,
  .hero-facts-grid,
  .contact-direct-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-name-marquee::before,
  .trust-name-marquee::after {
    width: 2.2rem;
  }

  .trust-name-marquee {
    padding: 0.75rem;
  }

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

  .contact-map-inline-card,
  .contact-map-inline-card iframe {
    min-height: 16rem;
  }

  .trust-name-logo-wrap {
    min-height: 72px;
    padding: 0.75rem 0.85rem;
  }

  .trust-name-logo {
    max-width: min(150px, 100%);
    max-height: 52px;
  }

  .experience-stage-section {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 251, 253, 0.96) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(244, 248, 251, 0.84) 100%),
      url("../assets/home/about-company.png") center center / cover no-repeat;
  }

  .trust-marquee-logo {
    max-width: 104px;
    max-height: 34px;
  }

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

  .hero-photo-main,
  .about-visual-main,
  .section-hero-visual {
    min-height: 20rem;
    padding: 1.4rem;
  }

  .brand-mark-wrap,
  .footer-brand-wrap {
    gap: 0.7rem;
  }

  .brand-mark-shell,
  .footer-brand-mark-shell {
    width: 62px;
    height: 62px;
  }

  .brand-wordmark-title,
  .footer-brand-title {
    font-size: 1.02rem;
  }

  .brand-wordmark-legal,
  .footer-brand-legal {
    min-height: 24px;
    padding: 0 0.45rem;
    font-size: 0.66rem;
  }

    .brand-wordmark-subtitle,
    .footer-brand-subtitle {
      font-size: 0.68rem;
    }

    .brand-wordmark-main {
      font-size: 1.12rem;
      line-height: 1.05;
    }

    .brand-wordmark-subtitle {
      display: none;
    }

    .brand-mark-wrap {
      gap: 0.62rem;
      min-width: 0;
    }

    .brand-mark-shell {
      width: 48px;
      height: 48px;
    }
  
    .footer-bottom {
      justify-items: start;
  }
}
