:root {
  --osh-deep-river: #174e63;
  --osh-open-sky-pink: #e9005a;
  --osh-sky-blue: #62bed2;
  --osh-soft-aqua: #ddf1f3;
  --osh-sage: #829d83;
  --osh-forest: #355e4b;
  --osh-sand: #e8ddc8;
  --osh-warm-stone: #c6b79f;
  --osh-warm-white: #f8faf8;
  --osh-surface: #ffffff;
  --osh-text: #21343c;
  --osh-text-secondary: #65777d;
  --osh-muted: #91a0a4;
  --osh-border: rgba(23, 78, 99, 0.12);
  --osh-bg: var(--osh-warm-white);
  --osh-accent: var(--osh-open-sky-pink);
  --osh-footer-bg: #123a4a;
  --osh-footer-muted: rgba(248, 250, 248, 0.72);
  --osh-footer-link: rgba(248, 250, 248, 0.86);
  --osh-footer-link-hover: var(--osh-sand);
  --osh-shadow: 0 18px 40px rgba(23, 78, 99, 0.1);
  --osh-shadow-sm: 0 8px 24px rgba(23, 78, 99, 0.08);

  --osh-glass-warm: rgba(255, 255, 255, 0.34);
  --osh-glass-border: rgba(255, 255, 255, 0.42);
  --osh-glass-highlight: rgba(255, 255, 255, 0.62);
  --osh-glass-shadow: 0 10px 30px rgba(23, 78, 99, 0.08);
  --osh-glass-blur: 28px;
  --osh-glass-saturate: 160%;
  --osh-glass-item: rgba(255, 255, 255, 0.3);
  --osh-glass-item-border: rgba(255, 255, 255, 0.42);
  --osh-glass-pointer: 50% 50%;

  --font-display: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  --font-body: Manrope, "Segoe UI", system-ui, sans-serif;
  --shell: min(1120px, calc(100% - 2.5rem));
  --header-shell: min(1600px, calc(100% - 1rem));
  --radius: 1.25rem;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --site-header-height: 72px;
  --header-top-gap: 12px;
  --header-h: calc(var(--site-header-height) + var(--header-top-gap));
  --osh-tabbar-h: 0px;
  --osh-tabbar-clearance: 0px;
}

@media (max-width: 1023px) {
  :root {
    --site-header-height: 64px;
    --header-top-gap: 8px;
    --osh-tabbar-h: 68px;
    --osh-tabbar-inset-x: 14px;
    --osh-tabbar-inset-bottom: 10px;
    --osh-tabbar-max-w: 520px;
    --osh-tabbar-glass: rgba(248, 250, 248, 0.72);
    --osh-tabbar-glass-border: rgba(255, 255, 255, 0.78);
    --osh-tabbar-capsule: rgba(255, 255, 255, 0.78);
    --osh-tabbar-clearance: calc(
      var(--osh-tabbar-h) + var(--osh-tabbar-inset-bottom) + env(safe-area-inset-bottom, 0px) + 12px
    );
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--osh-text);
  background:
    radial-gradient(1000px 520px at 8% -8%, rgba(98, 190, 210, 0.18), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(232, 221, 200, 0.35), transparent 50%),
    linear-gradient(180deg, #eef6f7 0%, var(--osh-bg) 32%, #f7faf8 100%);
  min-height: 100vh;
  padding-bottom: var(--osh-tabbar-clearance);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--osh-deep-river);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
  color: var(--osh-deep-river);
}

p {
  margin: 0 0 1rem;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--osh-deep-river);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 200;
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
}

/* —— Coastal Harmony floating header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: var(--header-top-gap);
  pointer-events: none;
}

.site-header .shell {
  width: var(--header-shell);
  pointer-events: none;
}

.site-header__inner {
  position: relative;
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1.25rem;
  min-height: var(--site-header-height);
  padding: 0 0.85rem 0 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--osh-glass-border);
  box-shadow: var(--osh-glass-shadow);
  overflow: visible;
  isolation: isolate;
}

.site-header__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(
      120% 180% at var(--osh-glass-pointer, 50% 40%),
      rgba(255, 255, 255, 0.28) 0%,
      transparent 46%
    ),
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--osh-warm-white) 42%, transparent) 0%,
      var(--osh-glass-warm) 52%,
      color-mix(in srgb, var(--osh-soft-aqua) 35%, transparent) 100%
    );
  background-color: var(--osh-glass-warm);
  backdrop-filter: blur(var(--osh-glass-blur)) saturate(var(--osh-glass-saturate)) brightness(1.06);
  -webkit-backdrop-filter: blur(var(--osh-glass-blur)) saturate(var(--osh-glass-saturate)) brightness(1.06);
  box-shadow: inset 0 1px 0 var(--osh-glass-highlight);
}

.site-header.is-hero-glass:not(.is-scrolled) .site-header__inner {
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 12px 34px rgba(23, 78, 99, 0.09);
}

.site-header.is-hero-glass:not(.is-scrolled) .site-header__inner::before {
  background-color: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(32px) saturate(160%) brightness(1.06);
  -webkit-backdrop-filter: blur(32px) saturate(160%) brightness(1.06);
}

.site-header.is-scrolled .site-header__inner {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 28px rgba(23, 78, 99, 0.09);
}

.site-header.is-scrolled .site-header__inner::before {
  background-color: rgba(255, 255, 255, 0.48);
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--osh-deep-river);
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 28%, #ddf1f3, transparent 48%),
    linear-gradient(145deg, var(--osh-sky-blue), var(--osh-deep-river));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.brand-sub {
  font-size: 0.68rem;
  color: var(--osh-text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-desktop {
  display: none;
  position: relative;
  z-index: 2;
  justify-self: center;
}

.nav-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.05rem;
  justify-content: center;
  min-width: 0;
}

.nav-list a {
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: var(--osh-text-secondary);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 0.48rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-list a[aria-current="page"],
.nav-list a:hover {
  color: var(--osh-deep-river);
}

.nav-item--mega {
  position: relative;
  z-index: 3;
}

.nav-mega-trigger {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--osh-text-secondary);
  font: inherit;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 0.48rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}

.nav-mega-trigger:hover,
.nav-mega-trigger[aria-expanded="true"],
.nav-mega-trigger.is-current {
  color: var(--osh-deep-river);
}

.nav-mega-caret {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 200ms var(--ease);
}

.nav-mega-trigger[aria-expanded="true"] .nav-mega-caret {
  transform: rotate(225deg) translateY(-1px);
}

.nav-mega {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, calc(100vw - 2.5rem));
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms var(--ease), visibility 180ms var(--ease), transform 180ms var(--ease);
}

.nav-item--mega.is-open .nav-mega,
.nav-mega:not([hidden]) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mega[hidden] {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav-mega__inner {
  display: grid;
  border-radius: 1.75rem;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #ffffff 28%,
      rgba(255, 255, 255, 0.97) 58%,
      rgba(252, 253, 252, 0.9) 100%
    );
  border: 1px solid rgba(220, 228, 226, 0.95);
  box-shadow:
    0 28px 64px rgba(35, 68, 76, 0.12),
    0 8px 22px rgba(35, 68, 76, 0.06),
    inset 0 1px 0 #fff;
  backdrop-filter: blur(28px) saturate(140%) brightness(1.02);
  -webkit-backdrop-filter: blur(28px) saturate(140%) brightness(1.02);
}

.nav-mega__utility {
  display: flex;
  align-items: center;
  min-height: 3.4rem;
  padding: 0.55rem 1.15rem;
  border-bottom: 1px solid rgba(230, 236, 234, 0.95);
  background: #fff;
}

.nav-mega__utility-main {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: none;
  padding: 0.4rem 0.55rem !important;
  border-radius: 1rem;
  color: var(--osh-text);
  text-decoration: none;
}

.nav-mega__utility-main:hover {
  background: rgba(221, 241, 243, 0.45);
  color: var(--osh-deep-river);
}

.nav-mega__utility-text {
  display: grid;
  gap: 0.08rem;
}

.nav-mega__utility-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--osh-deep-river);
  line-height: 1.2;
}

.nav-mega__utility-text span {
  font-size: 0.78rem;
  color: var(--osh-text-secondary);
  line-height: 1.35;
}

.nav-mega__chevron,
.nav-mega__link-arrow {
  color: #1d5d6c;
  font-size: 0.95rem;
  transition: transform 200ms var(--ease);
}

.nav-mega__utility-main:hover .nav-mega__chevron,
.nav-mega__link:hover .nav-mega__link-arrow {
  transform: translateX(3px);
}

.nav-mega__body--cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem 1.15rem 1.15rem;
}

.nav-mega__body--cols-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 1rem 1.15rem 1.15rem;
}

.nav-mega--cols-1 {
  width: min(420px, calc(100vw - 2.5rem));
}

.nav-mega__col {
  min-width: 0;
  padding: 0.85rem 0.75rem 0.95rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(231, 239, 236, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.nav-mega__col:nth-child(2) {
  background: rgba(243, 235, 226, 0.42);
}

.nav-mega__col-title {
  margin: 0 0 0.7rem;
  padding: 0 0.15rem 0.45rem;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1d5d6c;
  border-bottom: 1px solid rgba(29, 93, 108, 0.22);
}

.nav-mega__col:nth-child(2) .nav-mega__col-title {
  color: #9a7340;
  border-bottom-color: rgba(154, 115, 64, 0.22);
}

.nav-mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.nav-mega__link {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem !important;
  border-radius: 0.95rem;
  min-height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.58);
  color: var(--osh-text) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-mega__link:hover {
  background: #fff;
  box-shadow: 0 6px 16px rgba(35, 68, 76, 0.06);
  color: var(--osh-deep-river) !important;
}

.nav-mega__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--osh-deep-river);
}

.nav-mega__link-copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.nav-mega__link-label {
  line-height: 1.2;
}

.nav-mega__link-desc {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--osh-text-secondary);
  line-height: 1.3;
}

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

.software-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.4rem 1.35rem;
  border-radius: 1.25rem;
  border: 1px solid var(--osh-border);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
}

.software-card:hover {
  transform: translateY(-2px);
  border-color: rgba(98, 190, 210, 0.45);
  box-shadow: var(--osh-shadow-sm);
  color: inherit;
}

.software-card__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--osh-sky-blue);
}

.software-card h2 {
  margin: 0;
  font-size: 1.55rem;
}

.software-card p {
  margin: 0;
  color: var(--osh-text-secondary);
}

.software-card__cta {
  margin-top: 0.35rem;
  font-weight: 700;
  color: var(--osh-deep-river);
}

.nav-hover-capsule {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 40px;
  margin-top: -20px;
  border-radius: 999px;
  background: var(--osh-glass-item);
  border: 1px solid var(--osh-glass-item-border);
  box-shadow: inset 0 1px 0 var(--osh-glass-highlight);
  opacity: 0;
  pointer-events: none;
  transition: left 220ms var(--ease), width 220ms var(--ease), opacity 160ms var(--ease);
}

.nav-list.is-capsule-ready .nav-hover-capsule {
  opacity: 1;
}

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.45rem;
}

.header-actions .btn-small {
  white-space: nowrap;
  padding: 0.55rem 0.95rem;
  font-size: 0.84rem;
}

.lang-switch {
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  color: var(--osh-text-secondary);
  padding: 0.4rem 0.4rem;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--osh-deep-river);
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  color: #fff;
  background: #123a4a;
  transform: translateY(-1px);
}

.btn-small {
  padding: 0.62rem 1rem;
  font-size: 0.88rem;
}

.btn-ghost {
  background: transparent;
  color: var(--osh-deep-river);
  border-color: var(--osh-border);
}

.btn-ghost:hover {
  background: var(--osh-soft-aqua);
  color: var(--osh-deep-river);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  margin-top: calc(var(--header-h) * -1);
  padding-top: var(--header-h);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 58, 74, 0.18) 0%, rgba(18, 58, 74, 0.12) 42%, rgba(18, 58, 74, 0.72) 100%),
    linear-gradient(90deg, rgba(18, 58, 74, 0.28), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4.5rem;
  max-width: 40rem;
}

.hero-brand {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  font-weight: 700;
  line-height: 0.98;
  color: #fff;
  margin: 0 0 1.15rem;
  text-wrap: balance;
}

.hero-line {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(248, 250, 248, 0.9);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

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

.hero .btn {
  background: #fff;
  color: var(--osh-deep-river);
}

.hero .btn:hover {
  background: var(--osh-soft-aqua);
  color: var(--osh-deep-river);
}

.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--osh-sky-blue);
  margin-bottom: 0.85rem;
}

.lead {
  color: var(--osh-text-secondary);
  font-size: 1.125rem;
}

.service-list {
  display: grid;
  border-top: 1px solid var(--osh-border);
}

.service-row {
  display: grid;
  gap: 0.75rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--osh-border);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.35s var(--ease);
}

.service-row:hover {
  padding-left: 0.5rem;
  color: inherit;
}

.service-row h2,
.service-row h3 {
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  margin: 0;
}

.service-row p {
  margin: 0;
  color: var(--osh-text-secondary);
  max-width: 42rem;
}

.service-index {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--osh-sky-blue);
  font-weight: 700;
}

.presence-grid {
  display: grid;
  gap: 1.5rem;
}

.presence-item h3 {
  font-size: 1.4rem;
}

.presence-item p {
  color: var(--osh-text-secondary);
  margin: 0;
}

.region-block {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.region-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.region-cities span {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--osh-border);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--osh-text-secondary);
  background: rgba(255, 255, 255, 0.55);
}

.contact-band {
  background: linear-gradient(160deg, #123a4a 0%, #174e63 55%, #2a7a8f 120%);
  color: #fff;
  border-radius: calc(var(--radius) + 0.5rem);
  padding: clamp(2.5rem, 6vw, 4rem);
  box-shadow: var(--osh-shadow);
}

.contact-band h2 {
  color: #fff;
}

.contact-band .kicker {
  color: var(--osh-sky-blue);
}

.contact-band .lead,
.contact-band p {
  color: rgba(248, 250, 248, 0.8);
}

.contact-band .btn {
  background: #fff;
  color: var(--osh-deep-river);
}

.page-hero {
  padding: clamp(3.5rem, 8vw, 6rem) 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  max-width: 14ch;
}

.team-group {
  margin: 2rem 0 3.5rem;
}

.photo-slot {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 1px dashed rgba(23, 78, 99, 0.28);
  background:
    linear-gradient(145deg, rgba(221, 241, 243, 0.75), rgba(255, 255, 255, 0.6)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 12px,
      rgba(23, 78, 99, 0.03) 12px,
      rgba(23, 78, 99, 0.03) 24px
    );
  overflow: hidden;
  color: var(--osh-text-secondary);
  text-align: center;
  padding: 1.5rem;
}

.photo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-slot.has-image {
  border-style: solid;
  border-color: transparent;
}

.photo-slot-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--osh-deep-river);
  margin-bottom: 0.35rem;
}

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

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

.team-card .photo-slot {
  aspect-ratio: 4 / 5;
}

.team-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.4rem;
}

.role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-list li {
  font-size: 0.85rem;
  color: var(--osh-text-secondary);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--osh-border);
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
}

.contact-aside a {
  display: block;
  text-decoration: none;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

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

.form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--osh-border);
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.8);
  color: var(--osh-text);
}

.form textarea {
  min-height: 9rem;
  resize: vertical;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid rgba(98, 190, 210, 0.45);
  border-color: var(--osh-sky-blue);
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-status {
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  margin-bottom: 1rem;
}

.form-status.ok {
  background: #e7f4ea;
  color: #1d5c34;
}

.form-status.err {
  background: #f8e8e8;
  color: #8a2f2f;
}

.legal-content {
  max-width: 42rem;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.site-footer {
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
  background: var(--osh-footer-bg);
  color: rgba(248, 250, 248, 0.92);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

.footer-tagline,
.footer-region {
  color: var(--osh-footer-muted);
  margin: 0 0 0.35rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.55rem;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
  color: var(--osh-footer-link);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--osh-footer-link-hover);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--osh-footer-muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

/* —— Mobile Coastal Harmony tab bar —— */
.osh-tabbar {
  display: none;
}

@media (max-width: 1023px) {
  .osh-tabbar {
    --osh-capsule-shine: 50%;
    position: fixed;
    left: 50%;
    bottom: calc(var(--osh-tabbar-inset-bottom, 10px) + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    z-index: 110;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    width: calc(100% - (2 * var(--osh-tabbar-inset-x, 14px)));
    max-width: var(--osh-tabbar-max-w, 520px);
    height: var(--osh-tabbar-h, 68px);
    padding: 0.3rem 0.28rem;
    border-radius: 999px;
    border: 1px solid var(--osh-tabbar-glass-border);
    background-color: rgba(248, 250, 248, 0.88);
    background-image: linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(221, 241, 243, 0.28) 48%,
      rgba(248, 250, 248, 0.42) 100%
    );
    box-shadow:
      0 16px 40px rgba(23, 78, 99, 0.14),
      0 2px 8px rgba(23, 78, 99, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.88);
    color: var(--osh-deep-river);
    isolation: isolate;
  }

  @supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .osh-tabbar {
      background-color: var(--osh-tabbar-glass);
      backdrop-filter: blur(22px) saturate(145%) brightness(1.04);
      -webkit-backdrop-filter: blur(22px) saturate(145%) brightness(1.04);
    }
  }

  .osh-tabbar__capsule {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 0;
    width: 64px;
    height: calc(100% - 0.5rem);
    border-radius: 999px;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -50%, 0);
    background-color: var(--osh-tabbar-capsule);
    background-image: linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.55) var(--osh-capsule-shine, 50%),
      rgba(98, 190, 210, 0.14) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
      0 4px 14px rgba(23, 78, 99, 0.08),
      inset 0 1px 0 #fff;
    transition: transform 280ms var(--ease), width 280ms var(--ease), opacity 160ms var(--ease);
  }

  .osh-tabbar.is-ready .osh-tabbar__capsule {
    opacity: 1;
  }

  .osh-tabbar__item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.14rem;
    min-width: 0;
    width: 100%;
    height: 100%;
    padding: 0.28rem 0.1rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--osh-deep-river);
    text-decoration: none;
    font: inherit;
    font-weight: 600;
    -webkit-tap-highlight-color: transparent;
  }

  .osh-tabbar__icon {
    display: grid;
    place-items: center;
    width: 1.45rem;
    height: 1.45rem;
  }

  .osh-tabbar__label {
    font-size: 0.62rem;
    line-height: 1.1;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .osh-tabbar__item.is-active,
  .osh-tabbar__item[aria-current="page"] {
    color: var(--osh-open-sky-pink);
    font-weight: 700;
  }

  .header-actions .btn-small {
    display: none;
  }
}

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

  .hero-media img,
  .reveal,
  .btn,
  .service-row,
  .nav-hover-capsule,
  .osh-tabbar__capsule {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (min-width: 720px) {
  .software-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .presence-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

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

  .region-block {
    grid-template-columns: 1.2fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

@media (min-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-row {
    grid-template-columns: 4rem 1fr;
    align-items: start;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: block;
  }

  .osh-tabbar {
    display: none !important;
  }

  body {
    padding-bottom: 0;
  }
}



/* —— Sales expansion —— */
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--osh-border);
  color: var(--osh-deep-river);
  text-decoration: none;
  background: rgba(255,255,255,0.45);
}
.icon-btn:hover { background: var(--osh-soft-aqua); color: var(--osh-deep-river); }

.wa-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(18, 140, 126, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.35)),
    rgba(37, 211, 102, 0.2);
  color: #0f7a6b;
  text-decoration: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 6px 14px rgba(15, 122, 107, 0.1);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.wa-btn__icon {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
}

.wa-btn:hover {
  background: #25d366;
  border-color: #1ebe57;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.28);
}

.wa-btn:focus-visible {
  outline: 2px solid #128c7e;
  outline-offset: 3px;
}

.site-header.is-hero-glass:not(.is-scrolled) .wa-btn {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.site-header.is-hero-glass:not(.is-scrolled) .wa-btn:hover {
  background: #25d366;
  border-color: #1ebe57;
  color: #fff;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.45rem;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--osh-deep-river);
  transition: transform .3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-sheet {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(18,58,74,0.35);
  backdrop-filter: blur(6px);
}
.mobile-sheet[hidden] { display: none !important; }
.mobile-sheet__panel {
  position: absolute;
  inset: auto 0 0 0;
  max-height: min(92vh, 820px);
  overflow: auto;
  background: #f8faf8;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 1.25rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
  box-shadow: 0 -20px 50px rgba(23,78,99,0.18);
}
.mobile-sheet__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.mobile-sheet__brand { margin: 0; font-family: var(--font-display); font-size: 1.2rem; color: var(--osh-deep-river); }
.mobile-sheet__close {
  border: 0;
  background: transparent;
  color: var(--osh-text-secondary);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.mobile-sheet__nav { display: grid; gap: .35rem; }
.mobile-sheet__nav a {
  display: grid;
  gap: .15rem;
  padding: .95rem .85rem;
  border-radius: 1rem;
  text-decoration: none;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--osh-border);
  color: inherit;
}
.mobile-sheet__nav strong { color: var(--osh-deep-river); font-size: 1.05rem; }
.mobile-sheet__nav span { color: var(--osh-text-secondary); font-size: .88rem; }
.mobile-sheet__actions { display: grid; gap: .65rem; margin-top: 1.25rem; }

.hero--sales { align-items: center; }
.hero-sales-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding: 6.5rem 0 3.5rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  margin: 0 0 .85rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(248,250,248,.82);
}
.hero-quick {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem 1.1rem;
  margin-top: 1.15rem;
}
.hero-quick a {
  color: rgba(248,250,248,.88);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255,255,255,.28);
}
.hero-stack {
  position: relative;
  min-height: 280px;
  display: none;
}
.ui-card {
  position: absolute;
  border-radius: 1rem;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 40px rgba(8,24,32,.22);
  border: 1px solid rgba(255,255,255,.65);
  overflow: hidden;
}
.ui-card--site { width: 58%; height: 150px; left: 8%; top: 18%; padding: .7rem; }
.ui-card--site span { display:inline-block; width:8px; height:8px; border-radius:50%; background:#e8a0a0; margin-right:4px; }
.ui-card--site span:nth-child(2){background:#e8d8a0;}
.ui-card--site span:nth-child(3){background:#a0d8b8;}
.ui-card__bar { height: 10px; width: 42%; background: #174e63; border-radius: 999px; margin: .55rem 0 .5rem; }
.ui-card__block { height: 54px; border-radius: .6rem; background: linear-gradient(135deg,#ddf1f3,#e8ddc8); }
.ui-card--dash { width: 48%; height: 120px; right: 4%; top: 8%; display:grid; grid-template-columns: 28% 1fr; }
.ui-card__side { background: #174e63; }
.ui-card__main { padding: .55rem; display:grid; gap:.35rem; }
.ui-card__main i { display:block; height: 18px; border-radius: .35rem; background: #ddf1f3; }
.ui-card--phone { width: 86px; height: 150px; right: 18%; bottom: 4%; border-radius: 1.1rem; padding: .45rem; }
.ui-card__notch { width: 36%; height: 6px; margin: 0 auto .4rem; border-radius: 999px; background: #c6b79f; }
.ui-card__screen { height: calc(100% - 14px); border-radius: .75rem; background: linear-gradient(180deg,#62bed2,#174e63); }
.ui-card--invoice { width: 42%; height: 95px; left: 22%; bottom: 8%; padding: .7rem; }
.ui-card--invoice strong, .ui-card--invoice em { display:block; height: 8px; border-radius: 999px; background: #174e63; margin-bottom: .45rem; }
.ui-card--invoice em { width: 70%; background: #c6b79f; opacity: .7; }

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1.25rem;
}
.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem;
  padding: 1rem 1.15rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--osh-border);
  box-shadow: var(--osh-shadow-sm);
  backdrop-filter: blur(16px);
}
.trust-strip__inner span {
  font-weight: 700;
  font-size: .92rem;
  color: var(--osh-deep-river);
  text-align: center;
}
.trust-strip--soft .trust-strip__inner {
  background: rgba(221,241,243,.45);
  box-shadow: none;
}

.package-grid {
  display: grid;
  gap: 1rem;
}
.package-card {
  display: grid;
  gap: .75rem;
  padding: 1.4rem 1.3rem;
  border-radius: 1.35rem;
  border: 1px solid var(--osh-border);
  background: rgba(255,255,255,.72);
}
.package-card--featured {
  background: linear-gradient(160deg, rgba(255,255,255,.92), rgba(221,241,243,.65));
  border-color: rgba(98,190,210,.45);
  box-shadow: var(--osh-shadow-sm);
}
.package-card h3 { margin: 0; font-size: 1.55rem; }
.package-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #c45a4a;
}
.package-card ul { margin: 0; padding-left: 1.1rem; color: var(--osh-text-secondary); }
.package-card li + li { margin-top: .25rem; }
.price-note {
  margin-top: 1.25rem;
  color: var(--osh-text-secondary);
  font-size: .95rem;
  max-width: 48rem;
}

.event-feature {
  background: linear-gradient(180deg, rgba(221,241,243,.45), transparent 70%);
  border-radius: 0;
}
.event-map, .event-usecases {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.event-map__col, .event-usecases article {
  padding: 1.15rem 1.1rem;
  border-radius: 1.2rem;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--osh-border);
}
.event-map__col h3, .event-usecases h3 { margin: 0 0 .65rem; font-size: 1.25rem; }
.event-map__col ul { margin: 0; padding-left: 1.05rem; color: var(--osh-text-secondary); }
.event-prototype {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--osh-border);
  background: #123a4a;
  color: #fff;
}
.event-prototype__chrome {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .7rem 1rem;
  background: rgba(255,255,255,.06);
}
.event-prototype__chrome span {
  width: 9px; height: 9px; border-radius: 50%; background: #e8a0a0;
}
.event-prototype__chrome span:nth-child(2){ background:#e8d8a0; }
.event-prototype__chrome span:nth-child(3){ background:#a0d8b8; }
.event-prototype__chrome em { margin-left: .6rem; font-style: normal; font-size: .82rem; opacity: .8; }
.event-prototype__body { display: grid; grid-template-columns: 22% 1fr; min-height: 180px; }
.event-prototype__body aside { background: rgba(0,0,0,.18); padding: .9rem; display:grid; gap:.45rem; align-content:start; }
.event-prototype__body aside b { display:block; height: 12px; border-radius: 999px; background: rgba(255,255,255,.18); }
.event-prototype__body > div { padding: .9rem; }
.proto-row { height: 18px; width: 40%; border-radius: 999px; background: rgba(98,190,210,.55); margin-bottom: .8rem; }
.proto-cards, .proto-table { display:grid; grid-template-columns: repeat(3,1fr); gap:.5rem; }
.proto-cards i, .proto-table i { display:block; height: 42px; border-radius: .55rem; background: rgba(255,255,255,.1); }
.proto-table { margin-top: .55rem; grid-template-columns: 1fr; }
.proto-table i { height: 14px; }
.event-prototype__note { margin: 0; padding: .75rem 1rem 1rem; font-size: .85rem; color: rgba(248,250,248,.72); }

.integration-grid { display: grid; gap: .65rem; }
.integration-item, .faq-item {
  border-radius: 1rem;
  border: 1px solid var(--osh-border);
  background: rgba(255,255,255,.7);
  padding: .2rem .95rem .85rem;
}
.integration-item summary, .faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--osh-deep-river);
  padding: .85rem 0 .35rem;
}
.integration-item summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker { display: none; }
.integration-item p, .faq-item p { margin: 0; color: var(--osh-text-secondary); }

.process-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}
.process-n {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--osh-sky-blue);
}
.process-list h3 { margin: 0 0 .35rem; }
.process-list p { margin: 0; color: var(--osh-text-secondary); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.project-card {
  position: relative;
  display: block;
  border-radius: 1.1rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  aspect-ratio: 4 / 3;
  background: #174e63;
}
.project-card.is-placeholder { pointer-events: none; opacity: .72; }
.project-card__media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.28), transparent 40%),
    linear-gradient(145deg, hsl(var(--tone, 190) 35% 42%), hsl(calc(var(--tone, 190) + 40) 40% 28%));
}
.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.project-card__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: .25rem;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 35%, rgba(12,28,36,.78));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.project-card:hover .project-card__overlay,
.project-card:focus-visible .project-card__overlay {
  opacity: 1;
  transform: none;
}
.project-card:hover .project-card__media img {
  transform: scale(1.05);
}
.project-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}
.project-card__cat {
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .85;
}
.project-card.is-placeholder .project-card__overlay { opacity: .85; transform: none; }

.ai-grid { display: grid; gap: 1.5rem; }
.ai-list {
  margin: 0;
  padding: 1.2rem 1.2rem 1.2rem 2rem;
  border-radius: 1.25rem;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--osh-border);
  color: var(--osh-text-secondary);
}
.ai-section { background: linear-gradient(180deg, transparent, rgba(232,221,200,.28), transparent); }

.support-grid { display: grid; gap: 1rem; }
.support-card {
  padding: 1.25rem;
  border-radius: 1.2rem;
  border: 1px solid var(--osh-border);
  background: rgba(255,255,255,.72);
}
.support-card h3 { margin: 0 0 .45rem; }
.support-price { margin: .75rem 0 0; font-weight: 700; color: var(--osh-deep-river); }

.team-bio { margin: .65rem 0 0; color: var(--osh-text-secondary); font-size: .95rem; }
.check-list { padding-left: 1.15rem; color: var(--osh-text-secondary); }
.check-list li + li { margin-top: .35rem; }
.soft-note { color: var(--osh-text-secondary); font-size: .88rem; }

.chip-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-flex;
  cursor: pointer;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-flex;
  padding: .55rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--osh-border);
  background: rgba(255,255,255,.75);
  font-weight: 600;
  font-size: .9rem;
}
.chip input:checked + span,
.chip input:focus-visible + span {
  border-color: var(--osh-sky-blue);
  background: var(--osh-soft-aqua);
  color: var(--osh-deep-river);
}
.form-step[hidden] { display: none !important; }
.step-label { font-size: .85rem; font-weight: 700; color: var(--osh-sky-blue); letter-spacing: .04em; }
.form-nav { display: flex; flex-wrap: wrap; gap: .65rem; }
.consent { display: flex !important; align-items: flex-start; gap: .65rem; font-weight: 500 !important; }
.consent input { width: auto; margin-top: .25rem; }
fieldset { border: 0; padding: 0; margin: 0 0 1rem; }
legend { font-weight: 700; margin-bottom: .65rem; }

.footer-grid--rich { grid-template-columns: 1fr; }
.footer-col { display: grid; gap: .45rem; }
.footer-col-title {
  margin: 0 0 .25rem;
  font-weight: 700;
  color: #fff;
}
.footer-line { margin: .35rem 0 0; }

@media (min-width: 720px) {
  .trust-strip__inner { grid-template-columns: repeat(4, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .event-map, .event-usecases, .support-grid, .ai-grid { grid-template-columns: repeat(3, 1fr); }
  .ai-grid { grid-template-columns: 1.2fr .8fr; align-items: start; }
  .project-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .footer-grid--rich { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .hero-stack { display: block; }
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .hero-sales-grid { grid-template-columns: 1.05fr .95fr; min-height: min(84vh, 820px); }
  .package-grid { grid-template-columns: repeat(4, 1fr); }
  .project-grid { grid-template-columns: repeat(4, 1fr); }
  .nav-desktop { display: block; }
}

@media (max-width: 1023px) {
  .nav-desktop { display: none !important; }
  .osh-tabbar { display: none !important; }
  body { padding-bottom: 0; }
  .header-actions .btn-small { display: none; }
}
