:root {
  --bg: #0a0a0a;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.88);
  --text: #101010;
  --text-inverse: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --border: rgba(16, 16, 16, 0.12);
  --accent: #18aeb0;
  --accent-dark: #10888a;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.24);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-inverse);
  background: var(--bg);
}

.about-page {
  background: #f6f6f2;
  color: white;
  font-weight: 400;
}

main {
  display: block;
}

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

button,
input {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.hero-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(24, 174, 176, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

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

.page-hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  background: #111111;
}

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

.topbar,
.navbar,
.hero-grid,
.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-content {
  display: flex;
  align-items: flex-end;
  min-height: 82vh;
  padding-top: 170px;
  padding-bottom: 88px;
}

.page-hero-copy {
  max-width: 640px;
  padding: 32px 34px;
  background: rgba(10, 10, 10, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  backdrop-filter: blur(8px);
}

.page-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.page-hero-text {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.8;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: rgba(8, 8, 8, 0.86);
  transform: translateY(0);
  transition: transform 0.3s ease, background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.home-page .site-header {
  background: transparent;
}

.home-page .site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.86);
}

.site-header.is-scrolled {
  background: rgba(8, 8, 8, 0.86);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 14px;
}

.topbar-links {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.consult-btn,
.primary-btn,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--accent);
  color: var(--text-inverse);
  transition: 0.25s ease;
  cursor: pointer;
}

.consult-btn {
  min-width: 180px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
}

.consult-btn:hover,
.primary-btn:hover,
.submit-btn:hover {
  background: var(--accent-dark);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 4px 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  width: auto;
  height: 62px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 0.98rem;
  color: var(--text-inverse);
}

.nav-links a {
  position: relative;
  padding-bottom: 8px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  width: min(20vw, 360px);
  background: #2d7c7b;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
  box-shadow: -18px 0 48px rgba(0, 0, 0, 0.24);
}

.mobile-drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px 16px 24px;
  overflow-y: auto;
}

.drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 34px;
  padding: 0;
  background: #134846;
  border: 0;
  border-radius: 50%;
  color: #ff8da0;
  cursor: pointer;
}

.drawer-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.drawer-close span:first-child {
  transform: rotate(45deg);
}

.drawer-close span:last-child {
  transform: rotate(-45deg);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
}

.drawer-nav a {
  padding: 12px 12px 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

.drawer-nav a:last-child {
  padding-bottom: 16px;
}

.drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 18px 0 16px;
  background: #189b9c;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
}

.drawer-social p {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: #ffffff;
  line-height: 0;
}

.social-list a svg,
.footer-social a svg,
.contact-socials a svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.drawer-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  z-index: 25;
}

.icon-btn,
.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--text-inverse);
  cursor: pointer;
}

.icon-search {
  position: relative;
  width: 15px;
  height: 15px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon-search::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -6px;
  width: 8px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.menu-btn {
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 380px);
  gap: 48px;
  align-items: end;
  min-height: calc(100vh - 140px);
  padding: 180px 0 64px;
}

.hero-copy {
  max-width: 720px;
  padding-bottom: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(1.5rem, 5vw, 3.9rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
  max-width: 760px;
}

.hero-text {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-inverse);
  backdrop-filter: blur(12px);
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lead-card {
  background: var(--surface-soft);
  color: var(--text);
  border-radius: 34px;
  padding: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.lead-card h2 {
  margin: 0 0 22px;
  color: var(--accent-dark);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  outline: none;
}

.lead-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(24, 174, 176, 0.12);
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #171717;
  font-size: 0.98rem;
  line-height: 1.65;
}

.check-row input {
  margin-top: 5px;
}

.submit-btn {
  width: 100%;
  height: 56px;
  border-radius: 14px;
  font-weight: 700;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: #1f5f60;
  font-weight: 600;
}

.reviews-section {
  background: #ffffff;
  color: #262626;
  padding: 64px 0;
}

.reviews-wrap {
  display: grid;
  grid-template-columns: 220px 60px minmax(0, 1fr) 60px;
  align-items: center;
  gap: 30px;
}

.google-score-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.google-mark {
  position: relative;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: conic-gradient(#4285f4 0 27%, #34a853 27% 52%, #fbbc05 52% 76%, #ea4335 76% 100%);
}

.g-cut {
  position: absolute;
  inset: 27px;
  border-radius: 50%;
  background: #ffffff;
}

.g-bar {
  position: absolute;
  top: 54px;
  right: 12px;
  width: 56px;
  height: 19px;
  background: #4285f4;
}

.score-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.score-line strong {
  font-size: 2.15rem;
  line-height: 1;
}

.stars {
  color: #f4b223;
  letter-spacing: 0.08em;
}

.review-arrow {
  width: 56px;
  height: 56px;
  border: 0;
  background: transparent;
  color: #252525;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.review-arrow:hover {
  color: var(--accent-dark);
  transform: translateY(-2px);
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.review-card.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.review-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cad0d8, #8399b4);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
}

.review-head h3 {
  margin: 0 0 4px;
  color: #232323;
  font-size: 1.85rem;
  line-height: 1.08;
}

.review-head p {
  margin: 0 0 10px;
  color: #5c5c5c;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7a7a7a;
}

.review-text {
  margin: 0;
  max-width: 820px;
  color: #3a3a3a;
  font-size: 1.1rem;
  line-height: 1.72;
}

.catalogue-section {
  background: linear-gradient(180deg, #ffffff 0%, #f2f5f7 100%);
  padding: 26px 0 82px;
  overflow: hidden;
}

.catalogue-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  color: #171717;
}

.catalogue-kicker {
  margin: 0 0 10px;
  color: #262626;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.catalogue-head h2 {
  margin: 0;
  max-width: 680px;
  color: #4d4d4d;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.catalogue-controls {
  display: flex;
  gap: 12px;
}

.catalogue-arrow {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 50%;
  background: #ffffff;
  color: #181818;
  font-size: 1.6rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.catalogue-arrow:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

.catalogue-arrow:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.catalogue-viewport {
  overflow: hidden;
}

.catalogue-track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}

.catalogue-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}

.catalogue-card {
  min-height: 184px;
  position: relative;
  overflow: hidden;
  background: #122127;
}

.catalogue-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.catalogue-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

.catalogue-card-inner {
    position: relative;
    z-index: 1;
    min-height: 549px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 16px 14px 14px;
    object-fit: cover;
}

.catalogue-card-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.catalogue-card h3 {
  margin: 0;
  max-width: 160px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
}

.catalogue-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.78);
  color: #ffffff;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.catalogue-card a:hover {
  background: var(--accent);
}

.catalogue-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.about-main {
  color: #1a1a1a;
}

.about-intro-section,
.origin-section,
.accomplishments-section,
.trusted-section {
  padding: 86px 0;
}

.about-split,
.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.about-image-frame,
.team-visual,
.origin-visual {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #d8d5cf;
  box-shadow: 0 28px 50px rgba(24, 25, 26, 0.12);
}

.about-image-frame img,
.team-visual img,
.origin-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-frame {
  min-height: 520px;
}

.about-copy-panel h2,
.origin-copy h2,
.impact-copy h2,
.team-copy h2,
.section-heading h2 {
  margin: 0 0 18px;
  color: #1d2122;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-copy-panel p,
.origin-copy p,
.impact-copy p,
.team-copy p,
.accomplishment-item p {
  margin: 0 0 16px;
  color: #53585b;
  font-size: 1rem;
  line-height: 1.82;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.centered-kicker {
  text-align: center;
}

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

.origin-card {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 42px;
  align-items: center;
  padding: 42px;
  background: linear-gradient(145deg, #ffffff, #f0f2f3);
  border-radius: 32px;
  box-shadow: 0 26px 44px rgba(18, 26, 29, 0.08);
}

.origin-visual {
  min-height: 360px;
}

.impact-section {
  padding: 0 0 86px;
}

.impact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 42px 48px;
  background: linear-gradient(90deg, #1d9b9d 0%, #168d8f 100%);
  color: #ffffff;
  border-radius: 0;
  box-shadow: 0 26px 50px rgba(11, 93, 95, 0.18);
}

.impact-label {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
}

.impact-number {
  font-size: clamp(4rem, 8vw, 7.2rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.impact-copy h2,
.impact-copy p {
  color: #ffffff;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 42px;
  text-align: center;
}

.accomplishment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.accomplishment-item {
  padding: 34px 26px 30px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(16, 16, 16, 0.06);
  border-radius: 28px;
  box-shadow: 0 22px 40px rgba(19, 25, 26, 0.06);
}

.accomplishment-item h3 {
  margin: 22px 0 12px;
  color: #202425;
  font-size: 1.5rem;
}

.progress-ring {
  --ring-track: rgba(20, 20, 20, 0.12);
  width: 144px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 58%, transparent 59%),
    conic-gradient(var(--accent) calc(var(--value) * 1%), var(--ring-track) 0);
}

.progress-ring span {
  color: #1f2425;
  font-size: 1.65rem;
  font-weight: 700;
}

.team-section {
  padding: 0 0 86px;
}

.team-layout {
  padding: 52px;
  background: linear-gradient(145deg, #fefefe, #f0f1f2);
  border-radius: 32px;
  box-shadow: 0 24px 42px rgba(21, 24, 24, 0.06);
}

.team-visual {
  min-height: 420px;
}

.team-visual img {
  object-position: center;
}

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

.trusted-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.trusted-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(17, 22, 23, 0.06);
  font-size: 1.55rem;
  font-weight: 800;
}

.trusted-brand img {
  max-width: 100%;
  max-height: 54px;
}

.catalogue-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(28, 118, 121, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.catalogue-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.care-section {
  padding: 88px 0;
  background: #f7f4ef;
  color: #181818;
  overflow: hidden;
}

.care-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.care-visual {
  position: relative;
}

.care-visual-left {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.care-visual-stack {
  display: grid;
  gap: 18px;
}

.care-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #d5d8da;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
}

.care-image-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.care-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18));
}

.tall-image {
  min-height: 460px;
}

.wide-image {
  min-height: 250px;
}

.compact-image {
  min-height: 194px;
}

.care-floating-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.68);
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.care-floating-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 800;
}

.care-floating-note span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
}

.care-content {
  position: relative;
  z-index: 1;
  padding: 34px 32px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.care-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.care-content h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.care-content p {
  margin: 0 0 16px;
  color: #505050;
  font-size: 1rem;
  line-height: 1.8;
}

.feature-section {
  padding: 78px 0 82px;
  background: #ffffff;
  color: #222222;
}

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

.feature-item {
  padding: 10px 28px 0;
  text-align: center;
  border-right: 1px solid rgba(28, 118, 121, 0.7);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 26px;
  border: 2px solid rgba(28, 118, 121, 0.9);
  border-radius: 50%;
  color: #1c7679;
}

.feature-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item h3 {
  margin: 0 0 12px;
  color: #28797c;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.feature-item p {
  margin: 0 auto;
  max-width: 260px;
  color: #434343;
  font-size: 1rem;
  line-height: 1.72;
}

.promo-section {
  background: #ffffff;
  overflow: hidden;
}

.promo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  align-items: stretch;
}

.promo-visual {
  position: relative;
  min-height: 520px;
  background: #d4d9da;
}

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

.promo-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1aa9ab;
  box-shadow: 0 0 0 6px rgba(26, 169, 171, 0.12);
}

.promo-dot-top {
  top: 28px;
  left: 8px;
}

.promo-dot-mid {
  top: 132px;
  left: 102px;
}

.promo-dot-left {
  top: 262px;
  left: 82px;
}

.promo-dot-bottom {
  bottom: 132px;
  left: 214px;
}

.promo-dot-center {
  bottom: 68px;
  left: 384px;
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2d7d7d;
  color: #ffffff;
  padding: 54px 40px;
}

.promo-content-inner {
  max-width: 560px;
  text-align: center;
}

.promo-content h2 {
  margin: 0 0 26px;
  font-size: clamp(2rem, 4.1vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.promo-content p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.7;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  margin-top: 28px;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.promo-btn:hover {
  background: #ffffff;
  color: #1a4c4d;
  transform: translateY(-2px);
}

.partners-section {
  padding: 72px 0 78px;
  background:
    radial-gradient(circle at top center, rgba(24, 174, 176, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f8f8 100%);
  color: var(--text);
  overflow: hidden;
}

.partners-head {
  margin-bottom: 34px;
  text-align: center;
}

.partners-head h2 {
  margin: 0;
  color: #1b2020;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.partners-slider {
  position: relative;
  overflow: hidden;
  padding: 12px 0;
}

.partners-slider::before,
.partners-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(9vw, 110px);
  z-index: 1;
  pointer-events: none;
}

.partners-slider::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-slider::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 28px;
  animation: partners-marquee 48s linear infinite;
}

.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 92px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(13, 34, 34, 0.08);
  text-align: center;
  white-space: nowrap;
}

.partner-logo img {
  max-width: 100%;
  max-height: 56px;
  display: block;
}

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

  to {
    transform: translateX(calc(-50% - 14px));
  }
}

.site-footer {
  position: relative;
  background: #121212;
  color: #ffffff;
  overflow: hidden;
}

.footer-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.58), rgba(24, 24, 24, 0.72));
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 1.25fr) repeat(3, minmax(140px, 1fr));
  gap: 42px;
  padding: 54px 0 34px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-brand-mark {
  height: 56px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact p,
.footer-contact a {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-links-block a:hover,
.footer-social a:hover {
  color: #9fe6e7;
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  color: #ffffff;
  line-height: 0;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #111111;
}

.footer-links-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-block h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-links-block a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.45;
  text-decoration: none;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 0 0 28px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}

.contact-page {
  background: #f3f4f2;
  color: var(--text);
}

.contact-hero-shell {
  padding-top: 112px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f6 100%);
}

.contact-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  gap: 34px;
  align-items: center;
  padding: 64px 0 54px;
}

.contact-hero-copy {
  max-width: 470px;
}

.contact-hero-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #f06c72;
}

.contact-hero-copy h1 {
  margin: 0 0 16px;
  color: #262829;
  font-size: clamp(2.2rem, 4.2vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-hero-copy p {
  margin: 0;
  color: #5c6365;
  font-size: 1.04rem;
  line-height: 1.76;
}

.contact-hero-art {
  justify-self: end;
  width: min(100%, 430px);
}

.contact-hero-art img {
  width: 100%;
  display: block;
}

.contact-main {
  padding-bottom: 76px;
}

.contact-card-section {
  padding: 0 0 28px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: 0;
  background: #ffffff;
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: 0 22px 42px rgba(18, 26, 29, 0.08);
}

.contact-details-panel,
.contact-form-panel {
  padding: 36px 28px 32px;
}

.contact-details-panel {
  border-right: 1px solid rgba(16, 16, 16, 0.08);
}

.contact-details-panel h2,
.contact-form-panel h2 {
  margin: 0 0 14px;
  color: #1f2324;
  font-size: 1.8rem;
  line-height: 1.18;
}

.contact-intro {
  margin: 0 0 24px;
  color: #6e7476;
  font-size: 0.95rem;
}

.contact-detail-list {
  display: grid;
  gap: 18px;
}

.contact-detail-item h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 1rem;
}

.contact-detail-item p,
.contact-detail-item a {
  display: block;
  margin: 0;
  color: #636a6c;
  font-size: 0.98rem;
  line-height: 1.72;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(16, 16, 16, 0.16);
  border-radius: 50%;
  color: #5c6467;
  line-height: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.contact-form-grid label {
  display: block;
}

.contact-form-grid input,
.contact-form-grid select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #dbdfde;
  background: #f7f7f6;
  color: #2c3031;
}

.contact-form-grid select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

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

.contact-submit-btn {
  min-width: 108px;
  padding: 11px 24px;
  border-radius: 999px;
  justify-self: start;
}

.contact-map-section {
  padding-top: 10px;
}

.contact-map-frame {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(16, 16, 16, 0.08);
  box-shadow: 0 20px 40px rgba(18, 26, 29, 0.08);
}

.contact-map-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.career-page {
  background: #f7f6f1;
  color: #1e2328;
}

.career-hero-shell {
  position: relative;
  overflow: hidden;
  padding-top: 112px;
  background:
    radial-gradient(circle at right top, rgba(24, 174, 176, 0.14), transparent 24%),
    linear-gradient(180deg, #fcfcfa 0%, #f4f4ef 100%);
}

.career-hero-shell::before,
.career-hero-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.career-hero-shell::before {
  top: 108px;
  right: -110px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(24, 174, 176, 0.12), rgba(24, 174, 176, 0));
}

.career-hero-shell::after {
  left: -90px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(19, 34, 61, 0.08), rgba(19, 34, 61, 0));
}

.career-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  align-items: center;
  gap: 48px;
  min-height: 580px;
  padding: 56px 0 78px;
}

.career-hero-copy h1 {
  max-width: 360px;
  margin: 0 0 18px;
  color: #20262c;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.career-hero-copy p {
  max-width: 520px;
  margin: 0;
  color: #687175;
  font-size: 1.03rem;
  line-height: 1.8;
}

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

.career-hero-art {
  position: relative;
  min-height: 440px;
}

.career-hero-platform {
  position: absolute;
  left: 8%;
  right: 4%;
  bottom: 16px;
  height: 18px;
  border-radius: 999px;
  background: #b8ddd6;
}

.career-bar,
.career-person,
.career-cloud {
  position: absolute;
}

.career-bar {
  bottom: 34px;
  width: var(--bar-width);
  height: var(--bar-height);
  left: var(--bar-left);
  border-radius: 18px 18px 0 0;
  background: linear-gradient(180deg, #5aa596 0%, #2f7f77 100%);
  box-shadow: 0 18px 34px rgba(36, 87, 82, 0.16);
}

.career-cloud {
  width: 68px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    18px -8px 0 2px rgba(255, 255, 255, 0.94),
    -12px -4px 0 0 rgba(255, 255, 255, 0.82);
}

.career-cloud.one {
  top: 52px;
  left: 18%;
}

.career-cloud.two {
  top: 88px;
  right: 16%;
  transform: scale(0.82);
}

.career-cloud.three {
  top: 132px;
  right: 34%;
  transform: scale(0.68);
}

.career-person {
  left: var(--person-left);
  bottom: var(--person-bottom);
  width: 58px;
  height: 126px;
}

.career-person::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f1be9d;
  box-shadow: inset -4px -3px 0 rgba(0, 0, 0, 0.06);
}

.career-person::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 22px;
  width: 44px;
  height: 66px;
  border-radius: 18px 18px 14px 14px;
  background: var(--person-color, #f4b143);
}

.career-person span {
  position: absolute;
  border-radius: 999px;
  background: var(--person-accent, #24595c);
}

.career-person .arm-left,
.career-person .arm-right {
  top: 34px;
  width: 10px;
  height: 42px;
}

.career-person .arm-left {
  left: 2px;
  transform: rotate(18deg);
}

.career-person .arm-right {
  right: 2px;
  transform: rotate(-18deg);
}

.career-person .leg-left,
.career-person .leg-right {
  top: 78px;
  width: 12px;
  height: 48px;
}

.career-person .leg-left {
  left: 14px;
  transform: rotate(6deg);
}

.career-person .leg-right {
  right: 14px;
  transform: rotate(-8deg);
}

.career-person .piece {
  top: 22px;
  right: -10px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: #f4b143;
  transform: rotate(12deg);
}

.career-person.is-alt::after {
  background: var(--person-color, #c86c4d);
}

.career-person.is-small {
  transform: scale(0.84);
  transform-origin: bottom left;
}

.career-person.is-tall {
  transform: scale(1.08);
  transform-origin: bottom left;
}

.career-person.is-right {
  transform-origin: bottom center;
}

.career-info-section,
.career-values-section,
.career-traits-section,
.career-openings-section {
  padding: 86px 0;
}

.career-info-grid,
.career-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.career-media-card {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 42px rgba(18, 26, 29, 0.12);
}

.career-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-copy-card h2,
.career-values-copy h2,
.career-traits-header h2,
.career-openings-header h2,
.career-cta-copy h2 {
  margin: 0 0 18px;
  color: #1e2328;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.career-copy-card p,
.career-values-copy p,
.career-trait-card p,
.career-openings-header p,
.career-position-card p,
.career-cta-copy p {
  margin: 0;
  color: #5f666b;
  font-size: 1rem;
  line-height: 1.8;
}

.career-copy-card,
.career-values-copy {
  display: grid;
  gap: 18px;
}

.career-values-section {
  background: #2d7c7b;
  color: #ffffff;
}

.career-values-kicker,
.career-openings-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.career-values-copy h2,
.career-values-copy p,
.career-openings-shell .career-openings-header h2,
.career-openings-shell .career-openings-header p,
.career-cta-copy h2,
.career-cta-copy p {
  color: #ffffff;
}

.career-values-media {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 22px 40px rgba(5, 30, 30, 0.2);
}

.career-values-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-traits-header,
.career-openings-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.career-traits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.career-trait-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 30px 22px;
  background: #ffffff;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(18, 26, 29, 0.06);
  text-align: center;
}

.career-trait-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 22px;
  background: #f0faf8;
  color: #2d7c7b;
}

.career-trait-icon svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.career-trait-card h3 {
  margin: 0;
  color: #20262c;
  font-size: 1.22rem;
}

.career-openings-shell {
  padding: 72px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #2d7c7b 0%, #256866 100%);
  box-shadow: 0 26px 48px rgba(12, 44, 43, 0.18);
}

.career-pill-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.career-pill {
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
}

.career-pill.is-active {
  background: #ffffff;
  color: #266765;
}

.career-position-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.career-position-card {
  display: grid;
  gap: 16px;
  padding: 28px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  color: #20262c;
  box-shadow: 0 18px 36px rgba(7, 29, 29, 0.12);
}

.career-position-card h3 {
  margin: 0;
  color: #20262c;
  font-size: 1.26rem;
}

.career-position-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.career-position-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef6f5;
  color: #266765;
  font-size: 0.88rem;
  font-weight: 700;
}

.career-position-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #596166;
}

.career-position-card li {
  line-height: 1.6;
}

.career-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.career-card-actions .secondary-btn {
  border-color: rgba(38, 103, 101, 0.2);
  background: #ffffff;
  color: #266765;
  backdrop-filter: none;
}

.career-card-actions .secondary-btn:hover {
  background: #f0faf8;
}

.career-cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.career-cta-copy {
  display: grid;
  gap: 14px;
}

.career-cta-copy h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.career-cta-copy h2,
.career-cta-copy p {
  margin: 0;
}

.career-cta-visual img {
  display: block;
  width: min(100%, 260px);
  margin-left: auto;
}

.career-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.career-modal[hidden] {
  display: none;
}

.career-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 14, 0.66);
  backdrop-filter: blur(8px);
}

.career-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 34px 30px 28px;
  border-radius: 28px;
  background: #ffffff;
  color: #1f2324;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.career-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #eef6f5;
  color: #266765;
  cursor: pointer;
}

.career-modal-close::before,
.career-modal-close::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 12px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.career-modal-close::before {
  transform: rotate(45deg);
}

.career-modal-close::after {
  transform: rotate(-45deg);
}

.career-modal-dialog h2 {
  margin: 0 0 10px;
  color: #1f2324;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.career-modal-dialog p {
  margin: 0 0 24px;
  color: #636a6c;
  line-height: 1.75;
}

.career-modal .contact-form-grid textarea {
  width: 100%;
  min-height: 128px;
  padding: 14px;
  border: 1px solid #dbdfde;
  background: #f7f7f6;
  color: #2c3031;
  resize: vertical;
}

body.modal-open {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .mobile-drawer {
    width: min(34vw, 380px);
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .reviews-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .google-score-card {
    align-items: center;
  }

  .review-arrow {
    display: none;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .lead-card {
    max-width: 520px;
  }

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

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

  .care-visual-left {
    max-width: 620px;
  }

  .care-visual-left {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
  }

  .feature-item:nth-child(2n) {
    border-right: 0;
  }

  .promo-layout {
    grid-template-columns: 1fr;
  }

  .promo-visual {
    min-height: 420px;
  }

  .page-hero-content {
    min-height: 78vh;
  }

  .about-split,
  .team-layout,
  .origin-card,
  .impact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-hero-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-hero-art {
    justify-self: start;
  }

  .contact-details-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  }

  .career-hero,
  .career-info-grid,
  .career-values-grid,
  .career-cta-banner {
    grid-template-columns: 1fr;
  }

  .career-hero-art {
    max-width: 640px;
    width: 100%;
    min-height: 380px;
    margin: 0 auto;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .topbar {
    padding-top: 18px;
  }

  .topbar-links {
    gap: 12px 22px;
    font-size: 0.88rem;
  }

  .desktop-only {
    display: none;
  }

  .mobile-drawer {
    width: min(82vw, 340px);
  }

  .contact-hero-shell {
    padding-top: 104px;
  }

  .career-hero-shell {
    padding-top: 104px;
  }

  .contact-hero-card {
    gap: 18px;
    padding: 40px 0 34px;
  }

  .career-hero {
    min-height: auto;
    gap: 26px;
    padding: 34px 0 58px;
  }

  .career-hero-art {
    min-height: 310px;
  }

  .career-info-section,
  .career-values-section,
  .career-traits-section,
  .career-openings-section {
    padding: 68px 0;
  }

  .career-openings-shell {
    padding: 52px 22px;
  }

  .career-traits-grid,
  .career-position-grid {
    grid-template-columns: 1fr;
  }

  .career-modal {
    padding: 14px;
  }

  .career-modal-dialog {
    padding: 30px 18px 22px;
    border-radius: 22px;
  }

  .contact-main {
    padding-bottom: 58px;
  }

  .contact-details-panel,
  .contact-form-panel {
    padding: 24px 18px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .career-copy-card h2,
  .career-values-copy h2,
  .career-traits-header h2,
  .career-openings-header h2,
  .career-cta-copy h2,
  .career-modal-dialog h2 {
    font-size: 2rem;
  }

  .navbar {
    gap: 18px;
    padding-bottom: 18px;
  }

  .brand-mark {
    height: 52px;
  }

  .hero-grid {
    min-height: auto;
    gap: 28px;
    padding-top: 150px;
    padding-bottom: 42px;
  }

  .page-hero-content {
    min-height: auto;
    padding-top: 148px;
    padding-bottom: 46px;
  }

  .page-hero-copy {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .page-hero-text {
    font-size: 1rem;
    line-height: 1.72;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .lead-card {
    padding: 24px;
    border-radius: 24px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-section {
    padding: 48px 0;
  }

  .review-head h3 {
    font-size: 1.35rem;
  }

  .review-text {
    font-size: 1rem;
  }

  .catalogue-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalogue-section {
    padding: 10px 0 56px;
  }

  .catalogue-slide {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .catalogue-card,
  .catalogue-card-inner {
    min-height: 340px;
  }

  .catalogue-controls {
    align-self: stretch;
    justify-content: space-between;
    width: 100%;
  }

  .catalogue-kicker {
    font-size: 1.35rem;
  }

  .catalogue-head h2 {
    font-size: 0.95rem;
  }

  .care-section {
    padding: 58px 0;
  }

  .care-visual-left {
    grid-template-columns: 1fr;
  }

  .care-content {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .tall-image {
    min-height: 360px;
  }

  .wide-image,
  .compact-image {
    min-height: 220px;
  }

  .care-visual-stack {
    grid-template-columns: 1fr;
  }

  .care-floating-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .care-content h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .care-content p {
    font-size: 1rem;
    line-height: 1.78;
  }

  .feature-section {
    padding: 56px 0 60px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .feature-item {
    padding: 0 8px 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(28, 118, 121, 0.35);
  }

  .feature-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .feature-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 22px;
  }

  .feature-item p {
    max-width: none;
  }

  .promo-visual {
    min-height: 300px;
    background-position: center;
  }

  .promo-content {
    padding: 42px 22px;
  }

  .about-intro-section,
  .origin-section,
  .accomplishments-section {
    padding: 58px 0;
  }

  .impact-section,
  .team-section {
    padding-bottom: 58px;
  }

  .about-image-frame,
  .origin-visual,
  .team-visual {
    min-height: 280px;
  }

  .origin-card,
  .team-layout {
    padding: 24px;
    border-radius: 24px;
  }

  .impact-grid {
    padding: 30px 24px;
  }

  .impact-number {
    font-size: clamp(3.3rem, 18vw, 5rem);
  }

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

  .progress-ring {
    width: 126px;
  }

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

  .trusted-brand {
    min-height: 74px;
    font-size: 1.2rem;
  }

  .trusted-brand img {
    max-height: 42px;
  }

  .partners-section {
    padding: 56px 0 60px;
  }

  .partners-head {
    margin-bottom: 24px;
  }

  .partner-logo {
    min-width: 174px;
    min-height: 80px;
    padding: 18px 22px;
    border-radius: 18px;
  }

  .promo-content h2 {
    margin-bottom: 18px;
    font-size: clamp(1.9rem, 8.5vw, 2.8rem);
  }

  .promo-content p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .promo-btn {
    min-width: 150px;
    margin-top: 22px;
    padding: 14px 24px;
  }

  .promo-dot-mid {
    top: 96px;
    left: 72px;
  }

  .promo-dot-left {
    top: 182px;
    left: 52px;
  }

  .promo-dot-bottom {
    bottom: 76px;
    left: 150px;
  }

  .promo-dot-center {
    bottom: 44px;
    left: 220px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    padding: 48px 0 26px;
  }

  .footer-brand-mark {
    height: 50px;
  }

  .footer-contact p,
  .footer-contact a,
  .footer-links-block a {
    font-size: 0.96rem;
  }

  .footer-bottom {
    padding: 0 0 22px;
  }

  .primary-btn,
  .secondary-btn {
    justify-content: center;
  }
}

.process-page {
  background: #f4f7f6;
  color: #1e262b;
}

.process-hero-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(24, 174, 176, 0.12), transparent 24%),
    radial-gradient(circle at right 20%, rgba(24, 174, 176, 0.08), transparent 22%),
    #ffffff;
}

.process-hero-shell .site-header {
  background: rgba(8, 8, 8, 0.92);
}

.process-hero-content {
  padding-top: 188px;
  padding-bottom: 92px;
  text-align: center;
}

.process-hero-copy {
  max-width: 760px;
  margin: 0 auto;
}

.process-kicker {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-hero-copy h1 {
  margin: 0;
  color: #31383d;
  font-size: clamp(2.5rem, 5vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.process-hero-copy p:last-child {
  max-width: 700px;
  margin: 22px auto 0;
  color: #617075;
  font-size: 1.05rem;
  line-height: 1.8;
}

.process-step-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 940px;
  margin: 58px auto 0;
}

.process-step-card {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 26px 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 40px rgba(17, 34, 38, 0.08);
}

.process-step-icon,
.process-point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.process-step-icon {
  width: 88px;
  height: 88px;
  border: 2px solid rgba(24, 174, 176, 0.2);
  border-radius: 50%;
  background: rgba(24, 174, 176, 0.06);
}

.process-step-icon svg,
.process-point-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step-card h2 {
  margin: 0;
  color: #2d363a;
  font-size: 1.08rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.process-step-arrow {
  color: #237f80;
  font-size: 3rem;
  line-height: 1;
}

.process-hero-actions {
  margin-top: 36px;
}

.process-main {
  color: #1f2529;
}

.process-overview-section {
  padding: 86px 0;
  background: linear-gradient(180deg, #2d7c7b 0%, #2b7574 100%);
}

.process-overview-head,
.process-section-heading {
  text-align: center;
}

.process-overview-head {
  margin-bottom: 42px;
}

.process-overview-head h2,
.process-section-heading h2,
.process-contact-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.process-overview-head h2 {
  color: #ffffff;
}

.process-phase-grid {
  display: grid;
  gap: 34px;
}

.process-phase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.96fr);
  gap: 38px;
  align-items: center;
}

.process-phase-reverse .process-phase-copy {
  order: 2;
}

.process-phase-reverse .process-phase-media {
  order: 1;
}

.process-phase-copy h3 {
  margin: 0 0 28px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.process-point-list {
  display: grid;
  gap: 22px;
}

.process-point {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.process-point-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
}

.process-point h4 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.28rem;
  line-height: 1.3;
}

.process-point p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.72;
}

.process-phase-media {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 26px 44px rgba(9, 37, 36, 0.18);
}

.process-phase-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.process-team-section,
.process-faq-section {
  padding: 86px 0;
  background: #ffffff;
}

.process-section-heading {
  margin-bottom: 42px;
}

.process-section-heading h2 {
  color: #2d3438;
}

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

.process-team-card {
  padding: 34px 28px 30px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7f6 100%);
  border: 1px solid rgba(23, 72, 73, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 32px rgba(13, 31, 35, 0.08);
}

.process-team-avatar {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, #23b6b7, #168d8f);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-team-card h3 {
  margin: 0 0 12px;
  color: #273236;
  font-size: 1.28rem;
  line-height: 1.28;
}

.process-team-card p {
  margin: 0;
  color: #617075;
  line-height: 1.75;
}

.process-contact-section {
  padding: 0 0 86px;
  background: #ffffff;
}

.process-contact-shell {
  padding: 42px 40px;
  border-radius: 34px;
  background: linear-gradient(135deg, #2d7c7b 0%, #236867 100%);
  box-shadow: 0 26px 44px rgba(10, 44, 44, 0.16);
}

.process-contact-copy {
  margin-bottom: 28px;
  text-align: center;
}

.process-contact-copy h2,
.process-contact-copy p {
  color: #ffffff;
}

.process-contact-copy p {
  margin: 12px 0 0;
  font-size: 1.05rem;
}

.process-contact-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.process-contact-form label {
  display: block;
}

.process-contact-form input {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  outline: none;
}

.process-contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.process-contact-form input:focus {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.process-contact-submit {
  width: 100%;
  height: 56px;
  border-radius: 999px;
  background: #ffffff;
  color: #246e6d;
}

.process-contact-submit:hover {
  background: #edf9f8;
}

.process-form-note {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.process-faq-list {
  display: grid;
  gap: 12px;
}

.process-faq-item {
  border-bottom: 1px solid rgba(31, 43, 46, 0.12);
}

.process-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  background: transparent;
  border: 0;
  color: #273136;
  text-align: left;
  cursor: pointer;
}

.process-faq-question span:first-child {
  font-weight: 700;
}

.process-faq-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.process-faq-toggle::before,
.process-faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #657176;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.process-faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.process-faq-answer {
  display: none;
  padding: 0 0 18px;
  color: #69767b;
  line-height: 1.75;
}

.process-faq-item.is-open .process-faq-answer {
  display: block;
}

.process-faq-item.is-open .process-faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

@media (max-width: 1024px) {
  .process-hero-content {
    padding-top: 172px;
    padding-bottom: 72px;
  }

  .process-step-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 420px;
  }

  .process-step-arrow {
    transform: rotate(90deg);
    margin: -2px auto;
  }

  .process-phase,
  .process-phase-reverse {
    grid-template-columns: 1fr;
  }

  .process-phase-reverse .process-phase-copy,
  .process-phase-reverse .process-phase-media {
    order: initial;
  }

  .process-team-grid {
    grid-template-columns: 1fr;
  }

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

  .process-contact-submit,
  .process-form-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .process-hero-content {
    padding-top: 150px;
    padding-bottom: 58px;
  }

  .process-step-card {
    padding: 22px 18px;
  }

  .process-step-icon {
    width: 76px;
    height: 76px;
  }

  .process-overview-section,
  .process-team-section,
  .process-faq-section {
    padding: 58px 0;
  }

  .process-point {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
  }

  .process-point-icon {
    width: 50px;
    height: 50px;
  }

  .process-point h4 {
    font-size: 1.08rem;
  }

  .process-phase-media img {
    min-height: 240px;
  }

  .process-contact-section {
    padding-bottom: 58px;
  }

  .process-contact-shell {
    padding: 28px 22px;
    border-radius: 24px;
  }

.process-contact-form {
    grid-template-columns: 1fr;
  }
}

.catalogue-page {
  background: #f4f6f7;
  color: #1e2529;
}

.catalogue-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(24, 174, 176, 0.14), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
}

.catalogue-page-hero .site-header {
  background: rgba(8, 8, 8, 0.92);
}

.catalogue-page-hero-content {
  padding-top: 182px;
  padding-bottom: 82px;
}

.catalogue-page-copy {
  max-width: 760px;
}

.catalogue-page-kicker {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.catalogue-page-copy h1 {
  margin: 0;
  color: #2a3237;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.catalogue-page-copy p:last-child {
  max-width: 660px;
  margin: 20px 0 0;
  color: #667177;
  font-size: 1.05rem;
  line-height: 1.82;
}

.catalogue-browser-section {
  padding: 0 0 88px;
}

.catalogue-browser-grid {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.catalogue-sidebar {
  position: sticky;
  top: 130px;
  padding: 28px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #eff5f5 100%);
  box-shadow: 0 18px 34px rgba(15, 34, 36, 0.08);
}

.catalogue-sidebar-kicker,
.catalogue-results-kicker {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalogue-sidebar h2,
.catalogue-results-head h2 {
  margin: 0;
  color: #263136;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

.catalogue-category {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(38, 103, 101, 0.12);
  border-radius: 18px;
  background: #ffffff;
  color: #324145;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.catalogue-category:hover,
.catalogue-category.is-active {
  border-color: #2b7d7b;
  background: #2b7d7b;
  color: #ffffff;
  transform: translateX(4px);
}

.catalogue-results {
  min-width: 0;
}

.catalogue-results-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.catalogue-results-note {
  max-width: 280px;
  margin: 0;
  color: #6c777c;
  line-height: 1.7;
  text-align: right;
}

.catalogue-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.catalogue-project-card {
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 36px rgba(14, 28, 30, 0.08);
}

.catalogue-project-media {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #d8dede;
}

.catalogue-project-body {
  display: grid;
  gap: 14px;
  padding: 24px 24px 26px;
}

.catalogue-project-tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eaf7f6;
  color: #2b7d7b;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.catalogue-project-card h3 {
  margin: 0;
  color: #263136;
  font-size: 1.42rem;
  line-height: 1.22;
}

.catalogue-project-card p {
  margin: 0;
  color: #667277;
  line-height: 1.78;
}

.catalogue-consult-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  padding: 14px 20px;
  border-radius: 999px;
  background: #1ca7a9;
  color: #ffffff;
  font-weight: 800;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.catalogue-consult-btn:hover {
  background: #12888a;
  transform: translateY(-2px);
}

.catalogue-consult-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalogue-empty-state {
  margin: 0;
  padding: 28px 24px;
  border-radius: 24px;
  background: #ffffff;
  color: #677378;
  text-align: center;
  box-shadow: 0 14px 26px rgba(14, 28, 30, 0.06);
}

.catalogue-more-row {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.catalogue-more-btn {
  min-width: 180px;
  border-color: rgba(39, 102, 101, 0.18);
  background: #ffffff;
  color: #2b7d7b;
}

.catalogue-more-btn:hover {
  background: #eef9f8;
}

@media (max-width: 1024px) {
  .catalogue-browser-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-sidebar {
    position: static;
  }

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

  .catalogue-results-head {
    flex-direction: column;
    align-items: start;
  }

  .catalogue-results-note {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .catalogue-page-hero-content {
    padding-top: 152px;
    padding-bottom: 58px;
  }

  .catalogue-browser-section {
    padding-bottom: 58px;
  }

  .catalogue-category-list,
  .catalogue-project-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-sidebar {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .catalogue-project-media {
    height: 220px;
  }

  .catalogue-project-body {
    padding: 20px 18px 22px;
  }

  .catalogue-project-card h3 {
    font-size: 1.26rem;
  }
}
