@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@600;700;800&display=swap");

* {
  box-sizing: border-box;
}

:root {
  --primary: #0b5b7a;
  --primary-dark: #073a4f;
  --secondary: #f3b43d;
  --secondary-soft: #ffdf92;
  --maize-green: #6f8f2b;
  --nav-active: #7cfc00;
  --neon-green: #39ff14;
  --text: #17252b;
  --muted: #51636e;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --border: rgba(11, 91, 122, 0.14);
  --shadow: 0 20px 45px rgba(7, 58, 79, 0.1);
  --purple-dark: var(--primary-dark);
  --gold: var(--secondary);
  --font-display: "Montserrat", sans-serif;
  --transition: 0.2s ease;
}

::selection {
  background: rgba(243, 180, 61, 0.35);
  color: var(--text);
}

.topbar {
  background: var(--purple-dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  padding: 7px 0;
}

.topbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-values {
  display: flex;
  gap: 16px;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.topbar-values span { color: rgba(255, 255, 255, 0.5); }
.topbar-values span:not(:last-child)::after { content: " |"; margin-left: 16px; }

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-contact a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: inherit;
  text-decoration: none;
}

.topbar-contact > a:hover,
.topbar-contact > a:focus-visible { color: var(--gold); }

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

.topbar-social a {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: var(--transition);
}

.topbar-social a:hover,
.topbar-social a:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

/* Retain the original header styling on pages that have not adopted .topbar. */
.header-social-bar {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem 0.6rem;
  background: linear-gradient(90deg, rgba(4, 31, 43, 0.98), rgba(7, 58, 79, 0.98));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Pages adopting .topbar keep their existing header markup out of view. */
.topbar + .header-social-bar { display: none; }

.header-social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.header-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-social-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.header-social-icon:hover,
.header-social-icon:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.header-social-icon.whatsapp { background: #167a45; }
.header-social-icon.facebook { background: #1877f2; }
.header-social-icon.instagram { background: linear-gradient(135deg, #f58529 0%, #dd2a7b 55%, #8134af 100%); }

.header-contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.9rem;
  color: #eaf6fb;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
}

.header-contact-line a {
  color: inherit;
  text-decoration: none;
}

.header-contact-line a:hover,
.header-contact-line a:focus-visible { text-decoration: underline; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(7, 58, 79, 0.96), rgba(11, 91, 122, 0.95));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.8rem 1rem;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 0.65rem;
  padding: 0.2rem 0.9rem 0.2rem 0;
  color: #b77a4a;
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.nav-brand:hover,
.nav-brand:focus-visible {
  color: #d8b089;
}

.nav-brand-logo {
  width: 7rem;
  height: 4.2rem;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 0.25rem;
  background: #ffffff;
  padding: 0.22rem;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.16);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 0.45rem;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
}

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

.nav-link {
  color: #f8fbfe;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.nav-link.active {
  background: var(--nav-active);
  color: #12222c;
  box-shadow: 0 10px 18px rgba(62, 126, 43, 0.32);
}

.nav-links {
  display: contents;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  color: #f8fbfe;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-icon span {
  display: block;
  width: 1.35rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7fbfe 0%, var(--bg) 100%);
  line-height: 1.6;
}

body.standalone-form-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(0, 91, 136, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(247, 183, 51, 0.2), transparent 24%),
    linear-gradient(180deg, #f4f9fc 0%, #eef5f8 100%);
}

body.standalone-form-page main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

body.standalone-form-page .section {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 56px rgba(15, 47, 73, 0.16);
}

body.standalone-form-page .section-heading {
  margin-bottom: 2.25rem;
}

body.standalone-form-page .join-form-card {
  border-color: rgba(0, 91, 136, 0.16);
}

body.standalone-form-page .status {
  margin-bottom: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: url("assets/hero.png") center top/cover no-repeat;
  background-color: #10202b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 18, 29, 0.2) 0%, rgba(5, 18, 29, 0.06) 28%, rgba(5, 18, 29, 0.48) 100%);
  pointer-events: none;
}

.hero-small {
  min-height: 46vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.16) 34%, rgba(0, 0, 0, 0.42) 100%);
}

.hero-content {
  position: relative;
  max-width: 980px;
  padding: 2.7rem 2.4rem;
  z-index: 1;
  background: rgba(7, 20, 30, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.6rem;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.hero-logo {
  width: 156px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: white;
  padding: 0.5rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.hero h1,
.section h2,
.hero-content h1 {
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.hero h1 {
  margin: 0.5rem 0;
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  line-height: 1.15;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), #ffd67b);
  color: #14222b;
  text-decoration: none;
  border: 0;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(243, 180, 61, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 24px rgba(243, 180, 61, 0.3);
}

.hero-explore-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #20e0b5;
  box-shadow: none;
}

.hero-explore-btn:hover,
.hero-explore-btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #20e0b5;
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
}

.section {
  width: min(100%, 1200px);
  margin: 1.2rem auto 1.25rem;
  padding: 3rem clamp(1.25rem, 3vw, 2.2rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.45rem;
  box-shadow: var(--shadow);
}

.section h2 {
  margin-top: 0;
  color: var(--primary);
}

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

.managed-service-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: linear-gradient(145deg, #f9fcfc, #edf6f4);
}

.managed-service-icon {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 0.9rem;
  border-radius: 0.8rem;
  color: var(--primary-dark);
  background: var(--secondary-soft);
  font-size: 1.25rem;
}

.managed-service-card h3 { margin: 0; color: var(--primary-dark); }
.managed-service-card p { margin-bottom: 0; color: var(--muted); }

@media (max-width: 760px) {
  .managed-services-grid { grid-template-columns: 1fr; }
}

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

.section-kicker {
  margin: 0 0 0.5rem;
  color: var(--secondary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section p,
.section ul,
.section li {
  margin: 0.75rem 0;
}

.home-slider-section {
  padding: 1rem;
  overflow: hidden;
}

.values-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(247, 183, 51, 0.2), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #eef5f8 100%);
}

.why-join-section {
  background:
    radial-gradient(circle at top left, rgba(0, 91, 136, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}

.info-card {
  margin-bottom: 1.4rem;
  padding: 1.7rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(15, 47, 73, 0.08);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.worker-card {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(220px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
}

.worker-card-content {
  min-width: 0;
}

.worker-card-image {
  display: flex;
  justify-content: flex-end;
}

.worker-card-image img {
  width: 100%;
  max-width: 320px;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: 0.9rem;
  box-shadow: 0 10px 24px rgba(15, 47, 73, 0.16);
}

.why-join-section ul {
  margin-top: 0.5rem;
}

.why-join-cta {
  margin-top: 1.5rem;
}

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

.value-card {
  position: relative;
  padding: 1.7rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(15, 47, 73, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 91, 136, 0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(15, 47, 73, 0.14);
  border-color: rgba(0, 91, 136, 0.28);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card > * {
  position: relative;
  z-index: 1;
}

.value-card h3 {
  margin: 0 0 0.75rem;
  color: var(--primary);
}

.value-card p {
  margin: 0;
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary), #0d7db5);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 91, 136, 0.2);
}

.value-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.services-section {
  background:
    radial-gradient(circle at top left, rgba(0, 91, 136, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f8fb 100%);
}

.services-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.service-card {
  position: relative;
  flex: 1 1 300px;
  min-height: 100%;
  padding: 1.7rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(15, 47, 73, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(247, 183, 51, 0.14), transparent 50%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(15, 47, 73, 0.14);
  border-color: rgba(247, 183, 51, 0.38);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin: 0 0 0.75rem;
  color: var(--primary);
}

.service-card p {
  margin: 0 0 0.8rem;
}

.service-card p:last-child {
  margin-bottom: 0;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--secondary), #ffd778);
  color: #113245;
  box-shadow: 0 12px 24px rgba(247, 183, 51, 0.22);
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.slideshow {
  position: relative;
  min-height: 520px;
  border-radius: 0.9rem;
  overflow: hidden;
  background: #10202b;
  box-shadow: 0 18px 40px rgba(15, 47, 73, 0.18);
}

.slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: transform 0.7s ease, visibility 0.7s ease;
  will-change: transform;
}

.slide.is-active {
  visibility: visible;
  transform: translateX(0);
  z-index: 1;
}

.slide.is-exiting {
  visibility: visible;
  transform: translateX(100%);
  z-index: 0;
}

.slide-image,
.slide-overlay,
.slide-content {
  position: absolute;
  inset: 0;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.slide-overlay {
  background: linear-gradient(90deg, rgba(7, 20, 30, 0.82) 0%, rgba(7, 20, 30, 0.62) 45%, rgba(7, 20, 30, 0.38) 100%);
}

.slide-content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding: 3rem;
  color: #fff;
}

.slide-content h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.slide-content p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  max-width: 60ch;
}

.slide-content .btn {
  background: linear-gradient(135deg, var(--neon-green), #a6ff00);
  box-shadow: 0 12px 24px rgba(57, 255, 20, 0.28);
}

.slide-content .btn:hover,
.slide-content .btn:focus-visible {
  box-shadow: 0 16px 28px rgba(57, 255, 20, 0.48);
}

.slide-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 3rem;
  z-index: 2;
  display: flex;
  gap: 0.65rem;
}

.slide-dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.slide-dot.is-active {
  background: var(--secondary);
  transform: scale(1.1);
}

ul.docs-list,
ul {
  padding-left: 1.2rem;
}

.form-section label {
  display: block;
  margin: 0.8rem 0 0.35rem;
  font-weight: 600;
  color: #12384d;
}

.form-card {
  max-width: 720px;
  margin: 1.5rem auto 0;
  padding: 1.8rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1.1rem;
  background: linear-gradient(135deg, #fdfefe 0%, #f6fbfe 100%);
  box-shadow: 0 16px 36px rgba(15, 47, 73, 0.08);
}

.form-card h3 {
  margin: 0 0 1rem;
  color: var(--primary);
}

.form-section input,
.form-section textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid #c7d6df;
  border-radius: 0.8rem;
  background: #fff;
  font: inherit;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-section input:focus,
.form-section textarea:focus {
  outline: none;
  border-color: rgba(0, 91, 136, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 91, 136, 0.12);
  background: #fcfeff;
}

.form-section button {
  margin-top: 1rem;
}

.join-section {
  background:
    radial-gradient(circle at top right, rgba(0, 91, 136, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}

.about-section {
  background:
    radial-gradient(circle at top left, rgba(0, 91, 136, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}

.documents-section {
  background:
    radial-gradient(circle at top right, rgba(247, 183, 51, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6fafc 100%);
}

.contact-section {
  background:
    radial-gradient(circle at top left, rgba(0, 91, 136, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
}

.join-form-card {
  max-width: 860px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 91, 122, 0.14);
  box-shadow: 0 20px 44px rgba(15, 47, 73, 0.12);
}

.join-form-header {
  padding: 1.75rem 1.75rem 1.25rem;
  background: linear-gradient(135deg, rgba(11, 91, 122, 0.08), rgba(243, 180, 61, 0.16));
  border-bottom: 1px solid rgba(11, 91, 122, 0.1);
}

.join-form-header h3 {
  margin: 0 0 0.5rem;
}

.join-form-header p {
  margin: 0;
  color: #355468;
}

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

.form-field {
  min-width: 0;
}

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

.form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0.25rem;
}

.join-form-grid .btn {
  min-width: 220px;
  box-shadow: 0 12px 24px rgba(247, 183, 51, 0.24);
}

.status {
  max-width: 860px;
  margin: 1rem auto 0;
  padding: 0.9rem 1rem;
  border-radius: 0.8rem;
  background: #edf8f1;
  border: 1px solid #bfe2ca;
  box-shadow: 0 10px 24px rgba(15, 47, 73, 0.06);
}




.about-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.9fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-summary-card,
.about-location-card {
  padding: 1.7rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(15, 47, 73, 0.08);
}

.about-summary-card h3,
.about-location-card h3 {
  margin: 0 0 0.75rem;
  color: var(--primary);
}

.about-why-card {
  position: relative;
  overflow: hidden;
  margin-top: 1.1rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(243, 180, 61, 0.3);
  border-left: 6px solid var(--secondary);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 251, 240, 0.99) 0%, rgba(255, 244, 212, 0.94) 100%);
  box-shadow: 0 14px 28px rgba(15, 47, 73, 0.09);
}

.about-why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(243, 180, 61, 0.16), transparent 34%);
  pointer-events: none;
}

.about-why-card > * {
  position: relative;
  z-index: 1;
}

.about-why-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.about-why-card h4 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.02rem;
}

.about-why-card p {
  margin: 0;
  color: var(--text);
}

.about-why-card-floating {
  max-width: 980px;
  margin: 1.75rem auto -1.75rem;
  z-index: 2;
}

.about-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--secondary), #ffc94d);
  color: #17313c;
  box-shadow: 0 10px 18px rgba(243, 180, 61, 0.22);
}

.about-why-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.about-inner-card {
  margin-top: 1.15rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-left: 5px solid var(--primary);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(244, 249, 252, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: 0 10px 22px rgba(15, 47, 73, 0.06);
}

.about-inner-card h4 {
  margin: 0 0 0.55rem;
  color: var(--primary);
  font-size: 1.02rem;
}

.about-inner-card p {
  margin: 0;
  color: var(--text);
}

.about-values-intro {
  margin: 0;
  color: var(--muted);
}

.about-values-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(11, 91, 122, 0.1);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 252, 0.92) 100%);
  box-shadow: 0 10px 22px rgba(15, 47, 73, 0.06);
}

.about-value-item span:last-child {
  color: var(--text);
  line-height: 1.5;
}

.about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--primary), #0d7db5);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 91, 122, 0.18);
}

.about-value-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.about-feature {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.6rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(15, 47, 73, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(15, 47, 73, 0.12);
  border-color: rgba(0, 91, 136, 0.2);
}

.about-feature-image {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.about-feature-image-top {
  object-position: center top;
}

.about-team-section {
  margin-top: 3.25rem;
}

.about-team-heading {
  max-width: 820px;
  margin-bottom: 1.4rem;
}

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

.team-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(15, 47, 73, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 91, 136, 0.22);
  box-shadow: 0 20px 36px rgba(15, 47, 73, 0.14);
}

.team-card-image {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center top;
  background: linear-gradient(135deg, rgba(11, 91, 122, 0.08), rgba(243, 180, 61, 0.12));
}

.team-card-image-full {
  object-fit: contain;
  object-position: center center;
  background: linear-gradient(135deg, rgba(11, 91, 122, 0.04), rgba(243, 180, 61, 0.08));
}

.team-card-body {
  padding: 1.2rem 1.15rem 1.25rem;
}

.team-card-body h3 {
  margin: 0 0 0.45rem;
  color: var(--primary);
  font-size: 1.02rem;
}

.team-card-body p {
  margin: 0;
  color: var(--muted);
}

.about-feature-copy h3 {
  margin: 0 0 0.75rem;
  color: var(--primary);
}

.about-feature-copy p:first-of-type {
  margin-top: 0;
}

.contact-card {
  padding: 1.6rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(15, 47, 73, 0.08);
}

.contact-card h3 {
  margin: 0 0 0.5rem;
  color: var(--primary);
}

.contact-card p:first-child {
  margin-top: 0;
}

.contact-intro-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at top right, rgba(243, 180, 61, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 252, 0.96) 100%);
  box-shadow: 0 16px 34px rgba(15, 47, 73, 0.08);
}

.contact-intro-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-intro-copy h3 {
  margin: 0 0 0.45rem;
  color: var(--primary);
}

.contact-intro-copy p {
  margin: 0;
  color: var(--muted);
}

.contact-intro-card .btn {
  flex-shrink: 0;
}

.contact-map-link,
.contact-social-link {
  background: transparent;
  border: 1px solid rgba(11, 91, 122, 0.22);
  box-shadow: none;
}

.contact-map-link:hover,
.contact-map-link:focus-visible {
  box-shadow: 0 12px 24px rgba(15, 47, 73, 0.1);
}

.contact-intro-card a {
  color: var(--primary);
  text-decoration: none;
}

.contact-intro-card a:hover,
.contact-intro-card a:focus-visible {
  text-decoration: underline;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.contact-quick-card {
  padding: 1.1rem 1rem 1rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 30px rgba(15, 47, 73, 0.07);
}

.contact-quick-card h3 {
  margin: 0.85rem 0 0.4rem;
  color: var(--primary);
  font-size: 1.03rem;
}

.contact-quick-card p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.contact-quick-card p:first-of-type {
  margin-top: 0;
}

.contact-quick-card a {
  color: var(--primary);
  text-decoration: none;
}

.contact-quick-card a:hover,
.contact-quick-card a:focus-visible {
  text-decoration: underline;
}

.contact-quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--primary), #0d7db5);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 91, 122, 0.18);
}

.contact-quick-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.contact-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.05fr);
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.contact-map-card {
  overflow: hidden;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 34px rgba(15, 47, 73, 0.08);
}

.contact-map-header {
  padding: 1.2rem 1.25rem 0.85rem;
}

.contact-map-header h3 {
  margin: 0 0 0.4rem;
  color: var(--primary);
}

.contact-map-header p {
  margin: 0;
  color: var(--muted);
}

.contact-map-frame {
  position: relative;
  min-height: 280px;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.contact-form-card {
  max-width: 860px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(11, 91, 122, 0.14);
  box-shadow: 0 20px 44px rgba(15, 47, 73, 0.12);
}

.contact-form-header {
  padding: 1.75rem 1.75rem 1.1rem;
  background: linear-gradient(135deg, rgba(11, 91, 122, 0.08), rgba(243, 180, 61, 0.16));
  border-bottom: 1px solid rgba(11, 91, 122, 0.1);
}

.contact-form-header h2 {
  margin: 0 0 0.4rem;
}

.contact-form-header p {
  margin: 0;
  color: #355468;
}

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

.contact-form-status {
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 0.55rem;
  font-weight: 700;
}

.contact-form-status.is-error {
  background: #fff1f0;
  color: #a12620;
}

.contact-form-status.is-success {
  background: #edf9f1;
  color: #17653a;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.document-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 1.6rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(15, 47, 73, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.document-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 36px rgba(15, 47, 73, 0.14);
  border-color: rgba(0, 91, 136, 0.22);
}

.document-card h3 {
  margin: 0 0 0.75rem;
  color: var(--primary);
}

.document-card .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

.document-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary), #0d7db5);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 91, 136, 0.2);
}

.document-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

footer {
  padding: 1.2rem 1rem;
  background: #0f2f49;
  color: #f5f5f5;
}

.footer-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 1.5rem;
  align-items: start;
}

.footer-main {
  text-align: left;
}

.footer-links,
.footer-credit {
  margin: 0 0 0.55rem;
}

.footer-links a {
  color: #f7b733;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

.footer-links span {
  margin: 0 0.45rem;
  color: rgba(245, 245, 245, 0.7);
}

.footer-credit {
  color: rgba(245, 245, 245, 0.82);
  font-size: 0.95rem;
}

.footer-credit a {
  color: #f7b733;
  text-decoration: none;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  text-decoration: underline;
}

.footer-contact-card {
  padding: 1rem 1rem 0.2rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.footer-info-card {
  margin-top: 1rem;
  padding: 1rem 1rem 0.2rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.footer-contact-title {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  color: rgba(245, 245, 245, 0.94);
  font-size: 0.95rem;
}

.footer-contact-item a {
  color: #f7b733;
  text-decoration: none;
}

.footer-contact-item a:hover,
.footer-contact-item a:focus-visible {
  text-decoration: underline;
}

.footer-contact-icon {
  display: inline-flex;
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  color: #f7b733;
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--text);
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail a {
  color: var(--primary);
  text-decoration: none;
}

.contact-detail a:hover,
.contact-detail a:focus-visible {
  text-decoration: underline;
}

.contact-detail-icon {
  display: inline-flex;
  width: 1.3rem;
  height: 1.3rem;
  flex-shrink: 0;
  color: #f7b733;
}

.contact-detail-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

@media (max-width: 720px) {
  .nav-container {
    justify-content: space-between;
    align-items: center;
    gap: 0.45rem;
  }

  .section {
    padding: 2rem 0.75rem;
  }

  .nav-container {
    padding: 0.7rem 0.85rem;
  }

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

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    padding: 0.5rem 0.7rem;
    border-radius: 0.75rem;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.45rem 0 0.1rem;
    margin-top: 0.05rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .navbar.is-menu-open .nav-links {
    display: flex;
  }

  .nav-links .nav-link {
    width: 100%;
    padding: 0.55rem 0.85rem;
    font-size: 0.9rem;
    justify-content: center;
    text-align: center;
  }

  .topbar { padding: 0.55rem 0; }

  .topbar-inner,
  .topbar-contact {
    justify-content: center;
    flex-wrap: wrap;
  }

  .topbar-values { justify-content: center; }

  .header-social-bar {
    padding: 0.5rem 0.75rem 0.55rem;
  }

  .header-social-icons { gap: 0.45rem; }

  .header-social-icon {
    width: 2.15rem;
    height: 2.15rem;
  }

  .header-contact-line {
    gap: 0.2rem 0.75rem;
    font-size: 0.8rem;
  }

  .hero-content {
    margin: 0 1rem;
    padding: 1.8rem 1.35rem;
    border-radius: 1.1rem;
  }

  body.standalone-form-page main {
    padding: 1rem 0.75rem;
  }

  body.standalone-form-page .section {
    padding: 1.5rem 1rem;
  }

  .slideshow {
    min-height: 430px;
    border-radius: 1rem;
  }

  .slide-image {
    object-position: center 20%;
  }

  .slide-content {
    padding: 2rem 1.15rem 4.5rem;
  }

  .slide-content p {
    font-size: 0.98rem;
  }

  .featured-article-image img,
  .article-card > img,
  .product-card > img,
  .product-card-image,
  .consultancy-image img,
  .worker-card-image img {
    object-position: center top;
  }

  .featured-article-image {
    min-height: 180px;
  }

  .article-card > img {
    height: 165px;
  }

  .slide-dots {
    left: 1.25rem;
    bottom: 1.25rem;
  }

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

  .contact-intro-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .contact-intro-actions .btn {
    width: 100%;
    text-align: center;
  }

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

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

  .about-feature {
    grid-template-columns: 1fr;
  }

  .about-overview {
    grid-template-columns: 1fr;
  }

  .join-form-grid {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .join-form-header {
    padding: 1.4rem 1.25rem 1rem;
  }

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

  .team-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .about-team-section {
    margin-top: 2.5rem;
  }

  .team-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    border-radius: 1rem;
  }

  .team-card-body {
    padding: 1rem 1rem 1.05rem;
  }

  .team-card-body h3 {
    font-size: 1rem;
  }

  .team-card-body p {
    font-size: 0.9rem;
  }

  .about-why-card-floating {
    margin-bottom: -1rem;
  }

  .services-flex {
    flex-direction: column;
  }

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

  .contact-form-header {
    padding: 1.4rem 1.25rem 1rem;
  }

  .contact-map-header {
    padding: 1.2rem 1.2rem 0.9rem;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 240px;
  }

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

  .footer-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    text-align: center;
  }

  .footer-main {
    display: contents;
  }

  .footer-links {
    grid-column: 1 / -1;
    order: 1;
  }
  .footer-info-card {
    grid-column: 1;
    order: 2;
    margin-top: 0;
    padding: 0.8rem;
  }
  .footer-contact-card {
    grid-column: 2;
    order: 2;
    padding: 0.8rem;
    text-align: left;
  }
  .footer-main > p:not(.footer-links):not(.footer-credit) {
    grid-column: 1 / -1;
    order: 3;
  }
  .footer-credit {
    grid-column: 1 / -1;
    order: 4;
    margin-bottom: 0;
  }

  .contact-detail {
    font-size: 0.96rem;
  }

  .about-value-item {
    padding: 0.9rem;
  }

  .worker-card {
    grid-template-columns: 1fr;
  }

  .worker-card-image {
    justify-content: flex-start;
  }

  .worker-card-image img {
    max-width: 100%;
    max-height: none;
  }
}

/* Homepage content */
.home-featured-section {
  background: radial-gradient(circle at 0% 0%, rgba(243, 180, 61, 0.16), transparent 26%), #fff;
}

.home-product-grid,
.promo-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.home-product-card {
  overflow: hidden;
  border: 1px solid rgba(11, 91, 122, 0.13);
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 47, 73, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.home-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 38px rgba(15, 47, 73, 0.14);
}

.home-product-card img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center top;
}

.home-product-card > div { padding: 1.25rem; }

.home-product-card span {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-product-card h3 {
  margin: 0.3rem 0 0.45rem;
  color: var(--primary-dark);
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.home-product-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.91rem;
}

.home-product-card a,
.promo-card a {
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.home-product-card a:hover,
.home-product-card a:focus-visible,
.promo-card a:hover,
.promo-card a:focus-visible { text-decoration: underline; }

.home-promo-section {
  background: linear-gradient(135deg, #073a4f, #0b5b7a);
  color: #fff;
}

.home-promo-section h2 { color: #fff; }
.home-promo-section .section-heading p:last-child { color: rgba(255, 255, 255, 0.82); }
.home-promo-section .section-kicker { color: #ffdc86; }

.promo-card {
  padding: 1.4rem;
  border: 1px solid rgba(11, 91, 122, 0.14);
  border-radius: 1rem;
  background: #fff;
  color: var(--text);
  box-shadow: 0 16px 34px rgba(15, 47, 73, 0.1);
}

.promo-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 0.7rem;
  background: var(--secondary);
  color: #14222b;
  font-size: 1.2rem;
}

.promo-card h3 { margin: 0.85rem 0 0.4rem; color: var(--primary-dark); }
.promo-card p { margin: 0 0 0.85rem; color: var(--muted); font-size: 0.9rem; }
.promo-card a { color: var(--primary); }

.home-promo-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.2rem 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.32);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.promo-card-live {
  display: flex;
  flex-direction: column;
}

.promo-product-image {
  display: block;
  width: 100%;
  height: 170px;
  margin-bottom: 0.85rem;
  object-fit: cover;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
}

.promo-product-category {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-card-live h3 {
  margin-top: 0.35rem;
}

.promo-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0.1rem 0 0.9rem;
}

.promo-price del {
  color: var(--muted);
  font-weight: 700;
}

.promo-price strong {
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.home-reviews-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
  padding: 2rem clamp(1.2rem, 3vw, 2.4rem);
  border: 1px solid rgba(11, 91, 122, 0.16);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at top right, rgba(243, 180, 61, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(7, 58, 79, 0.98), rgba(11, 91, 122, 0.96));
  color: #fff;
  box-shadow: 0 22px 48px rgba(7, 58, 79, 0.16);
}

.reviews-banner-copy h2 {
  margin: 0.35rem 0 0.7rem;
  color: #fff;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.reviews-banner-copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  max-width: 56ch;
}

.reviews-banner-quote {
  display: grid;
  gap: 0.75rem;
  align-content: center;
  padding: 1.35rem;
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.reviews-stars {
  color: #ffdc86;
  font-size: 1.1rem;
  letter-spacing: 0.16em;
}

.reviews-banner-quote p {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  line-height: 1.45;
}

.reviews-signature {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-testimonials-section {
  background: radial-gradient(circle at 100% 100%, rgba(11, 91, 122, 0.1), transparent 26%), #fff;
}

.testimonial-card {
  margin: 0;
  padding: 1.5rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1rem;
  background: #f9fcfd;
  box-shadow: 0 12px 28px rgba(15, 47, 73, 0.06);
}

.testimonial-card > p {
  margin: 0;
  color: #3f5864;
  font-size: 0.96rem;
  font-style: italic;
}

.testimonial-author {
  display: grid;
  gap: 0.1rem;
  margin-top: 1.1rem;
  color: var(--primary);
  font-size: 0.83rem;
}

.testimonial-author span { color: var(--muted); }

.testimonial-card-live {
  display: grid;
  gap: 1rem;
}

.testimonial-card-live > p {
  margin: 0;
}

.testimonial-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-stars {
  color: #f3b43d;
  font-size: 0.98rem;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.testimonial-empty {
  grid-column: 1 / -1;
}

.home-review-form-section {
  background:
    radial-gradient(circle at top left, rgba(243, 180, 61, 0.12), transparent 24%),
    linear-gradient(180deg, #fff, #f7fbfd);
}

.review-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.35rem;
  align-items: start;
}

.review-form-copy {
  padding: 1.35rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 47, 73, 0.06);
}

.review-form-copy h3 {
  margin: 0 0 0.85rem;
  color: var(--primary-dark);
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.review-form-copy ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.review-form-copy li + li { margin-top: 0.6rem; }

.review-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  padding: 1.35rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff, #f9fcfd);
  box-shadow: 0 12px 28px rgba(15, 47, 73, 0.06);
}

.review-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-dark);
}

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

.review-form textarea {
  min-height: 120px;
}

.review-status {
  grid-column: 1 / -1;
}

.review-form-actions {
  display: flex;
  justify-content: flex-end;
  grid-column: 1 / -1;
}

.review-form .btn {
  border: 0;
}

.home-connect-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
  background: linear-gradient(120deg, #fffdf8, #f3fafc);
}

.home-connect-section h2 { margin: 0.25rem 0 1rem; }

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

.quick-link-list a {
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(11, 91, 122, 0.14);
  border-radius: 0.7rem;
  background: #fff;
  color: var(--primary);
  font-size: 0.87rem;
  font-weight: 800;
  text-decoration: none;
}

.quick-link-list a:hover,
.quick-link-list a:focus-visible {
  border-color: var(--secondary);
  box-shadow: 0 7px 16px rgba(15, 47, 73, 0.08);
}

.home-social > p:not(.section-kicker) { color: var(--muted); }

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.social-button {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.social-button:hover,
.social-button:focus-visible {
  filter: brightness(0.94);
  transform: translateY(-1px);
}
.social-button.whatsapp { background: #167a45; }
.social-button.facebook { background: #1877f2; }
.social-button.instagram { background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af); }
.social-button.tiktok { background: #111827; }
.social-button.google { background: #4285f4; }
.social-button.email { background: #9c6711; }

@media (max-width: 980px) {
  .home-product-grid,
  .promo-grid,
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-product-grid .home-product-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 0.7rem); }
  .home-reviews-banner { grid-template-columns: 1fr; }
  .review-form-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .home-product-grid,
  .promo-grid,
  .testimonial-grid,
  .home-connect-section,
  .home-reviews-banner { grid-template-columns: 1fr; }
  .home-product-grid {
    gap: 0.95rem;
  }
  .home-product-card {
    display: grid;
    grid-template-columns: minmax(110px, 34vw) minmax(0, 1fr);
    align-items: stretch;
  }
  .home-product-card img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    padding: 0;
    object-fit: cover;
    object-position: center;
    background: #dfecef;
  }
  .home-product-card > div {
    padding: 1rem;
  }
  .home-product-card h3 {
    margin-top: 0.25rem;
    font-size: 1rem;
  }
  .home-product-card p {
    margin-bottom: 0.85rem;
    font-size: 0.85rem;
  }
  .home-product-grid .home-product-card:last-child { grid-column: auto; max-width: none; }
  .quick-link-list { grid-template-columns: 1fr; }
  .review-form { grid-template-columns: 1fr; }
}

/* Agricultural blog */
.blog-intro,
.blog-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.blog-intro .section-heading {
  margin-bottom: 0;
}

.featured-article-section {
  overflow: hidden;
  background: linear-gradient(125deg, #f4fafb, #fffaf0);
}

#featured-article-slot {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: 100%;
}

.featured-article-image {
  min-height: 340px;
  overflow: hidden;
  border-radius: 1.05rem;
  box-shadow: 0 18px 36px rgba(7, 58, 79, 0.16);
}

.featured-article-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-article-copy h2 {
  margin: 0.45rem 0 0.5rem;
  color: var(--primary-dark);
}

.featured-article-copy > p:nth-of-type(2) {
  margin: 0 0 1rem;
  color: #506670;
  font-size: 0.98rem;
}

.article-category {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(11, 91, 122, 0.1);
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
}

.blog-listing-section {
  background: radial-gradient(circle at 100% 0%, rgba(11, 91, 122, 0.09), transparent 27%), #fff;
}

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

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(11, 91, 122, 0.13);
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 47, 73, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 180, 61, 0.75);
  box-shadow: 0 22px 38px rgba(15, 47, 73, 0.14);
}

.article-card[hidden] { display: none; }

.article-card > img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  background: #dfecef;
}

.article-card-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 1.2rem;
}

.article-card h3 {
  margin: 0.15rem 0 0;
  color: var(--primary-dark);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.38;
}

.article-card-content > p {
  margin: 0.7rem 0 1rem;
  color: #506670;
  font-size: 0.9rem;
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.article-read-more,
.article-share-text {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--primary);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.article-read-more:hover,
.article-read-more:focus-visible,
.article-share-text:hover,
.article-share-text:focus-visible {
  color: var(--primary-dark);
  text-decoration: underline;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(11, 91, 122, 0.25);
  border-radius: 999px;
  background: #f6fafb;
  color: var(--primary);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.share-button:hover,
.share-button:focus-visible {
  background: var(--primary);
  color: #fff;
}

.blog-cta {
  align-items: center;
  background: linear-gradient(135deg, #073a4f, #0b5b7a);
  color: #fff;
}

.blog-cta h2 { margin: 0.4rem 0; color: #fff; }
.blog-cta p { margin-bottom: 0; color: rgba(255, 255, 255, 0.84); }
.blog-cta .section-kicker { color: #ffdc86; }

.article-dialog {
  width: min(92vw, 780px);
  max-height: min(88vh, 760px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 1.15rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.article-dialog::backdrop {
  background: rgba(5, 27, 38, 0.66);
  backdrop-filter: blur(3px);
}

.article-dialog > img {
  display: block;
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.article-dialog-copy { padding: 1.7rem; }

.article-dialog h2 {
  margin: 0.25rem 0 0.9rem;
  color: var(--primary-dark);
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.article-dialog-copy #article-dialog-body p { color: #455e69; }
.article-dialog-copy #article-dialog-body h3 { margin: 1.25rem 0 0.35rem; color: var(--primary); font-size: 1rem; }
.article-dialog-copy #article-dialog-body ul { margin: 0.45rem 0 0; }
.article-dialog-copy #article-dialog-body li { margin: 0.35rem 0; }

.article-dialog-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

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

@media (max-width: 720px) {
  .blog-intro,
  .blog-cta { display: block; }
  .blog-intro .text-link { display: inline-block; margin-top: 1.25rem; }
  .blog-cta .btn { margin-top: 1.35rem; }
  .nav-brand { font-size: 1.05rem; gap: 0.55rem; }
  .nav-brand-logo { width: 5.8rem; height: 3.5rem; }
  .hero-logo { width: 112px; }
  #featured-article-slot { grid-template-columns: 1fr; }
  .featured-article-image { min-height: 180px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-dialog-copy { padding: 1.35rem; }
  .featured-article-image img,
  .article-card > img,
  .home-product-card img,
  .product-card > img,
  .product-card-image,
  .consultancy-image img,
  .worker-card-image img,
  .article-dialog > img,
  .product-dialog > img {
    width: 100%;
    height: 150px;
    padding: 0.65rem;
    box-sizing: border-box;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(180deg, #f4f8fa 0%, #e8f1f4 100%);
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .about-why-card-floating {
    margin-bottom: -1.25rem;
  }

  .worker-card {
    grid-template-columns: minmax(0, 1.35fr) minmax(200px, 0.85fr);
  }
}

/* Products catalogue */
.products-hero .hero-content {
  max-width: 850px;
}

.hero-eyebrow {
  margin: 0 0 0.55rem;
  color: #ffdc86;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.products-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.products-intro .section-heading {
  margin-bottom: 0;
}

.products-intro-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 0.35rem;
}

.text-link {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.catalogue-section {
  background: radial-gradient(circle at 98% 0%, rgba(243, 180, 61, 0.18), transparent 24%), linear-gradient(180deg, #fff 0%, #f5faf7 100%);
}

.catalogue-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(15, 47, 73, 0.06);
}

.blog-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 220px);
  gap: 1rem;
  align-items: end;
  padding: 1rem;
  border: 1px solid rgba(11, 91, 122, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(15, 47, 73, 0.06);
}

.blog-search-form {
  width: 100%;
  min-width: 0;
  max-width: 560px;
}

.blog-search-field {
  width: 100%;
}

.blog-search-field input {
  flex: 1 1 16rem;
}

.blog-filter-field {
  width: 100%;
  max-width: 220px;
}

.blog-filter-field select {
  width: 100%;
}

.search-field,
.filter-field {
  display: flex;
  min-width: 0;
}

.search-field {
  position: relative;
  align-items: center;
  gap: 0.7rem;
  padding: 0 1rem;
  border: 1px solid #c7d6df;
  border-radius: 0.75rem;
  background: #fff;
  overflow: visible;
}

.search-icon {
  color: var(--primary);
  font-size: 1.75rem;
  line-height: 1;
}

.search-field input,
.filter-field select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
}

.search-field input {
  flex: 1 1 12rem;
  width: auto;
}

.search-button {
  flex-shrink: 0;
  min-height: 2.6rem;
  padding: 0.72rem 1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 10px 18px rgba(7, 58, 79, 0.16);
}

.search-button:hover,
.search-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 22px rgba(7, 58, 79, 0.2);
}

.search-field:focus-within {
  border-color: rgba(11, 91, 122, 0.65);
  box-shadow: 0 0 0 4px rgba(11, 91, 122, 0.12);
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 0.35rem;
  max-height: 16rem;
  padding: 0.65rem;
  overflow: auto;
  border: 1px solid rgba(11, 91, 122, 0.15);
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 18px 30px rgba(15, 47, 73, 0.12);
}

.search-suggestion {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  width: 100%;
  padding: 0.68rem 0.75rem;
  border: 0;
  border-radius: 0.75rem;
  background: #f6fbfc;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.search-suggestion:hover,
.search-suggestion:focus-visible {
  transform: translateY(-1px);
  background: #edf6f8;
}

.search-suggestion strong {
  color: var(--primary-dark);
  font-size: 0.92rem;
}

.search-suggestion span {
  color: var(--muted);
  font-size: 0.78rem;
}

.filter-field {
  flex-direction: column;
  gap: 0.25rem;
  color: #355468;
  font-size: 0.78rem;
  font-weight: 800;
}

.filter-field select {
  min-height: 2.35rem;
  padding: 0 0.7rem;
  border: 1px solid #c7d6df;
  border-radius: 0.75rem;
  background: #fff;
  font-size: 0.94rem;
  font-weight: 500;
}

.catalogue-result {
  margin: 1.2rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.catalogue-promo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.2rem;
  padding: 1.35rem 1.45rem;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, #073a4f, #0b5b7a);
  color: #fff;
  box-shadow: 0 18px 35px rgba(15, 47, 73, 0.12);
}

.catalogue-promo-card h3 {
  margin: 0.35rem 0 0.45rem;
  color: #fff;
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.catalogue-promo-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
}

.catalogue-promo-button {
  flex-shrink: 0;
  white-space: nowrap;
}

.catalogue-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.catalogue-category-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(11, 91, 122, 0.13);
  border-radius: 1.1rem;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 47, 73, 0.08);
  text-align: left;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.catalogue-category-card:hover,
.catalogue-category-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(243, 180, 61, 0.7);
  box-shadow: 0 22px 38px rgba(15, 47, 73, 0.14);
}

.catalogue-category-card img {
  display: block;
  width: 100%;
  height: 150px;
  padding: 0.65rem;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #f4f8fa 0%, #e8f1f4 100%);
}

.catalogue-category-copy {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 1rem 1rem 1.1rem;
}

.catalogue-category-copy span {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalogue-category-copy h3 {
  margin: 0.25rem 0 0.45rem;
  color: var(--primary-dark);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.catalogue-category-copy p {
  margin: 0;
  color: #49606c;
  font-size: 0.88rem;
  line-height: 1.5;
}

.catalogue-category-view {
  align-self: flex-start;
  margin-top: 1rem;
  padding: 0.62rem 1rem;
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--maize-green);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.catalogue-category-view:hover,
.catalogue-category-view:focus-visible {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 10px 20px rgba(7, 58, 79, 0.12);
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(11, 91, 122, 0.13);
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 47, 73, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 180, 61, 0.7);
  box-shadow: 0 22px 38px rgba(15, 47, 73, 0.14);
}

.product-card[hidden] {
  display: none;
}

.product-card > img,
.product-card-image,
.product-card-placeholder {
  width: 100%;
  height: 175px;
}

.product-card > img,
.product-card-image {
  object-fit: cover;
  background: #dfecef;
}

.product-card-placeholder {
  display: grid;
  place-items: center;
  color: #4b6672;
  background: linear-gradient(135deg, #edf4f5, #dfecef);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-card-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 1.25rem;
}

.product-category {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.55rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(11, 91, 122, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
}

.product-card h3 {
  margin: 0;
  color: var(--primary-dark);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 1.06rem;
  line-height: 1.35;
}

.product-card p {
  margin: 0.7rem 0 1rem;
  color: #49606c;
  font-size: 0.91rem;
}

.promotion-chip,
.promotion-badge {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 0.6rem;
  padding: 0.24rem 0.65rem;
  border-radius: 999px;
  background: rgba(243, 180, 61, 0.16);
  color: #8a5d08;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 0.95rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(11, 91, 122, 0.1);
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  color: var(--primary-dark);
  font-size: 0.98rem;
  font-weight: 800;
}

.product-price del {
  color: #7c8e99;
  font-weight: 700;
}

.product-price strong {
  color: #0d7a4d;
}

.product-card dl {
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(11, 91, 122, 0.1);
}

.product-card dl div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.45rem;
}

.product-card dt {
  color: #667a84;
  font-size: 0.75rem;
  font-weight: 800;
}

.product-card dd {
  margin: 0;
  color: #2b4857;
  font-size: 0.78rem;
}

.stock-status {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.79rem;
  font-weight: 800;
}

.stock-status.in-stock { color: #177447; }
.stock-status.consult { color: #8a5d08; }

.product-actions {
  display: flex;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1rem;
}

.product-actions button {
  flex: 1;
  padding: 0.64rem 0.45rem;
  border: 1px solid var(--primary);
  border-radius: 0.7rem;
  background: #fff;
  color: var(--primary);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-actions button:hover,
.product-actions button:focus-visible {
  transform: translateY(-1px);
  background: var(--primary);
  color: #fff;
}

.product-actions .product-quote {
  border-color: var(--secondary);
  background: var(--secondary);
  color: #1a2b34;
}

.product-actions .product-quote:hover,
.product-actions .product-quote:focus-visible {
  background: #d99716;
  border-color: #d99716;
}

.no-results {
  margin: 2rem 0 0;
  padding: 1.1rem;
  border-radius: 0.75rem;
  background: rgba(243, 180, 61, 0.15);
  color: #64470e;
  text-align: center;
  font-weight: 700;
}

.consultancy-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #073a4f, #0b5b7a);
  color: #f7fbfe;
}

.consultancy-image {
  min-height: 330px;
  overflow: hidden;
  border-radius: 1rem;
}

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

.consultancy-content h2 { color: #fff; }
.consultancy-content .section-kicker { color: #ffdc86; }
.consultancy-content p { color: rgba(255, 255, 255, 0.84); }
.consultancy-content ul { margin: 1.15rem 0 1.5rem; padding-left: 1.25rem; }
.consultancy-content li { margin: 0.55rem 0; }

.quotation-section {
  background: radial-gradient(circle at 0% 100%, rgba(243, 180, 61, 0.18), transparent 25%), #fff;
}

.quote-form-card { max-width: 900px; }

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

.optional-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.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;
}

.product-dialog {
  display: flex;
  flex-direction: column;
  width: min(92vw, 760px);
  max-height: min(88vh, 720px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 1.15rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.product-dialog:not([open]),
.catalogue-dialog:not([open]) {
  display: none;
}

.product-dialog::backdrop {
  background: rgba(5, 27, 38, 0.66);
  backdrop-filter: blur(3px);
}

.product-dialog > img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  flex-shrink: 0;
}

.product-dialog-copy {
  flex: 1 1 auto;
  overflow: auto;
  padding: 1.7rem;
}

.product-dialog h2 {
  margin: 0.2rem 0 0.55rem;
  color: var(--primary-dark);
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.product-dialog p { color: var(--muted); }

.product-dialog dl {
  margin: 1rem 0 1.3rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: #f2f8fa;
}

.product-dialog dl div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 0.75rem;
  margin: 0.35rem 0;
}

.product-dialog dt { color: var(--primary); font-weight: 800; }
.product-dialog dd { margin: 0; color: var(--text); }

.catalogue-dialog {
  width: min(95vw, 1180px);
  max-height: min(90vh, 860px);
  padding: 1.45rem 1.45rem 1.65rem;
  overflow: auto;
  border: 0;
  border-radius: 1.15rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.catalogue-dialog::backdrop {
  background: rgba(5, 27, 38, 0.66);
  backdrop-filter: blur(3px);
}

.catalogue-dialog-copy {
  padding-right: 2.2rem;
}

.catalogue-dialog h2 {
  margin: 0.2rem 0 0.55rem;
  color: var(--primary-dark);
  font-family: "Montserrat", "Segoe UI", sans-serif;
}

.catalogue-dialog p {
  color: var(--muted);
}

.catalogue-dialog .catalogue-result {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.catalogue-dialog .product-grid {
  margin-top: 1rem;
}

.catalogue-dialog .no-results {
  margin: 1rem 0 0;
}

.dialog-close,
.catalogue-dialog-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.3rem;
  height: 2.3rem;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 58, 79, 0.85);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.catalogue-dialog-close {
  z-index: 1;
}

@media (max-width: 980px) {
  .catalogue-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1280px) {
  .catalogue-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .products-intro { display: block; }
  .products-intro-actions { margin-top: 1.25rem; }
  .catalogue-tools,
  .blog-tools {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0.8rem;
    border-radius: 1.1rem;
    background: linear-gradient(145deg, #ffffff, #f2f8fa);
  }
  .blog-search-form,
  .blog-filter-field { max-width: none; }
  .search-field {
    flex-wrap: nowrap;
    gap: 0.55rem;
    min-height: 3.3rem;
    padding: 0.35rem 0.4rem 0.35rem 0.85rem;
    border-radius: 0.9rem;
  }
  .search-icon { font-size: 1.4rem; }
  .search-field input { min-width: 0; font-size: 1rem; }
  .search-button {
    width: auto;
    min-height: 2.6rem;
    padding: 0.65rem 0.95rem;
    border-radius: 0.7rem;
    box-shadow: none;
  }
  .filter-field { gap: 0.4rem; }
  .filter-field select {
    min-height: 3.1rem;
    padding: 0 0.85rem;
    border-radius: 0.85rem;
  }
  .catalogue-promo-card { flex-direction: column; align-items: flex-start; }
  .catalogue-category-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .catalogue-dialog .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }
  .catalogue-dialog .product-card { border-radius: 0.9rem; }
  .catalogue-dialog .product-card > img,
  .catalogue-dialog .product-card-image,
  .catalogue-dialog .product-card-placeholder {
    height: 100px;
    padding: 0.35rem;
    box-sizing: border-box;
  }
  .catalogue-dialog .product-card-content { padding: 0.7rem; }
  .catalogue-dialog .product-category {
    margin-bottom: 0.35rem;
    padding: 0.2rem 0.45rem;
    font-size: 0.62rem;
  }
  .catalogue-dialog .product-card h3 { font-size: 0.88rem; }
  .catalogue-dialog .product-card p,
  .catalogue-dialog .product-card dl { display: none; }
  .catalogue-dialog .promotion-chip,
  .catalogue-dialog .promotion-badge {
    margin-bottom: 0.4rem;
    padding: 0.18rem 0.4rem;
    font-size: 0.6rem;
  }
  .catalogue-dialog .product-price-block {
    gap: 0.2rem;
    margin-bottom: 0.55rem;
    padding-top: 0.5rem;
  }
  .catalogue-dialog .product-price { font-size: 0.78rem; }
  .catalogue-dialog .stock-status {
    margin-top: 0.55rem;
    font-size: 0.67rem;
  }
  .catalogue-dialog .product-actions {
    gap: 0.35rem;
    padding-top: 0.65rem;
  }
  .catalogue-dialog .product-actions button {
    padding: 0.5rem 0.25rem;
    font-size: 0.66rem;
    line-height: 1.15;
  }
  .consultancy-section { grid-template-columns: 1fr; }
  .consultancy-image { min-height: 150px; }
  .quote-form-grid { grid-template-columns: 1fr; }
  .product-actions { gap: 0.75rem; }
  .product-dialog-copy { padding: 1.35rem; }
  .team-card-image {
    height: 100%;
    min-height: 150px;
    object-position: center top;
  }

  .team-card-image-full {
    object-position: center center;
  }
  .product-dialog {
    width: min(calc(100vw - 1rem), 760px);
    max-height: calc(100dvh - 1rem);
    border-radius: 1rem;
  }
  .product-dialog > img {
    padding: 0;
    box-sizing: border-box;
    height: clamp(170px, 42vw, 235px);
    object-fit: cover;
    object-position: center 20%;
    background: #dfecef;
  }
  .product-dialog-copy {
    padding: 1.15rem;
  }
  .product-dialog dl {
    padding: 0.85rem;
  }
  .product-dialog dl div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
  .dialog-close {
    top: 0.6rem;
    right: 0.6rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.4rem;
  }
}
