:root {
  --ink: #102033;
  --navy: #07172b;
  --navy-2: #0b2747;
  --blue: #0a66c2;
  --green: #188b62;
  --gold: #f2b33d;
  --violet: #6157f7;
  --soft: #f5f8fc;
  --soft-2: #edf5fb;
  --line: #dbe6ef;
  --muted: #64748b;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 23, 43, 0.12);
  --shadow-soft: 0 12px 34px rgba(7, 23, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
}

.notice-bar,
.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  background: #06111f;
  color: #e9f6ff;
  padding: 10px min(6vw, 84px);
  font-size: 13px;
  font-weight: 800;
}

.site-header,
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px min(6vw, 84px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand-lockup,
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark,
.brand-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #ffffff;
  font-weight: 900;
  font-size: 21px;
  box-shadow: 0 18px 40px rgba(10, 102, 194, 0.22);
}

.brand-lockup strong,
.brand strong {
  display: block;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.brand-lockup small,
.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.site-nav,
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 900;
  color: #20364f;
}

.site-nav a,
.nav a {
  text-decoration: none;
}

.nav-cta,
.nav-button {
  background: var(--navy);
  color: #ffffff !important;
  padding: 11px 16px;
  border-radius: 999px;
}

.enterprise-hero,
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(56, 189, 248, 0.22), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(24, 139, 98, 0.2), transparent 30%),
    linear-gradient(135deg, #07172b 0%, #0b2747 58%, #071b18 100%);
  color: #ffffff;
  padding: 84px min(6vw, 84px);
}

.enterprise-hero::before,
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.6;
}

.hero-grid,
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
}

.hero-grid,
.hero-content,
.hero-panel,
.hero-copy,
.mission-console {
  position: relative;
  z-index: 1;
}

.hero-copy h1,
.hero-content h1,
h1 {
  max-width: 980px;
  margin: 20px 0;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-lead,
.lead {
  max-width: 830px;
  color: #d8e7f4;
  font-size: 20px;
}

.eyebrow,
.tag {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #e6f7ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow.dark,
.tag.dark {
  background: #eef7ff;
  color: #0b477c;
  border-color: #d8e9f7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
}

.button-primary,
.primary {
  background: #ffffff;
  color: var(--navy);
}

.button-secondary,
.secondary {
  background: var(--green);
  color: #ffffff;
}

.button-ghost,
.outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.button-dark,
.dark-button {
  background: var(--navy);
  color: #ffffff;
  margin-top: 18px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-strip span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #dff7ee;
  font-size: 12px;
  font-weight: 900;
}

.mission-console,
.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  padding: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.console-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #ffffff;
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #24e6a1;
  box-shadow: 0 0 0 8px rgba(36, 230, 161, 0.12);
}

.console-card,
.panel-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  margin-top: 12px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.console-card.active {
  background: rgba(56, 189, 248, 0.18);
}

.console-card span,
.panel-row b {
  color: #8fe8ff;
  font-weight: 900;
}

.console-card strong,
.panel-row span {
  color: #ffffff;
  font-weight: 900;
}

.console-card p {
  margin: 4px 0 0;
  color: #c9d8e7;
  font-size: 14px;
}

.section {
  padding: 76px min(6vw, 84px);
}

.section:nth-of-type(even) {
  background: var(--soft);
}

.section-heading,
.section-title {
  max-width: 920px;
  margin-bottom: 34px;
}

.section-heading.center,
.section-title.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section h2,
.section-heading h2,
.section-title h2,
.split-layout h2,
.split h2 {
  margin: 14px 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-heading p,
.section-title p,
.split-layout p,
.split p {
  color: var(--muted);
  font-size: 18px;
}

.impact-grid,
.card-grid.three,
.path-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.impact-card,
.card,
.path-card,
.disabled-docs,
.disabled-box,
.proof-panel,
.steps,
.wide-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.impact-card,
.path-card {
  min-height: 230px;
}

.icon-badge,
.card-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 38px;
  border-radius: 14px;
  padding: 8px 10px;
  background: #e7f5ff;
  color: #0a66c2;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.icon-badge.medical {
  background: #e9fff6;
  color: #0b7c58;
}

.icon-badge.gold {
  background: #fff7df;
  color: #946300;
}

.icon-badge.violet {
  background: #efedff;
  color: #4f46e5;
}

.impact-card h3,
.card h3,
.path-card strong,
.wide-card h3,
.disabled-docs h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
  margin: 14px 0 8px;
}

.impact-card p,
.card p,
.path-card p,
.wide-card p,
.disabled-docs p {
  color: var(--muted);
}

.split-layout,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

.proof-panel,
.steps {
  display: grid;
  gap: 12px;
}

.proof-item,
.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #e2edf6;
  background: #f8fbff;
  color: #243b55;
  font-weight: 900;
}

.proof-item strong,
.step b {
  color: var(--blue);
  font-size: 21px;
}

.ecosystem-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.ecosystem-node {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 22px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  color: #243b55;
  font-weight: 900;
}

.primary-node {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #ffffff;
}

.primary-node strong {
  display: block;
  font-size: 34px;
}

.primary-node span {
  color: #d8e7f4;
}

.records-section,
.records,
.trust-section,
.trust,
.operating-system {
  background: var(--soft);
}

.disabled-docs,
.disabled-box {
  border-color: #f0cd82;
  background: #fff9e8;
}

.status-pill {
  display: inline-flex;
  border-radius: 999px;
  background: #fff2d2;
  color: #7a4e00;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-card {
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.path-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-card strong {
  display: block;
}

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

.wide-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
}

.site-footer,
.footer-main,
.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: #06111f;
  color: #d7e5f2;
  padding: 38px min(6vw, 84px);
}

.site-footer strong,
.footer-main strong,
.footer h3 {
  color: #ffffff;
  font-size: 20px;
}

.footer-note,
.footer-main p,
.footer p {
  max-width: 760px;
  color: #aebfd0;
}

.chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 330px;
  overflow: hidden;
  border: 1px solid #d6e0ea;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.chat-head {
  background: var(--blue);
  color: #ffffff;
  padding: 12px 14px;
  font-weight: 900;
}

.chat-body {
  padding: 14px;
  font-size: 14px;
}

.chat input {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
}

.small {
  font-size: 13px;
  color: #64748b;
}

.top {
  background: var(--navy);
  color: #ffffff;
  padding: 12px 22px;
  font-size: 14px;
}

.page-hero {
  padding: 58px min(8vw, 90px);
  background: linear-gradient(120deg, #081a2d, #0a66c2);
  color: #ffffff;
}

.page-hero h1 {
  margin: 0;
  font-size: 46px;
}

.content {
  max-width: 1180px;
  margin: auto;
  padding: 52px min(8vw, 90px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.list li {
  margin: 8px 0;
}

.notice {
  border-left: 5px solid var(--gold);
  background: #fff9e6;
  color: #352600;
  padding: 16px 18px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .hero,
  .split-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .impact-grid,
  .impact-grid.six,
  .card-grid.three,
  .path-grid,
  .faq-grid,
  .wide-grid,
  .ecosystem-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-console,
  .hero-panel {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .header {
    position: static;
    align-items: flex-start;
  }

  .site-nav,
  .nav {
    display: none;
  }

  .enterprise-hero,
  .hero {
    padding: 58px 5vw;
  }

  .section {
    padding: 56px 5vw;
  }

  .impact-grid,
  .impact-grid.six,
  .card-grid.three,
  .path-grid,
  .faq-grid,
  .wide-grid,
  .ecosystem-map {
    grid-template-columns: 1fr;
  }

  .chat {
    position: static;
    width: auto;
    margin: 20px;
  }
}

.front-update-marker {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 16px min(6vw, 84px);
  background: linear-gradient(90deg, #0a66c2, #188b62);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.front-update-marker strong {
  font-size: 18px;
}

.front-update-marker span {
  font-size: 14px;
  opacity: 0.95;
}

/* OCTY-WEB-006H real logo and mission images */
.brand-image-wrap {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid #dbe6ef;
  box-shadow: 0 14px 32px rgba(7, 23, 43, 0.14);
  flex: 0 0 auto;
}

.brand-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-photo-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.hero-photo-main {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 34px 90px rgba(0,0,0,0.28);
}

.hero-photo-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-photo-main figcaption {
  padding: 14px 18px;
  color: #e9f6ff;
  font-weight: 900;
  background: rgba(7, 23, 43, 0.72);
}

.hero-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-photo-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 22px 60px rgba(0,0,0,0.22);
}

.visual-programs {
  background: #ffffff;
}

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

.visual-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #dbe6ef;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(7, 23, 43, 0.12);
}

.visual-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.visual-card div {
  padding: 24px;
}

.visual-card span {
  display: inline-flex;
  color: #0a66c2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-card h3 {
  margin: 10px 0;
  color: #07172b;
  font-size: 24px;
  line-height: 1.15;
}

.visual-card p {
  color: #64748b;
}

.front-update-marker {
  display: none !important;
}

@media (max-width: 1080px) {
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-main img {
    height: 360px;
  }
}

@media (max-width: 760px) {
  .brand-image-wrap {
    width: 56px;
    height: 56px;
  }

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

  .hero-photo-main img,
  .hero-photo-grid img,
  .visual-card img {
    height: 260px;
  }
}

/* OCTY-WEB-006I2 homepage/Africa image strategy */
.africa-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
  gap: 38px;
  align-items: center;
  padding: 82px min(6vw, 84px);
  background:
    radial-gradient(circle at 20% 10%, rgba(24,139,98,.24), transparent 32%),
    linear-gradient(135deg, #07172b 0%, #0b2747 60%, #092f24 100%);
  color: #ffffff;
}

.africa-hero h1 {
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 20px 0;
}

.africa-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 30px 80px rgba(0,0,0,.26);
  background: rgba(255,255,255,.1);
}

.africa-photo img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}

.africa-photo figcaption {
  padding: 14px 18px;
  font-weight: 900;
  color: #e9f6ff;
  background: rgba(7,23,43,.72);
}

@media (max-width: 980px) {
  .africa-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .africa-hero {
    padding: 58px 5vw;
  }

  .africa-photo img {
    height: 280px;
  }
}

/* OCTY-WEB-006J enterprise homepage refinement */
.enterprise-routing {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

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

.route-card {
  display: block;
  min-height: 180px;
  padding: 26px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #dbe6ef;
  box-shadow: 0 18px 48px rgba(7, 23, 43, 0.1);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(7, 23, 43, 0.16);
}

.route-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #0a66c2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-card strong {
  display: block;
  color: #07172b;
  font-size: 21px;
  line-height: 1.2;
}

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

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

/* OCTY-WEB-007A SEO program pages */
.program-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  gap: 38px;
  align-items: center;
  padding: 82px min(6vw, 84px);
  background:
    radial-gradient(circle at 18% 10%, rgba(56,189,248,.2), transparent 32%),
    linear-gradient(135deg, #07172b 0%, #0b2747 60%, #071b18 100%);
  color: #ffffff;
}

.program-hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 20px 0;
}

.program-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 30px 80px rgba(0,0,0,.26);
  background: rgba(255,255,255,.1);
}

.program-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

@media (max-width: 980px) {
  .program-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .program-hero {
    padding: 58px 5vw;
  }

  .program-photo img {
    height: 280px;
  }
}

/* OCTY-WEB-007B collapsed Ask OCTY chat */
.chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  width: auto;
  max-width: calc(100vw - 36px);
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(219, 230, 239, 0.9);
  background: linear-gradient(135deg, #07172b, #0a66c2);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(7, 23, 43, 0.22);
}

.chat-toggle-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 18px;
}

.chat-panel {
  display: none;
  width: 360px;
  max-width: calc(100vw - 36px);
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #dbe6ef;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(7, 23, 43, 0.22);
}

.chat.open {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
}

.chat.open .chat-panel {
  display: block;
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, #07172b, #0a66c2);
  color: #ffffff;
  padding: 13px 15px;
  font-weight: 900;
}

.chat-head button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.chat-body {
  padding: 15px;
  font-size: 14px;
}

.chat-body input {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
}

.chat.collapsed .chat-panel {
  display: none;
}

.front-update-marker {
  display: none !important;
}

@media (max-width: 760px) {
  .chat {
    right: 16px;
    bottom: 16px;
  }

  .chat-toggle {
    min-height: 48px;
    padding-right: 14px;
  }

  .chat-panel {
    width: calc(100vw - 32px);
  }
}

/* OCTY-WEB-007C IT service model */
.notice {
  margin: 0 0 24px;
  border-left: 6px solid #0a66c2;
  background: #eef7ff;
  color: #102033;
  border-radius: 16px;
  padding: 18px 20px;
  font-weight: 700;
}

.notice strong {
  color: #07172b;
}

/* OCTY-WEB-007D U.S. presence and Africa IT service support */
.us-presence {
  background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
}

.us-presence .step b {
  min-width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #07172b;
  color: #ffffff;
  font-size: 15px;
}

/* OCTY-WEB-007E U.S. presence + Africa deployment positioning */
.positioning-band {
  background:
    radial-gradient(circle at 18% 20%, rgba(10, 102, 194, 0.09), transparent 32%),
    radial-gradient(circle at 80% 30%, rgba(24, 139, 98, 0.10), transparent 30%),
    #ffffff;
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.positioning-card {
  border: 1px solid #dbe6ef;
  border-radius: 30px;
  background: #ffffff;
  padding: 30px;
  box-shadow: 0 22px 60px rgba(7, 23, 43, 0.10);
}

.positioning-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #0a66c2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.positioning-card h3 {
  margin: 0 0 12px;
  color: #07172b;
  font-size: 26px;
  line-height: 1.15;
}

.positioning-card p {
  color: #64748b;
}

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

/* OCTY ENTERPRISE VISUAL CLEANUP START */
:root {
  --octy-navy: #07111f;
  --octy-blue: #0f3b67;
  --octy-sky: #93c5fd;
  --octy-text: #0f172a;
  --octy-muted: #475569;
  --octy-line: #e2e8f0;
  --octy-bg: #f6f9fc;
  --octy-card: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--octy-bg);
  color: var(--octy-text);
  font-family: Arial, Helvetica, sans-serif;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 17, 31, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 28px;
}

.topbar .brand,
.brand {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.topbar nav,
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.topbar nav a,
nav a {
  color: #dbeafe;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.topbar nav a:hover,
nav a:hover {
  background: rgba(147, 197, 253, 0.14);
  color: #ffffff;
  transform: translateY(-1px);
}

.topbar nav a.nav-cta,
nav a.nav-cta {
  background: #2563eb;
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.hero,
.med-hero,
.partner-hero,
.youth-hero,
.trust-hero,
.contact-hero {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.24), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0f172a 48%, #102a43 100%) !important;
}

.hero h1,
.med-hero h1,
.partner-hero h1,
.youth-hero h1,
.trust-hero h1,
.contact-hero h1 {
  letter-spacing: -0.055em;
}

.section,
.med-section,
.partner-section,
.youth-section,
.trust-section,
.contact-section {
  position: relative;
}

.section-inner,
.med-wrap,
.partner-wrap,
.youth-wrap,
.trust-wrap,
.contact-wrap {
  width: min(1180px, calc(100% - 24px));
}

.med-card,
.partner-card,
.youth-card,
.trust-card,
.contact-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.med-card:hover,
.partner-card:hover,
.youth-card:hover,
.trust-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
  border-color: #bfdbfe;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.13);
}

.med-btn,
.partner-btn,
.youth-btn,
.trust-btn,
.contact-btn,
.nav-cta,
.btn,
.button {
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.footer {
  background: #07111f !important;
  color: #dbeafe !important;
  padding: 34px 22px !important;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  text-align: center;
}

.footer strong {
  color: #ffffff;
  font-size: 19px;
}

.footer p {
  color: #bfdbfe;
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  .topbar nav,
  nav {
    width: 100%;
    gap: 6px;
  }

  .topbar nav a,
  nav a {
    font-size: 13px;
    padding: 9px 10px;
  }

  .hero,
  .med-hero,
  .partner-hero,
  .youth-hero,
  .trust-hero,
  .contact-hero {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }
}

@media (max-width: 560px) {
  .topbar nav a,
  nav a {
    width: calc(50% - 4px);
    justify-content: center;
    text-align: center;
    background: rgba(15, 23, 42, 0.8);
  }

  .topbar nav a.nav-cta,
  nav a.nav-cta {
    width: 100%;
  }
}
/* OCTY ENTERPRISE VISUAL CLEANUP END */

/* OCTY ENTERPRISE VISUAL CLEANUP START */
:root {
  --octy-navy: #07111f;
  --octy-blue: #0f3b67;
  --octy-sky: #93c5fd;
  --octy-text: #0f172a;
  --octy-muted: #475569;
  --octy-line: #e2e8f0;
  --octy-bg: #f6f9fc;
  --octy-card: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--octy-bg);
  color: var(--octy-text);
  font-family: Arial, Helvetica, sans-serif;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 17, 31, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 28px;
}

.topbar .brand,
.brand {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.topbar nav,
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.topbar nav a,
nav a {
  color: #dbeafe;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.topbar nav a:hover,
nav a:hover {
  background: rgba(147, 197, 253, 0.14);
  color: #ffffff;
  transform: translateY(-1px);
}

.topbar nav a.nav-cta,
nav a.nav-cta {
  background: #2563eb;
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.hero,
.med-hero,
.partner-hero,
.youth-hero,
.trust-hero,
.contact-hero {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.24), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #0f172a 48%, #102a43 100%) !important;
}

.hero h1,
.med-hero h1,
.partner-hero h1,
.youth-hero h1,
.trust-hero h1,
.contact-hero h1 {
  letter-spacing: -0.055em;
}

.section,
.med-section,
.partner-section,
.youth-section,
.trust-section,
.contact-section {
  position: relative;
}

.section-inner,
.med-wrap,
.partner-wrap,
.youth-wrap,
.trust-wrap,
.contact-wrap {
  width: min(1180px, calc(100% - 24px));
}

.med-card,
.partner-card,
.youth-card,
.trust-card,
.contact-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.med-card:hover,
.partner-card:hover,
.youth-card:hover,
.trust-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
  border-color: #bfdbfe;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.13);
}

.med-btn,
.partner-btn,
.youth-btn,
.trust-btn,
.contact-btn,
.nav-cta,
.btn,
.button {
  min-height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.footer {
  background: #07111f !important;
  color: #dbeafe !important;
  padding: 34px 22px !important;
  border-top: 1px solid rgba(148, 163, 184, 0.28);
  text-align: center;
}

.footer strong {
  color: #ffffff;
  font-size: 19px;
}

.footer p {
  color: #bfdbfe;
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  .topbar nav,
  nav {
    width: 100%;
    gap: 6px;
  }

  .topbar nav a,
  nav a {
    font-size: 13px;
    padding: 9px 10px;
  }

  .hero,
  .med-hero,
  .partner-hero,
  .youth-hero,
  .trust-hero,
  .contact-hero {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }
}

@media (max-width: 560px) {
  .topbar nav a,
  nav a {
    width: calc(50% - 4px);
    justify-content: center;
    text-align: center;
    background: rgba(15, 23, 42, 0.8);
  }

  .topbar nav a.nav-cta,
  nav a.nav-cta {
    width: 100%;
  }
}
/* OCTY ENTERPRISE VISUAL CLEANUP END */

/* OCTY CLICKABLE CARD LINKING START */
.octy-clickable-card {
  cursor: pointer;
  position: relative;
}

.octy-clickable-card:hover {
  border-color: #93c5fd !important;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14) !important;
}

.octy-clickable-card:focus {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 4px;
}

.octy-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #0f3b67;
  color: #ffffff !important;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
}

.octy-card-cta:hover {
  background: #1d4ed8;
  color: #ffffff !important;
}
/* OCTY CLICKABLE CARD LINKING END */

/* OCTY NAV CONTRAST FIX START */
.topbar nav a,
nav a,
.home-page .topbar nav a,
.home-page nav a {
  opacity: 1 !important;
  color: #0f3b67 !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

.topbar {
  background: rgba(255,255,255,.98) !important;
  border-bottom: 1px solid #dbeafe !important;
  box-shadow: 0 10px 28px rgba(15,23,42,.07) !important;
}

.topbar .brand,
.brand {
  color: #0f172a !important;
  opacity: 1 !important;
}

.topbar nav a:hover,
nav a:hover {
  color: #1d4ed8 !important;
  background: #eff6ff !important;
}

.topbar nav a.nav-cta,
nav a.nav-cta {
  color: #ffffff !important;
  background: #0f3b67 !important;
  opacity: 1 !important;
}

.octy-card-cta {
  opacity: 1 !important;
  color: #ffffff !important;
  background: #0f3b67 !important;
}

.octy-clickable-card {
  opacity: 1 !important;
}
/* OCTY NAV CONTRAST FIX END */

/* OCTY BALANCED NONPROFIT VISUAL STYLE START */
body {
  background:
    linear-gradient(180deg, #f1f5f9 0%, #f8fafc 38%, #eef6ff 100%) !important;
}

.autism-page,
.home-page,
.programs-page,
.partner-page,
.med-page,
.trust-page,
.contact-page {
  background:
    linear-gradient(180deg, #f1f5f9 0%, #f8fafc 45%, #eef6ff 100%) !important;
}

.autism-hero,
.home-hero {
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.18), transparent 36%),
    linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%) !important;
  border-bottom: 1px solid #bfdbfe !important;
}

.autism-hero h1,
.home-hero h1 {
  color: #082f49 !important;
}

.autism-hero p,
.home-hero p {
  color: #1e3a5f !important;
}

.autism-hero-visual {
  margin: 32px 0 8px;
  max-width: 980px;
}

.autism-hero-visual img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  border: 1px solid #bfdbfe;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .16);
}

.autism-band,
.home-band {
  background: #eaf3ff !important;
  border-top: 1px solid #bfdbfe !important;
  border-bottom: 1px solid #bfdbfe !important;
}

.autism-section,
.home-section,
.programs-section,
.partner-section,
.med-section,
.trust-section,
.contact-section {
  background: transparent;
}

.autism-card,
.home-card,
.programs-card,
.partner-card,
.med-card,
.trust-card,
.contact-card {
  background: rgba(255,255,255,.94) !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 18px 42px rgba(15,23,42,.10) !important;
}

.autism-soft,
.home-soft {
  background: linear-gradient(135deg, #dbeafe, #ffffff) !important;
  border: 1px solid #93c5fd !important;
}

.topbar {
  background: rgba(248,250,252,.98) !important;
  border-bottom: 1px solid #bfdbfe !important;
}

.topbar nav a,
nav a {
  color: #0f3b67 !important;
  opacity: 1 !important;
}

.topbar nav a.nav-cta,
nav a.nav-cta {
  background: #0f3b67 !important;
  color: #ffffff !important;
}

/* Keep pages professional, not plain-white */
.footer {
  background: #082f49 !important;
}
/* OCTY BALANCED NONPROFIT VISUAL STYLE END */

/* OCTY PROFESSIONAL SITE RESET START */

/* Core design tokens */
:root {
  --octy-ink: #0f172a;
  --octy-navy: #0f3b67;
  --octy-deep: #082f49;
  --octy-blue: #1d4ed8;
  --octy-soft-blue: #dbeafe;
  --octy-pale-blue: #eff6ff;
  --octy-bg: #f4f7fb;
  --octy-card: #ffffff;
  --octy-line: #d8e2ee;
  --octy-muted: #475569;
  --octy-warm: #fff7ed;
  --octy-orange: #f97316;
}

/* Global base */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0 !important;
  background: linear-gradient(180deg, #f4f7fb 0%, #f8fafc 48%, #eef6ff 100%) !important;
  color: var(--octy-ink) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  line-height: 1.55;
}

/* Professional header/nav */
.topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom: 1px solid var(--octy-line) !important;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 14px 28px !important;
}

.brand,
.topbar .brand {
  color: var(--octy-ink) !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  font-size: 18px !important;
  letter-spacing: -0.02em;
  opacity: 1 !important;
}

.topbar nav,
nav {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.topbar nav a,
nav a {
  color: var(--octy-navy) !important;
  opacity: 1 !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  font-size: 13px !important;
  padding: 9px 11px !important;
  border-radius: 999px !important;
  background: transparent !important;
  text-shadow: none !important;
}

.topbar nav a:hover,
nav a:hover {
  background: var(--octy-pale-blue) !important;
  color: var(--octy-blue) !important;
  transform: none !important;
}

.topbar nav a.nav-cta,
nav a.nav-cta {
  background: var(--octy-navy) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(15, 59, 103, 0.20) !important;
}

/* Hero sections: professional, not too dark */
.hero,
.home-hero,
.programs-hero,
.partner-hero,
.med-hero,
.trust-hero,
.contact-hero,
.autism-hero,
.youth-hero {
  background:
    radial-gradient(circle at 86% 8%, rgba(29, 78, 216, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eff6ff 100%) !important;
  color: var(--octy-ink) !important;
  border-bottom: 1px solid var(--octy-line) !important;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.7);
}

/* Hero typography */
.hero h1,
.home-hero h1,
.programs-hero h1,
.partner-hero h1,
.med-hero h1,
.trust-hero h1,
.contact-hero h1,
.autism-hero h1,
.youth-hero h1 {
  color: var(--octy-deep) !important;
  font-size: clamp(34px, 4.7vw, 60px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.045em !important;
}

.hero p,
.home-hero p,
.programs-hero p,
.partner-hero p,
.med-hero p,
.trust-hero p,
.contact-hero p,
.autism-hero p,
.youth-hero p {
  color: #334155 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

/* Section rhythm */
.section,
.home-section,
.programs-section,
.partner-section,
.med-section,
.trust-section,
.contact-section,
.autism-section,
.youth-section {
  padding-top: 68px !important;
  padding-bottom: 68px !important;
}

.section-inner,
.home-wrap,
.programs-wrap,
.partner-wrap,
.med-wrap,
.trust-wrap,
.contact-wrap,
.autism-wrap,
.youth-wrap {
  width: min(1120px, calc(100% - 36px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Section headings */
.section h2,
.home-section h2,
.programs-section h2,
.partner-section h2,
.med-section h2,
.trust-section h2,
.contact-section h2,
.autism-section h2,
.youth-section h2 {
  color: var(--octy-ink) !important;
  font-size: clamp(28px, 3.7vw, 44px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.025em !important;
  max-width: 980px !important;
}

.section p,
.home-section p,
.programs-section p,
.partner-section p,
.med-section p,
.trust-section p,
.contact-section p,
.autism-section p,
.youth-section p {
  color: var(--octy-muted) !important;
  line-height: 1.7 !important;
}

/* Kicker labels */
.home-kicker,
.programs-kicker,
.partner-kicker,
.med-kicker,
.trust-kicker,
.contact-kicker,
.autism-kicker,
.youth-kicker,
.octy-kicker {
  color: var(--octy-blue) !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

/* Cards: unified enterprise style */
.home-card,
.programs-card,
.partner-card,
.med-card,
.trust-card,
.contact-card,
.autism-card,
.youth-card,
.octy-card {
  background: rgba(255,255,255,0.97) !important;
  border: 1px solid var(--octy-line) !important;
  border-radius: 22px !important;
  padding: 26px !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08) !important;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease !important;
}

.home-card:hover,
.programs-card:hover,
.partner-card:hover,
.med-card:hover,
.trust-card:hover,
.contact-card:hover,
.autism-card:hover,
.youth-card:hover,
.octy-card:hover {
  border-color: #93c5fd !important;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12) !important;
  transform: translateY(-2px) !important;
}

.home-card h3,
.programs-card h3,
.partner-card h3,
.med-card h3,
.trust-card h3,
.contact-card h3,
.autism-card h3,
.youth-card h3,
.octy-card h3 {
  color: var(--octy-ink) !important;
  font-size: 21px !important;
  line-height: 1.2 !important;
  margin-top: 0 !important;
}

.home-card p,
.programs-card p,
.partner-card p,
.med-card p,
.trust-card p,
.contact-card p,
.autism-card p,
.youth-card p,
.octy-card p,
.home-card li,
.programs-card li,
.partner-card li,
.med-card li,
.trust-card li,
.contact-card li,
.autism-card li,
.youth-card li,
.octy-card li {
  color: var(--octy-muted) !important;
  font-size: 15.5px !important;
  line-height: 1.6 !important;
}

/* Grids: consistent spacing */
.home-grid,
.programs-grid,
.partner-grid,
.med-grid,
.trust-grid,
.contact-grid,
.autism-grid,
.youth-grid,
.octy-grid {
  gap: 22px !important;
}

/* Alternate bands: soft blue/white, not harsh */
.home-band,
.autism-section.alt,
.autism-band,
.programs-section[style*="background:#fff"],
.partner-section[style*="background:#fff"],
.med-section[style*="background:#fff"],
.contact-section[style*="background:#fff"] {
  background: linear-gradient(135deg, #ffffff 0%, #eef6ff 100%) !important;
  border-top: 1px solid var(--octy-line) !important;
  border-bottom: 1px solid var(--octy-line) !important;
}

/* Dark sections: keep premium but readable */
.programs-dark,
.partner-dark,
.youth-dark,
.trust-dark {
  background:
    radial-gradient(circle at top left, rgba(147, 197, 253, 0.13), transparent 34%),
    linear-gradient(135deg, #082f49 0%, #0f172a 100%) !important;
  color: #ffffff !important;
}

.programs-dark h2,
.programs-dark h3,
.partner-dark h2,
.partner-dark h3,
.youth-dark h2,
.youth-dark h3,
.trust-dark h2,
.trust-dark h3 {
  color: #ffffff !important;
}

.programs-dark p,
.programs-dark li,
.partner-dark p,
.partner-dark li,
.youth-dark p,
.youth-dark li,
.trust-dark p,
.trust-dark li {
  color: #dbeafe !important;
}

/* Alerts: less alarming */
.med-alert,
.contact-alert,
.programs-alert,
.trust-alert,
.octy-alert,
.home-urgent,
.autism-notice {
  background: #fff7ed !important;
  border: 1px solid #fed7aa !important;
  border-left: 6px solid var(--octy-orange) !important;
  color: #7c2d12 !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.10) !important;
}

.med-alert h3,
.contact-alert h3,
.programs-alert h3,
.trust-alert h3,
.octy-alert h3,
.home-urgent h3,
.autism-notice h3 {
  color: #9a3412 !important;
}

.med-alert p,
.med-alert li,
.contact-alert p,
.contact-alert li,
.programs-alert p,
.programs-alert li,
.trust-alert p,
.trust-alert li,
.octy-alert p,
.octy-alert li,
.home-urgent p,
.home-urgent li,
.autism-notice p,
.autism-notice li {
  color: #7c2d12 !important;
}

/* Blue panels: softer */
.med-blue,
.partner-blue,
.youth-blue,
.trust-blue,
.contact-blue,
.programs-blue,
.octy-highlight,
.autism-panel,
.home-soft {
  background: linear-gradient(135deg, #dbeafe 0%, #ffffff 100%) !important;
  border: 1px solid #93c5fd !important;
  color: var(--octy-ink) !important;
  border-radius: 24px !important;
  box-shadow: 0 14px 34px rgba(29, 78, 216, 0.08) !important;
}

.med-blue h3,
.partner-blue h3,
.youth-blue h3,
.trust-blue h3,
.contact-blue h3,
.programs-blue h3,
.octy-highlight h3,
.autism-panel h3,
.home-soft h3 {
  color: var(--octy-deep) !important;
}

.med-blue p,
.med-blue li,
.partner-blue p,
.partner-blue li,
.youth-blue p,
.youth-blue li,
.trust-blue p,
.trust-blue li,
.contact-blue p,
.contact-blue li,
.programs-blue p,
.programs-blue li,
.octy-highlight p,
.octy-highlight li,
.autism-panel p,
.autism-panel li,
.home-soft p,
.home-soft li {
  color: #334155 !important;
}

/* Buttons */
.home-btn,
.programs-btn,
.partner-btn,
.med-btn,
.trust-btn,
.contact-btn,
.autism-btn,
.youth-btn,
.octy-button,
.octy-card-cta {
  background: var(--octy-navy) !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  box-shadow: 0 10px 22px rgba(15, 59, 103, 0.16) !important;
}

.home-btn.secondary,
.programs-btn.secondary,
.partner-btn.secondary,
.med-btn.secondary,
.trust-btn.secondary,
.contact-btn.secondary,
.autism-btn.secondary,
.youth-btn.secondary {
  background: #ffffff !important;
  color: var(--octy-navy) !important;
  border: 1px solid #93c5fd !important;
  box-shadow: none !important;
}

.home-btn:hover,
.programs-btn:hover,
.partner-btn:hover,
.med-btn:hover,
.trust-btn:hover,
.contact-btn:hover,
.autism-btn:hover,
.youth-btn:hover,
.octy-button:hover,
.octy-card-cta:hover {
  background: var(--octy-blue) !important;
  color: #ffffff !important;
}

/* Images */
.autism-photo-main,
.autism-photo {
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.16) !important;
}

/* Footer */
.footer {
  background: var(--octy-deep) !important;
  color: #dbeafe !important;
  padding: 42px 22px !important;
  text-align: center !important;
  border-top: none !important;
}

.footer strong {
  color: #ffffff !important;
}

.footer p {
  color: #dbeafe !important;
}

/* Reduce auto button clutter from card-link script */
.octy-card-cta {
  margin-top: 16px !important;
  min-height: 38px !important;
  padding: 9px 13px !important;
  font-size: 13px !important;
}

/* Mobile */
@media (max-width: 900px) {
  .topbar {
    position: relative !important;
    align-items: flex-start !important;
    flex-direction: column !important;
    padding: 14px 18px !important;
  }

  .topbar nav,
  nav {
    width: 100% !important;
  }

  .topbar nav a,
  nav a {
    width: calc(50% - 4px) !important;
    text-align: center !important;
    justify-content: center !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
  }

  .topbar nav a.nav-cta,
  nav a.nav-cta {
    width: 100% !important;
  }

  .section,
  .home-section,
  .programs-section,
  .partner-section,
  .med-section,
  .trust-section,
  .contact-section,
  .autism-section,
  .youth-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .hero h1,
  .home-hero h1,
  .programs-hero h1,
  .partner-hero h1,
  .med-hero h1,
  .trust-hero h1,
  .contact-hero h1,
  .autism-hero h1,
  .youth-hero h1 {
    font-size: clamp(30px, 8vw, 44px) !important;
  }
}
/* OCTY PROFESSIONAL SITE RESET END */

/* OCTY-WEB-002Q Header, logo, and font-scale repair */
.octy-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 18px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.octy-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  color: #123b63;
  text-decoration: none;
}

.octy-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, #123b63, #1f7a5f);
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  box-shadow: 0 10px 24px rgba(18, 59, 99, 0.28);
}

.octy-brand-text {
  display: grid;
  line-height: 1.15;
}

.octy-brand-text strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.octy-brand-text small {
  margin-top: 3px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 700;
}

.octy-main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.octy-main-nav a {
  padding: 9px 11px;
  border-radius: 999px;
  color: #23344d;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.octy-main-nav a:hover {
  background: rgba(18, 59, 99, 0.08);
  color: #123b63;
}

/* More restrained enterprise font scale */
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero.compact h1 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.cta-panel h2 {
  font-size: clamp(1.35rem, 2.35vw, 2.25rem);
  line-height: 1.14;
}

.card h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.card h3 {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero .lead,
.lead {
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.66;
}

.card p,
.cta-panel p,
.notice {
  font-size: 0.98rem;
}

.page-shell,
main.page-shell {
  padding-top: 18px;
}

/* Front-page/homepage polish */
body:has(.octy-site-header) .hero {
  margin-top: 8px;
}

.section-grid .card {
  min-height: 100%;
}

.octy-standard-actions {
  border-color: rgba(18, 59, 99, 0.14);
}

/* Keep special internal/noindex pages calmer */
body .hero.compact {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

@media (max-width: 920px) {
  .octy-site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 22px, 760px);
    margin-top: 10px;
    padding: 12px;
  }

  .octy-brand {
    min-width: 0;
    width: 100%;
  }

  .octy-logo-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .octy-main-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .octy-main-nav a {
    padding: 8px 10px;
    font-size: 0.82rem;
    background: rgba(18, 59, 99, 0.06);
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.85rem);
  }

  .hero.compact h1 {
    font-size: clamp(1.65rem, 7vw, 2.35rem);
  }

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

/* OCTY-WEB-002R targeted front-page repair: duplicate header cleanup, font scale, homepage design */
.octy-site-header + header,
.octy-site-header + .site-header,
.octy-site-header + nav,
.octy-site-header + .site-nav {
  display: none !important;
}

.octy-site-header {
  margin-top: 10px !important;
  margin-bottom: 14px !important;
}

.octy-homepage .hero h1,
.octy-homepage .home-hero h1,
.octy-homepage h1,
.hero h1,
.home-hero h1,
.programs-hero h1,
.partner-hero h1,
.med-hero h1,
.trust-hero h1,
.contact-hero h1,
.autism-hero h1,
.youth-hero h1 {
  font-size: clamp(30px, 3.8vw, 48px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.035em !important;
}

.octy-homepage .hero .lead,
.octy-homepage .lead,
.hero .lead,
.lead {
  font-size: clamp(16px, 1.25vw, 18px) !important;
  line-height: 1.62 !important;
}

.octy-homepage h2,
.cta-panel h2,
.section h2 {
  font-size: clamp(24px, 2.4vw, 34px) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.025em !important;
}

.octy-homepage h3,
.card h3 {
  font-size: clamp(18px, 1.35vw, 22px) !important;
  line-height: 1.22 !important;
}

.octy-homepage p,
.card p,
.cta-panel p,
.notice {
  font-size: 16px !important;
  line-height: 1.62 !important;
}

.octy-home-main {
  display: grid;
  gap: 28px;
}

.octy-homepage .hero {
  display: grid;
  gap: 18px;
  min-height: auto !important;
  padding: clamp(34px, 5vw, 62px) !important;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 22rem),
    linear-gradient(135deg, #0f3357 0%, #174c72 54%, #1f7a5f 100%) !important;
}

.octy-homepage .hero p {
  max-width: 780px;
}

.octy-homepage .hero .btn,
.octy-homepage .hero a.btn {
  box-shadow: 0 12px 26px rgba(0,0,0,0.18) !important;
}

.octy-home-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: -8px;
}

.octy-home-trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1px solid rgba(18, 59, 99, 0.12);
  border-radius: 18px;
  background: #ffffff;
  color: #123b63;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.octy-homepage .section-grid {
  gap: 20px !important;
}

.octy-homepage .card {
  padding: 24px !important;
  border-radius: 20px !important;
}

.octy-homepage .card:hover {
  transform: translateY(-2px);
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12) !important;
}

.octy-homepage .cta-panel {
  padding: clamp(26px, 4vw, 42px) !important;
}

@media (max-width: 920px) {
  .octy-home-trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .octy-homepage .hero h1,
  .octy-homepage .home-hero h1,
  .octy-homepage h1,
  .hero h1,
  .home-hero h1,
  .programs-hero h1,
  .partner-hero h1,
  .med-hero h1,
  .trust-hero h1,
  .contact-hero h1,
  .autism-hero h1,
  .youth-hero h1 {
    font-size: clamp(28px, 8vw, 40px) !important;
  }
}

@media (max-width: 560px) {
  .octy-home-trust-strip {
    grid-template-columns: 1fr;
  }
}

/* OCTY-WEB-002S clean homepage/front design rebuild */
.octy-front-v2 {
  background:
    radial-gradient(circle at top left, rgba(18,59,99,0.08), transparent 34rem),
    radial-gradient(circle at top right, rgba(31,122,95,0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 44%, #eef3f8 100%) !important;
}

.octy-front-v2 .octy-site-header {
  margin-bottom: 18px !important;
}

.octy-front-main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 28px;
  padding-bottom: 58px;
}

.octy-front-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 22px;
  align-items: stretch;
  border-radius: 30px;
}

.octy-front-hero-copy {
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: 30px;
  padding: clamp(34px, 5vw, 60px);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 24rem),
    linear-gradient(135deg, #102f50 0%, #164a70 54%, #1f7a5f 100%);
  color: #ffffff;
  box-shadow: 0 20px 55px rgba(15,23,42,0.16);
}

.octy-front-hero-copy h1 {
  margin: 0 0 18px;
  max-width: 880px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.045em !important;
}

.octy-front-hero-copy .lead {
  max-width: 780px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(16px, 1.25vw, 19px) !important;
}

.octy-front-hero-copy .eyebrow {
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);
}

.octy-front-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.octy-front-impact-card {
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: 30px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 20px 55px rgba(15,23,42,0.12);
}

.octy-front-impact-card h2 {
  margin: 10px 0 14px;
  color: #123b63;
  font-size: clamp(24px, 2.5vw, 34px) !important;
  line-height: 1.08 !important;
}

.octy-front-impact-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: #475569;
  line-height: 1.5;
  font-weight: 650;
}

.octy-front-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.octy-front-trust-strip span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18,59,99,0.12);
  border-radius: 20px;
  background: #ffffff;
  color: #123b63;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 28px rgba(15,23,42,0.08);
}

.octy-front-section,
.octy-front-feature {
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: 28px;
  background: rgba(255,255,255,0.94);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 14px 38px rgba(15,23,42,0.08);
}

.octy-front-section-head {
  max-width: 840px;
  margin-bottom: 22px;
}

.octy-front-section-head h2,
.octy-front-feature h2 {
  margin: 0 0 12px;
  color: #123b63;
  font-size: clamp(26px, 3vw, 40px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
}

.octy-front-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.octy-front-card-grid .card {
  box-shadow: none;
  border-color: rgba(15,23,42,0.1);
}

.octy-front-card-grid .card h3 {
  color: #172033;
  font-size: 20px !important;
  line-height: 1.18 !important;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: #123b63;
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

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

.octy-front-mini-grid {
  display: grid;
  gap: 14px;
}

.octy-front-mini-grid article {
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: 20px;
  background: #f8fafc;
  padding: 20px;
}

.octy-front-mini-grid h3 {
  margin-top: 0;
  color: #123b63;
}

.octy-front-feature-dark {
  background: linear-gradient(135deg, #102f50, #1f5d72);
  color: #ffffff;
}

.octy-front-feature-dark h2,
.octy-front-feature-dark p {
  color: #ffffff;
}

.octy-front-feature-dark .eyebrow {
  color: #ffffff;
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
}

.octy-front-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 32px;
  padding: 24px;
  border-radius: 24px;
  color: #475569;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,23,42,0.08);
}

.octy-front-footer strong {
  color: #123b63;
}

@media (max-width: 980px) {
  .octy-front-hero,
  .octy-front-feature {
    grid-template-columns: 1fr;
  }

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

  .octy-front-trust-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .octy-front-main,
  .octy-front-footer {
    width: min(100% - 22px, 760px);
  }

  .octy-front-card-grid,
  .octy-front-trust-strip {
    grid-template-columns: 1fr;
  }

  .octy-front-hero-copy h1 {
    font-size: clamp(30px, 8vw, 42px) !important;
  }
}

/* OCTY-WEB-002U final homepage visual refinement */
.octy-front-v2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.octy-front-v2 .octy-site-header {
  width: min(1180px, calc(100% - 36px)) !important;
  padding: 10px 12px !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07) !important;
}

.octy-front-v2 .octy-logo-mark {
  width: 42px !important;
  height: 42px !important;
  flex-basis: 42px !important;
  border-radius: 14px !important;
  font-size: 1.22rem !important;
}

.octy-front-v2 .octy-brand-text strong {
  font-size: 0.94rem !important;
}

.octy-front-v2 .octy-brand-text small {
  font-size: 0.68rem !important;
  letter-spacing: 0.01em;
}

.octy-front-v2 .octy-main-nav a {
  font-size: 0.82rem !important;
  padding: 8px 10px !important;
}

.octy-front-main {
  gap: 24px !important;
}

.octy-front-hero {
  gap: 18px !important;
}

.octy-front-hero-copy {
  padding: clamp(34px, 4.4vw, 54px) !important;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.octy-front-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(34px, 3.55vw, 52px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.04em !important;
}

.octy-front-hero-copy .lead {
  max-width: 760px;
  font-size: clamp(16px, 1.15vw, 18px) !important;
  line-height: 1.64 !important;
}

.octy-front-actions {
  gap: 8px !important;
}

.octy-front-actions .btn,
.octy-front-actions a.btn {
  min-height: 42px !important;
  padding: 11px 16px !important;
}

.octy-front-impact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 2.6vw, 32px) !important;
}

.octy-front-impact-card h2 {
  font-size: clamp(23px, 2.25vw, 31px) !important;
}

.octy-front-impact-card li {
  margin-bottom: 5px;
}

.octy-front-trust-strip {
  margin-top: -2px;
}

.octy-front-trust-strip span {
  min-height: 58px !important;
  font-size: 0.93rem;
  letter-spacing: -0.01em;
}

.octy-front-section,
.octy-front-feature {
  padding: clamp(26px, 3.5vw, 42px) !important;
  border-radius: 24px !important;
}

.octy-front-section-head h2,
.octy-front-feature h2 {
  max-width: 820px;
  font-size: clamp(25px, 2.65vw, 38px) !important;
}

.octy-front-section-head p,
.octy-front-feature p {
  max-width: 850px;
}

.octy-front-card-grid {
  gap: 16px !important;
}

.octy-front-card-grid .card {
  padding: 22px !important;
  border-radius: 18px !important;
}

.octy-front-card-grid .card h3 {
  font-size: 19px !important;
}

.octy-front-card-grid .card p {
  font-size: 15.5px !important;
}

.octy-front-feature {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr) !important;
}

.octy-front-feature-dark {
  align-items: center;
}

.octy-front-footer {
  font-size: 0.95rem;
}

.octy-front-footer p {
  max-width: 860px;
}

@media (max-width: 980px) {
  .octy-front-hero-copy {
    min-height: auto;
  }

  .octy-front-feature {
    grid-template-columns: 1fr !important;
  }

  .octy-front-v2 .octy-site-header {
    position: relative !important;
  }
}

@media (max-width: 620px) {
  .octy-front-v2 .octy-site-header {
    width: min(100% - 22px, 760px) !important;
    border-radius: 16px !important;
  }

  .octy-front-v2 .octy-main-nav {
    gap: 6px !important;
  }

  .octy-front-v2 .octy-main-nav a {
    font-size: 0.78rem !important;
    padding: 8px 9px !important;
  }

  .octy-front-hero-copy {
    padding: 28px 20px !important;
  }

  .octy-front-hero-copy h1 {
    font-size: clamp(29px, 7.6vw, 39px) !important;
  }

  .octy-front-section,
  .octy-front-feature,
  .octy-front-impact-card {
    padding: 22px !important;
  }
}

/* OCTY-WEB-003D safe public form drafts - disabled until secure intake routes are ready */
.octy-safe-form-draft,
.octy-safe-form-notice {
  border: 1px solid rgba(18, 59, 99, 0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(241,245,249,0.98)),
    radial-gradient(circle at top right, rgba(31,122,95,0.08), transparent 18rem);
}

.octy-draft-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

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

.octy-draft-form label {
  display: grid;
  gap: 7px;
  color: #172033;
  font-weight: 800;
}

.octy-draft-form input,
.octy-draft-form select,
.octy-draft-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 14px;
  padding: 12px 13px;
  background: #f8fafc;
  color: #64748b;
  font: inherit;
}

.octy-draft-form input:disabled,
.octy-draft-form select:disabled,
.octy-draft-form textarea:disabled {
  cursor: not-allowed;
  opacity: 0.86;
}

.octy-draft-form .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  color: #475569;
}

.octy-draft-form .checkbox-row input {
  width: auto;
  margin-top: 4px;
}

.form-note {
  display: inline-block;
  max-width: 720px;
  margin-left: 8px;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .octy-draft-form .form-grid {
    grid-template-columns: 1fr;
  }

  .form-note {
    display: block;
    margin: 10px 0 0;
  }
}

/* OCTY-WEB-003D safe public form drafts - disabled until secure intake routes are ready */
.octy-safe-form-draft,
.octy-safe-form-notice {
  border: 1px solid rgba(18, 59, 99, 0.16);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(241,245,249,0.98)),
    radial-gradient(circle at top right, rgba(31,122,95,0.08), transparent 18rem);
}

.octy-draft-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

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

.octy-draft-form label {
  display: grid;
  gap: 7px;
  color: #172033;
  font-weight: 800;
}

.octy-draft-form input,
.octy-draft-form select,
.octy-draft-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 14px;
  padding: 12px 13px;
  background: #f8fafc;
  color: #64748b;
  font: inherit;
}

.octy-draft-form input:disabled,
.octy-draft-form select:disabled,
.octy-draft-form textarea:disabled {
  cursor: not-allowed;
  opacity: 0.86;
}

.octy-draft-form .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  color: #475569;
}

.octy-draft-form .checkbox-row input {
  width: auto;
  margin-top: 4px;
}

.form-note {
  display: inline-block;
  max-width: 720px;
  margin-left: 8px;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .octy-draft-form .form-grid {
    grid-template-columns: 1fr;
  }

  .form-note {
    display: block;
    margin: 10px 0 0;
  }
}

/* OCTY-WEB-004B header, logo, and font-scale polish */
:root {
  --octy-ink: #102033;
  --octy-muted: #536174;
  --octy-line: rgba(15, 23, 42, 0.12);
  --octy-blue: #123b63;
  --octy-green: #1f7a5f;
  --octy-soft: #f6f8fb;
}

body {
  color: var(--octy-ink);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

header,
.site-header,
.octy-header {
  backdrop-filter: blur(14px);
}

header .brand,
.site-header .brand,
.octy-brand-lockup,
.logo,
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--octy-ink);
  min-width: 0;
}

.octy-logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, #123b63 0%, #1f7a5f 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
  box-shadow: 0 12px 28px rgba(18, 59, 99, 0.22);
}

.octy-brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.octy-brand-copy strong {
  font-size: 0.98rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.octy-brand-copy small {
  color: var(--octy-muted);
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 700;
}

nav,
.nav,
.site-nav {
  font-size: 0.94rem;
}

nav a,
.nav a,
.site-nav a {
  font-weight: 750;
}

.hero,
.octy-hero,
.front-hero,
section.hero {
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(48px, 7vw, 86px);
}

.hero h1,
.octy-hero h1,
.front-hero h1,
main h1 {
  font-size: clamp(2.15rem, 4.2vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 980px;
}

.hero .lead,
.octy-hero .lead,
.front-hero .lead,
.lead {
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.64;
  max-width: 860px;
}

h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.05rem, 1.3vw, 1.32rem);
  line-height: 1.22;
}

.section,
section {
  scroll-margin-top: 96px;
}

.card,
.feature-card,
.service-card,
article.card {
  border: 1px solid var(--octy-line);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.075);
}

.card p,
.feature-card p,
.service-card p,
article.card p {
  color: var(--octy-muted);
  line-height: 1.62;
}

.btn,
button,
input[type="submit"] {
  border-radius: 999px;
  font-weight: 850;
}

.octy-safe-form-draft,
.octy-safe-form-notice {
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

@media (max-width: 860px) {
  header .brand,
  .site-header .brand,
  .octy-brand-lockup,
  .logo,
  .brand {
    gap: 10px;
  }

  .octy-logo-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 12px;
  }

  .octy-brand-copy strong {
    font-size: 0.9rem;
  }

  .octy-brand-copy small {
    font-size: 0.66rem;
  }

  .hero,
  .octy-hero,
  .front-hero,
  section.hero {
    padding-top: 42px;
    padding-bottom: 46px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15.5px;
  }

  .octy-brand-copy small {
    display: none;
  }

  .hero h1,
  .octy-hero h1,
  .front-hero h1,
  main h1 {
    font-size: clamp(2rem, 12vw, 2.85rem);
    letter-spacing: -0.045em;
  }
}

/* OCTY-WEB-004C homepage section and card layout polish */
main .section,
main section.section {
  padding-top: clamp(54px, 7vw, 92px);
  padding-bottom: clamp(54px, 7vw, 92px);
}

.wrap {
  width: min(1120px, calc(100% - 40px));
}

.grid {
  gap: clamp(18px, 2.2vw, 28px);
}

.grid.two {
  gap: clamp(18px, 2vw, 26px);
}

.card,
article.card,
.feature-panel,
.notice,
.trust-strip {
  position: relative;
}

.card,
article.card {
  min-height: 100%;
  padding: clamp(22px, 2.4vw, 30px);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
}

.card .label,
article.card .label,
.label,
.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 900;
}

.card h3,
article.card h3 {
  margin-top: 8px;
  margin-bottom: 10px;
}

.card .text-link,
article.card .text-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 850;
  color: var(--octy-blue);
  text-decoration: none;
}

.card .text-link:hover,
article.card .text-link:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.split {
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
}

.feature-panel {
  border-radius: 28px;
  border: 1px solid rgba(18, 59, 99, 0.14);
  background:
    radial-gradient(circle at top right, rgba(31, 122, 95, 0.14), transparent 18rem),
    linear-gradient(135deg, #ffffff, #f6f8fb);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
  padding: clamp(26px, 3vw, 38px);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.service-list span,
.trust-strip div {
  border: 1px solid rgba(18, 59, 99, 0.12);
  background: rgba(255,255,255,0.86);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 850;
  color: var(--octy-ink);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.notice {
  border-radius: 24px;
  border: 1px solid rgba(31, 122, 95, 0.18);
  background:
    linear-gradient(135deg, rgba(31,122,95,0.10), rgba(18,59,99,0.06)),
    #ffffff;
  padding: clamp(20px, 2.4vw, 28px);
  color: #244054;
  font-weight: 720;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(22px, 3vw, 34px);
}

.section.dark {
  background:
    radial-gradient(circle at top left, rgba(31,122,95,0.24), transparent 24rem),
    linear-gradient(135deg, #0f2437, #071525);
  color: #f8fafc;
}

.section.dark .lead,
.section.dark p,
.section.dark .card p {
  color: rgba(248,250,252,0.78);
}

.section.dark .card,
.section.dark article.card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 22px 54px rgba(0,0,0,0.22);
}

.section.dark .card h3,
.section.dark article.card h3 {
  color: #ffffff;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 36px);
}

.trust-strip div {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
  color: #ffffff;
}

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .card,
  article.card,
  .feature-panel,
  .notice {
    border-radius: 20px;
  }

  .actions {
    align-items: stretch;
  }

  .actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* OCTY-WEB-004D homepage hierarchy and CTA polish */
.hero .actions,
.octy-hero .actions,
.front-hero .actions {
  margin-top: clamp(24px, 3vw, 36px);
}

.hero .eyebrow,
.octy-hero .eyebrow,
.front-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(18, 59, 99, 0.12);
  background: rgba(255,255,255,0.74);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
}

.hero .eyebrow::before,
.octy-hero .eyebrow::before,
.front-hero .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--octy-green);
  box-shadow: 0 0 0 5px rgba(31,122,95,0.12);
}

.hero .btn,
.octy-hero .btn,
.front-hero .btn {
  min-height: 46px;
  padding-inline: 20px;
}

main .section > .wrap > .eyebrow + h2 {
  margin-top: 10px;
}

main .section > .wrap > h2 + .lead,
main .section > .wrap > .lead {
  margin-top: 14px;
}

main .section .grid {
  margin-top: clamp(24px, 3vw, 36px);
}

main .section .notice {
  margin-top: clamp(22px, 3vw, 34px);
}

.card:hover,
article.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(15,23,42,0.12);
}

.card,
article.card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
article.card:hover {
  border-color: rgba(31,122,95,0.26);
}

.home-priority-strip,
.octy-priority-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(24px, 3vw, 34px);
}

.home-priority-strip span,
.octy-priority-strip span {
  border: 1px solid rgba(18,59,99,0.12);
  background: rgba(255,255,255,0.88);
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 850;
  color: var(--octy-ink);
  box-shadow: 0 12px 30px rgba(15,23,42,0.07);
}

@media (max-width: 760px) {
  .home-priority-strip,
  .octy-priority-strip {
    grid-template-columns: 1fr;
  }
}

/* OCTY-WEB-004E brand/header consistency refinement */
.octy-brand,
.octy-brand-lockup {
  max-width: min(460px, 100%);
}

.octy-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--octy-ink);
  text-decoration: none;
}

.octy-brand:hover,
.octy-brand-lockup:hover {
  text-decoration: none;
}

.octy-brand-copy strong {
  white-space: normal;
}

header nav,
.site-header nav,
.octy-header nav {
  row-gap: 8px;
}

header nav a,
.site-header nav a,
.octy-header nav a {
  white-space: nowrap;
}

@media (max-width: 920px) {
  header,
  .site-header,
  .octy-header {
    align-items: flex-start;
  }

  header nav,
  .site-header nav,
  .octy-header nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

@media (max-width: 560px) {
  .octy-brand,
  .octy-brand-lockup {
    max-width: 100%;
  }

  .octy-brand-copy strong {
    font-size: 0.86rem;
  }
}

/* OCTY-WEB-004E3 duplicate contact brand cleanup marker */
.octy-brand + .brand {
  display: none;
}

/* OCTY-WEB-004E5 flexible duplicate brand removal verification */

/* OCTY-WEB-004F service page visual consistency polish */
body:not(.home) main > .hero,
body:not(.home) main > section.hero,
body:not(.home) .page-hero,
.service-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at 92% 10%, rgba(31,122,95,0.16), transparent 22rem),
    radial-gradient(circle at 5% 0%, rgba(18,59,99,0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

body:not(.home) main > .hero::after,
body:not(.home) main > section.hero::after,
body:not(.home) .page-hero::after,
.service-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31,122,95,0.24), transparent);
}

body:not(.home) main > .hero .wrap,
body:not(.home) main > section.hero .wrap,
body:not(.home) .page-hero .wrap,
.service-hero .wrap {
  position: relative;
  z-index: 1;
}

body:not(.home) main h1 {
  max-width: 1040px;
}

body:not(.home) .hero .lead,
body:not(.home) .page-hero .lead,
.service-hero .lead {
  color: var(--octy-muted);
}

body:not(.home) .section.alt,
.section.alt {
  background:
    radial-gradient(circle at top right, rgba(18,59,99,0.06), transparent 22rem),
    #f8fafc;
}

body:not(.home) .grid,
body:not(.home) .grid.two,
body:not(.home) .grid.three {
  align-items: stretch;
}

body:not(.home) .card,
body:not(.home) article.card {
  display: flex;
  flex-direction: column;
}

body:not(.home) .card .btn,
body:not(.home) article.card .btn,
body:not(.home) .card .text-link,
body:not(.home) article.card .text-link {
  margin-top: auto;
}

body:not(.home) .actions {
  margin-top: clamp(22px, 3vw, 34px);
}

body:not(.home) .notice,
body:not(.home) .safe-note,
body:not(.home) .privacy-note {
  border-radius: 24px;
  border: 1px solid rgba(18, 59, 99, 0.12);
  background:
    linear-gradient(135deg, rgba(31,122,95,0.09), rgba(18,59,99,0.05)),
    #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.075);
}

body:not(.home) footer,
.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

body:not(.home) .label {
  color: var(--octy-blue);
}

body:not(.home) .hero .actions .btn,
body:not(.home) .page-hero .actions .btn,
body:not(.home) .service-hero .actions .btn {
  min-height: 46px;
}

@media (min-width: 920px) {
  body:not(.home) .grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  body:not(.home) .grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body:not(.home) main > .hero,
  body:not(.home) main > section.hero,
  body:not(.home) .page-hero,
  .service-hero {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  body:not(.home) .actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* OCTY-WEB-004P actual SVG logo asset */
.octy-logo-img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: block;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(18, 59, 99, 0.22);
}

@media (max-width: 860px) {
  .octy-logo-img {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }
}

/* OCTY-WEB-005A live visual rescue pass */
:root {
  --octy-navy: #0f2742;
  --octy-blue: #123b63;
  --octy-teal: #1f7a5f;
  --octy-gold: #f4b84a;
  --octy-cloud: #f6f8fb;
  --octy-ink: #102033;
  --octy-muted: #5b6678;
  --octy-ring: rgba(31, 122, 95, 0.18);
}

body {
  background:
    radial-gradient(circle at 12% -5%, rgba(31,122,95,0.10), transparent 28rem),
    radial-gradient(circle at 90% 0%, rgba(18,59,99,0.10), transparent 28rem),
    #f8fafc;
}

header,
.site-header,
.octy-header {
  background: rgba(255,255,255,0.92) !important;
  border-bottom: 1px solid rgba(15,23,42,0.08) !important;
  box-shadow: 0 12px 32px rgba(15,23,42,0.06);
}

.octy-logo-mark {
  display: none !important;
}

.octy-logo-img {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: block;
  border-radius: 15px;
  box-shadow: 0 14px 30px rgba(18,59,99,0.24);
}

.octy-brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.octy-brand-copy small {
  color: var(--octy-muted);
}

nav a,
.site-nav a,
.octy-header nav a {
  border-radius: 999px;
  padding: 9px 12px;
}

nav a:hover,
.site-nav a:hover,
.octy-header nav a:hover {
  background: rgba(18,59,99,0.08);
  text-decoration: none;
}

.hero,
.octy-hero,
.front-hero,
main > section:first-of-type {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(244,184,74,0.18), transparent 18rem),
    radial-gradient(circle at 8% 0%, rgba(31,122,95,0.18), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #eef5f8 100%);
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.hero h1,
.octy-hero h1,
.front-hero h1,
main h1 {
  max-width: 980px;
  font-size: clamp(2.35rem, 5.2vw, 5.15rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.065em !important;
  color: var(--octy-navy);
}

.hero .lead,
.octy-hero .lead,
.front-hero .lead,
.lead {
  max-width: 800px;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem) !important;
  color: #415065;
}

.btn,
a.btn {
  box-shadow: 0 12px 28px rgba(15,23,42,0.10);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
a.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(15,23,42,0.14);
}

.btn.primary,
a.btn.primary {
  background: var(--octy-blue) !important;
  color: #fff !important;
}

.btn.green,
a.btn.green {
  background: var(--octy-teal) !important;
  color: #fff !important;
}

.card,
article.card,
.feature-panel,
.notice {
  background: rgba(255,255,255,0.96) !important;
  border: 1px solid rgba(15,23,42,0.10) !important;
  border-radius: 24px !important;
  box-shadow: 0 18px 44px rgba(15,23,42,0.08) !important;
}

.card:hover,
article.card:hover {
  transform: translateY(-3px);
  border-color: rgba(31,122,95,0.28) !important;
  box-shadow: 0 26px 58px rgba(15,23,42,0.12) !important;
}

.octy-priority-strip span,
.home-priority-strip span,
.service-list span {
  background: #ffffff !important;
  border: 1px solid rgba(18,59,99,0.12) !important;
  box-shadow: 0 12px 28px rgba(15,23,42,0.07);
}

main section {
  position: relative;
}

main section:nth-of-type(even) {
  background:
    radial-gradient(circle at 100% 15%, rgba(31,122,95,0.07), transparent 20rem),
    #ffffff;
}

footer,
.site-footer {
  background: var(--octy-navy) !important;
  color: rgba(255,255,255,0.82) !important;
}

footer a,
.site-footer a {
  color: #ffffff !important;
}

@media (max-width: 780px) {
  .octy-logo-img {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .hero h1,
  .octy-hero h1,
  .front-hero h1,
  main h1 {
    font-size: clamp(2.05rem, 12vw, 3.15rem) !important;
  }

  nav,
  .site-nav,
  .octy-header nav {
    gap: 6px;
  }

  nav a,
  .site-nav a,
  .octy-header nav a {
    padding: 8px 10px;
    font-size: 0.88rem;
  }
}

/* OCTY-WEB-005B clean homepage/contact rebuild */
.octy-clean-page {
  margin: 0;
  background: #f5f7fb;
  color: #102033;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.octy-clean-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 12px 28px rgba(15,23,42,0.06);
  backdrop-filter: blur(14px);
}

.octy-clean-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #102033;
  text-decoration: none;
  min-width: 260px;
}

.octy-clean-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(18,59,99,0.22);
}

.octy-clean-brand strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.octy-clean-brand small {
  display: block;
  margin-top: 3px;
  color: #607086;
  font-size: 0.76rem;
  font-weight: 750;
}

.octy-clean-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.octy-clean-nav a {
  color: #26364a;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 9px 12px;
  border-radius: 999px;
}

.octy-clean-nav a:hover {
  background: rgba(18,59,99,0.08);
}

.octy-clean-wrap {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
}

.octy-clean-hero {
  padding: clamp(72px, 9vw, 128px) 0;
  background:
    radial-gradient(circle at 85% 16%, rgba(244,184,74,0.22), transparent 20rem),
    radial-gradient(circle at 10% 0%, rgba(31,122,95,0.20), transparent 26rem),
    linear-gradient(135deg, #ffffff 0%, #eef6f8 100%);
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.octy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.octy-kicker {
  margin: 0 0 14px;
  color: #1f7a5f;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.octy-clean-hero h1,
.octy-clean-section h2 {
  margin: 0;
  color: #0f2742;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.octy-clean-hero h1 {
  max-width: 880px;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
}

.octy-clean-section h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.octy-hero-lead,
.octy-clean-section p {
  color: #46566b;
  font-size: 1.05rem;
  line-height: 1.72;
}

.octy-hero-lead {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 1.45vw, 1.26rem);
}

.octy-clean-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.octy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(15,23,42,0.12);
}

.octy-btn-primary {
  background: #123b63;
  color: #ffffff;
}

.octy-btn-light {
  background: #ffffff;
  color: #123b63;
  border: 1px solid rgba(18,59,99,0.12);
}

.octy-hero-card,
.octy-clean-cards article {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15,23,42,0.10);
}

.octy-hero-card {
  padding: clamp(24px, 3vw, 36px);
}

.octy-hero-card span,
.octy-clean-cards span {
  color: #1f7a5f;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.octy-hero-card h2 {
  margin: 12px 0 16px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.octy-hero-card ul {
  margin: 0;
  padding-left: 20px;
  color: #34445a;
  line-height: 1.8;
  font-weight: 700;
}

.octy-clean-section {
  padding: clamp(66px, 8vw, 112px) 0;
}

.octy-clean-band {
  background:
    radial-gradient(circle at 95% 10%, rgba(31,122,95,0.11), transparent 22rem),
    #ffffff;
}

.octy-clean-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.octy-clean-cards article {
  padding: 24px;
}

.octy-clean-cards h3 {
  margin: 10px 0 8px;
  color: #102033;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.octy-clean-cards a {
  display: inline-flex;
  margin-top: 12px;
  color: #123b63;
  font-weight: 900;
  text-decoration: none;
}

.octy-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.octy-clean-footer {
  padding: 42px 0;
  background: #0f2742;
  color: rgba(255,255,255,0.82);
}

.octy-clean-footer strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.octy-clean-footer p {
  max-width: 820px;
}

.octy-small {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
}

@media (max-width: 900px) {
  .octy-clean-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 20px;
  }

  .octy-clean-nav {
    justify-content: flex-start;
  }

  .octy-hero-grid,
  .octy-two-col,
  .octy-clean-cards {
    grid-template-columns: 1fr;
  }

  .octy-clean-hero {
    padding: 58px 0;
  }

  .octy-clean-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }
}

/* OCTY-WEB-005C real uploaded logo and project routing */
.octy-clean-logo,
.octy-logo-img {
  object-fit: contain;
  background: #ffffff;
}

a[data-routed-to="projects@operationcatchthemyoung.org"]::after {
  content: "";
}

/* OCTY-WEB-005C real uploaded logo and project routing */
.octy-clean-logo,
.octy-logo-img {
  object-fit: contain;
  background: #ffffff;
}

a[data-routed-to="projects@operationcatchthemyoung.org"]::after {
  content: "";
}

/* OCTY-WEB-005F final legacy top-strip suppression */
body > a[href="index.html"]:first-child,
body > a[href="./"]:first-child,
body > a[href="/"]:first-child {
  display: none !important;
}

body > a[href="index.html"]:first-child + small,
body > a[href="index.html"]:first-child + span,
body > a[href="index.html"]:first-child + nav,
body > a[href="index.html"]:first-child ~ nav:first-of-type {
  display: none !important;
}

body > nav:first-child,
body > nav:first-of-type:not(.octy-clean-nav) {
  display: none !important;
}

body > .legacy-header,
body > .legacy-topbar,
body > .topbar,
body > .brand,
body > .links {
  display: none !important;
}

.octy-clean-header + .topbar,
.octy-clean-header + header.topbar,
.octy-clean-header ~ .topbar,
.octy-clean-header ~ header.topbar {
  display: none !important;
}

/* OCTY-WEB-005H contact email block sizing fix */
.octy-contact-info-section {
  padding-top: clamp(54px, 7vw, 88px) !important;
  padding-bottom: clamp(54px, 7vw, 88px) !important;
}

.octy-contact-info-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr) !important;
  gap: clamp(34px, 6vw, 84px) !important;
  align-items: center !important;
}

.octy-contact-primary {
  min-width: 0 !important;
}

.octy-contact-email {
  max-width: 100% !important;
  margin: 0 0 18px !important;
  font-size: clamp(1.9rem, 3.2vw, 3.45rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.055em !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  color: #0f2742 !important;
}

.octy-contact-safety-card {
  position: relative !important;
  z-index: 1 !important;
  margin: 0 !important;
  padding: clamp(24px, 3vw, 34px) !important;
}

.octy-contact-safety-card p {
  font-size: clamp(0.98rem, 1.05vw, 1.08rem) !important;
  line-height: 1.72 !important;
}

@media (max-width: 980px) {
  .octy-contact-info-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .octy-contact-email {
    font-size: clamp(1.75rem, 7vw, 2.7rem) !important;
  }
}

/* OCTY-WEB-005L current projects page */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.project-card {
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 26px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 20px 48px rgba(15,23,42,0.08);
}

.project-card .status {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(31,122,95,0.10);
  color: #1f7a5f;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0 0 14px;
  color: #102033;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.project-card p {
  color: #47566b;
  line-height: 1.72;
}

.project-cta-band {
  background:
    radial-gradient(circle at 85% 10%, rgba(244,184,74,0.16), transparent 20rem),
    #ffffff;
}

@media (max-width: 860px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
}

/* OCTY-WEB-005M completed projects and serious projects status system */
.project-editor-note {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(18, 59, 99, 0.16);
  border-left: 5px solid #1f7a5f;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: #34445a;
  line-height: 1.65;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.project-editor-note code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(15, 39, 66, 0.08);
  color: #0f2742;
  font-weight: 800;
}

.completed-projects-section {
  background:
    radial-gradient(circle at 90% 8%, rgba(31,122,95,0.10), transparent 20rem),
    #ffffff;
}

.completed-project-card {
  border-color: rgba(31, 122, 95, 0.18) !important;
}

.project-card .status.completed {
  background: rgba(18, 59, 99, 0.10);
  color: #123b63;
}

/* OCTY-WEB-005N navigation and homepage unification */
.octy-clean-nav {
  max-width: 760px;
}

.octy-clean-nav a {
  white-space: nowrap;
}

.octy-home-focus-section {
  background: #ffffff;
}

.octy-home-focus-cards article {
  min-height: 250px;
}

@media (max-width: 1180px) {
  .octy-clean-header {
    gap: 18px !important;
  }

  .octy-clean-nav {
    max-width: 680px;
  }

  .octy-clean-nav a {
    font-size: 0.86rem !important;
    padding-left: 9px !important;
    padding-right: 9px !important;
  }
}

@media (max-width: 960px) {
  .octy-clean-nav {
    max-width: 100%;
  }
}

/* OCTY-WEB-005N navigation and homepage unification */
.octy-clean-nav {
  max-width: 760px;
}

.octy-clean-nav a {
  white-space: nowrap;
}

.octy-home-focus-section {
  background: #ffffff;
}

.octy-home-focus-cards article {
  min-height: 250px;
}

@media (max-width: 1180px) {
  .octy-clean-header {
    gap: 18px !important;
  }

  .octy-clean-nav {
    max-width: 680px;
  }

  .octy-clean-nav a {
    font-size: 0.86rem !important;
    padding-left: 9px !important;
    padding-right: 9px !important;
  }
}

@media (max-width: 960px) {
  .octy-clean-nav {
    max-width: 100%;
  }
}

/* OCTY-WEB-005N2 desktop navigation no-wrap fix */
@media (min-width: 1101px) {
  .octy-clean-header {
    display: grid !important;
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: clamp(18px, 3vw, 48px) !important;
    padding-left: max(24px, calc((100vw - 1240px) / 2)) !important;
    padding-right: max(24px, calc((100vw - 1240px) / 2)) !important;
  }

  .octy-clean-brand {
    min-width: 0 !important;
    max-width: 420px !important;
  }

  .octy-clean-brand span {
    min-width: 0 !important;
  }

  .octy-clean-brand strong {
    white-space: nowrap !important;
    font-size: 0.98rem !important;
  }

  .octy-clean-brand small {
    max-width: 260px !important;
    line-height: 1.18 !important;
  }

  .octy-clean-nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 4px !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  .octy-clean-nav a {
    white-space: nowrap !important;
    font-size: 0.86rem !important;
    padding: 8px 8px !important;
    letter-spacing: -0.01em !important;
  }
}

@media (min-width: 1250px) {
  .octy-clean-nav a {
    font-size: 0.9rem !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* OCTY-WEB-005O privacy terms partners related initiatives */
.octy-policy-page {
  background: #f6f8fb;
}

.policy-hero {
  padding: clamp(58px, 8vw, 100px) 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(31,122,95,0.12), transparent 20rem),
    linear-gradient(135deg, #ffffff 0%, #eef6f8 100%);
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.policy-wrap {
  width: min(980px, calc(100% - 42px));
  margin: 0 auto;
}

.policy-hero h1 {
  margin: 0;
  color: #0f2742;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.policy-lead {
  max-width: 830px;
  color: #46566b;
  font-size: 1.08rem;
  line-height: 1.72;
}

.policy-section {
  padding: clamp(44px, 7vw, 86px) 0;
}

.policy-card,
.policy-warning {
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 22px;
  padding: clamp(20px, 3vw, 30px);
  margin: 18px 0;
  box-shadow: 0 16px 40px rgba(15,23,42,0.07);
}

.policy-warning {
  border-left: 6px solid #1f7a5f;
}

.policy-card h2 {
  margin-top: 0;
  color: #102033;
  letter-spacing: -0.025em;
}

.policy-card p,
.policy-warning {
  color: #47566b;
  line-height: 1.75;
}

.octy-partners-related-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(244,184,74,0.14), transparent 22rem),
    #ffffff;
}

.partner-grid {
  margin-top: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-initiatives {
  margin-top: clamp(34px, 5vw, 60px);
}

.initiative-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.initiative-list span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.10);
  color: #102033;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(15,23,42,0.05);
}

.octy-policy-links {
  margin-top: 14px;
}

.octy-policy-links a,
.octy-clean-footer a {
  color: inherit;
  font-weight: 850;
}

@media (max-width: 880px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

/* OCTY-WEB-005Q Microsoft customization productivity systems */
.microsoft-systems-hero {
  background:
    radial-gradient(circle at 90% 8%, rgba(0, 120, 212, 0.16), transparent 22rem),
    radial-gradient(circle at 10% 0%, rgba(31,122,95,0.13), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #eef6f8 100%) !important;
}

.microsoft-systems-grid .project-card {
  min-height: 255px;
}

.microsoft-systems-grid .project-card h3 {
  color: #0f2742;
}

/* OCTY-WEB-005R final page/tab/url alignment and contact no-wrap fix */
.octy-clean-nav a.active,
.octy-clean-nav a[aria-current="page"] {
  background: rgba(18, 59, 99, 0.11) !important;
  color: #102033 !important;
}

@media (min-width: 1020px) {
  .octy-clean-header {
    display: grid !important;
    grid-template-columns: minmax(235px, 350px) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 14px !important;
    padding-left: max(18px, calc((100vw - 1320px) / 2)) !important;
    padding-right: max(18px, calc((100vw - 1320px) / 2)) !important;
  }

  .octy-clean-brand {
    min-width: 0 !important;
    max-width: 350px !important;
    gap: 10px !important;
  }

  .octy-clean-logo {
    width: 46px !important;
    height: 46px !important;
    flex-basis: 46px !important;
  }

  .octy-clean-brand strong {
    font-size: 0.9rem !important;
    white-space: nowrap !important;
  }

  .octy-clean-brand small {
    font-size: 0.66rem !important;
    line-height: 1.15 !important;
  }

  .octy-clean-nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-end !important;
    gap: 2px !important;
    max-width: none !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  .octy-clean-nav a {
    display: inline-flex !important;
    white-space: nowrap !important;
    font-size: 0.78rem !important;
    line-height: 1 !important;
    padding: 8px 6px !important;
    letter-spacing: -0.018em !important;
  }
}

@media (min-width: 1180px) {
  .octy-clean-header {
    grid-template-columns: minmax(265px, 380px) minmax(0, 1fr) !important;
  }

  .octy-clean-nav a {
    font-size: 0.82rem !important;
    padding-left: 7px !important;
    padding-right: 7px !important;
  }
}

@media (min-width: 1350px) {
  .octy-clean-nav a {
    font-size: 0.88rem !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* OCTY-WEB-005R2 final desktop header spacing and one-line nav fix */
@media (min-width: 1020px) {
  .octy-clean-header {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: minmax(250px, 360px) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: clamp(28px, 4vw, 72px) !important;
    padding-left: max(18px, calc((100vw - 1500px) / 2)) !important;
    padding-right: max(18px, calc((100vw - 1500px) / 2)) !important;
  }

  .octy-clean-brand {
    justify-self: start !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 360px !important;
    gap: 10px !important;
  }

  .octy-clean-logo {
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px !important;
  }

  .octy-clean-brand strong {
    font-size: 0.9rem !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  .octy-clean-brand small {
    max-width: 210px !important;
    font-size: 0.64rem !important;
    line-height: 1.12 !important;
  }

  .octy-clean-nav {
    justify-self: end !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 2px !important;
    max-width: none !important;
    min-width: 0 !important;
    width: auto !important;
    overflow: visible !important;
  }

  .octy-clean-nav a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
    font-size: 0.78rem !important;
    line-height: 1 !important;
    padding: 8px 6px !important;
    letter-spacing: -0.02em !important;
  }

  .octy-clean-nav a[href="contact.html"] {
    margin-left: 2px !important;
  }
}

@media (min-width: 1200px) {
  .octy-clean-header {
    grid-template-columns: minmax(280px, 390px) minmax(0, 1fr) !important;
    gap: clamp(38px, 5vw, 92px) !important;
  }

  .octy-clean-brand {
    max-width: 390px !important;
  }

  .octy-clean-brand strong {
    font-size: 0.94rem !important;
  }

  .octy-clean-brand small {
    max-width: 235px !important;
    font-size: 0.66rem !important;
  }

  .octy-clean-nav a {
    font-size: 0.83rem !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

@media (min-width: 1450px) {
  .octy-clean-header {
    grid-template-columns: minmax(330px, 430px) minmax(0, 1fr) !important;
  }

  .octy-clean-nav a {
    font-size: 0.9rem !important;
    padding-left: 11px !important;
    padding-right: 11px !important;
  }
}

/* OCTY-WEB-005R3 final hard override: full-width brand-left one-line desktop nav */
@media (min-width: 1000px) {
  body .octy-clean-header {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    padding: 12px 22px !important;
    overflow: visible !important;
  }

  body .octy-clean-brand {
    flex: 0 0 330px !important;
    width: 330px !important;
    max-width: 330px !important;
    min-width: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 9px !important;
    margin: 0 !important;
  }

  body .octy-clean-logo {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    border-radius: 13px !important;
  }

  body .octy-clean-brand span {
    min-width: 0 !important;
    max-width: 270px !important;
  }

  body .octy-clean-brand strong {
    display: block !important;
    font-size: 0.82rem !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
    white-space: nowrap !important;
  }

  body .octy-clean-brand small {
    display: block !important;
    max-width: 220px !important;
    font-size: 0.58rem !important;
    line-height: 1.08 !important;
    letter-spacing: -0.01em !important;
  }

  body .octy-clean-nav {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: none !important;
    width: auto !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 1px !important;
    overflow: visible !important;
  }

  body .octy-clean-nav a,
  body .octy-clean-nav a:link,
  body .octy-clean-nav a:visited {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 7px 5px !important;
    border-radius: 999px !important;
    font-size: 0.72rem !important;
    line-height: 1 !important;
    letter-spacing: -0.025em !important;
  }

  body .octy-clean-nav a.active,
  body .octy-clean-nav a[aria-current="page"] {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

@media (min-width: 1150px) {
  body .octy-clean-header {
    padding-left: 28px !important;
    padding-right: 28px !important;
    gap: 22px !important;
  }

  body .octy-clean-brand {
    flex-basis: 360px !important;
    width: 360px !important;
    max-width: 360px !important;
  }

  body .octy-clean-brand strong {
    font-size: 0.9rem !important;
  }

  body .octy-clean-brand small {
    font-size: 0.62rem !important;
    max-width: 240px !important;
  }

  body .octy-clean-nav a,
  body .octy-clean-nav a:link,
  body .octy-clean-nav a:visited {
    font-size: 0.78rem !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
}

@media (min-width: 1320px) {
  body .octy-clean-header {
    padding-left: 42px !important;
    padding-right: 42px !important;
    gap: 34px !important;
  }

  body .octy-clean-brand {
    flex-basis: 390px !important;
    width: 390px !important;
    max-width: 390px !important;
  }

  body .octy-clean-nav a,
  body .octy-clean-nav a:link,
  body .octy-clean-nav a:visited {
    font-size: 0.84rem !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

@media (min-width: 1500px) {
  body .octy-clean-header {
    padding-left: max(48px, calc((100vw - 1500px) / 2)) !important;
    padding-right: max(48px, calc((100vw - 1500px) / 2)) !important;
  }

  body .octy-clean-nav a,
  body .octy-clean-nav a:link,
  body .octy-clean-nav a:visited {
    font-size: 0.9rem !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* OCTY-WEB-005R3 final hard override: full-width brand-left one-line desktop nav */
@media (min-width: 1000px) {
  body .octy-clean-header {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    padding: 12px 22px !important;
    overflow: visible !important;
  }

  body .octy-clean-brand {
    flex: 0 0 330px !important;
    width: 330px !important;
    max-width: 330px !important;
    min-width: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 9px !important;
    margin: 0 !important;
  }

  body .octy-clean-logo {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    border-radius: 13px !important;
  }

  body .octy-clean-brand span {
    min-width: 0 !important;
    max-width: 270px !important;
  }

  body .octy-clean-brand strong {
    display: block !important;
    font-size: 0.82rem !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
    white-space: nowrap !important;
  }

  body .octy-clean-brand small {
    display: block !important;
    max-width: 220px !important;
    font-size: 0.58rem !important;
    line-height: 1.08 !important;
    letter-spacing: -0.01em !important;
  }

  body .octy-clean-nav {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: none !important;
    width: auto !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 1px !important;
    overflow: visible !important;
  }

  body .octy-clean-nav a,
  body .octy-clean-nav a:link,
  body .octy-clean-nav a:visited {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 7px 5px !important;
    border-radius: 999px !important;
    font-size: 0.72rem !important;
    line-height: 1 !important;
    letter-spacing: -0.025em !important;
  }

  body .octy-clean-nav a.active,
  body .octy-clean-nav a[aria-current="page"] {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

@media (min-width: 1150px) {
  body .octy-clean-header {
    padding-left: 28px !important;
    padding-right: 28px !important;
    gap: 22px !important;
  }

  body .octy-clean-brand {
    flex-basis: 360px !important;
    width: 360px !important;
    max-width: 360px !important;
  }

  body .octy-clean-brand strong {
    font-size: 0.9rem !important;
  }

  body .octy-clean-brand small {
    font-size: 0.62rem !important;
    max-width: 240px !important;
  }

  body .octy-clean-nav a,
  body .octy-clean-nav a:link,
  body .octy-clean-nav a:visited {
    font-size: 0.78rem !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
}

@media (min-width: 1320px) {
  body .octy-clean-header {
    padding-left: 42px !important;
    padding-right: 42px !important;
    gap: 34px !important;
  }

  body .octy-clean-brand {
    flex-basis: 390px !important;
    width: 390px !important;
    max-width: 390px !important;
  }

  body .octy-clean-nav a,
  body .octy-clean-nav a:link,
  body .octy-clean-nav a:visited {
    font-size: 0.84rem !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

@media (min-width: 1500px) {
  body .octy-clean-header {
    padding-left: max(48px, calc((100vw - 1500px) / 2)) !important;
    padding-right: max(48px, calc((100vw - 1500px) / 2)) !important;
  }

  body .octy-clean-nav a,
  body .octy-clean-nav a:link,
  body .octy-clean-nav a:visited {
    font-size: 0.9rem !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* OCTY-WEB-005S SEO authority and trust signals */
.about-trust-hero {
  background:
    radial-gradient(circle at 85% 12%, rgba(31,122,95,0.14), transparent 22rem),
    radial-gradient(circle at 8% 0%, rgba(244,184,74,0.14), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #eef6f8 100%) !important;
}
