:root {
  --navy: #052a58;
  --deep: #071f45;
  --teal: #008f95;
  --teal-bright: #04a6a8;
  --line: #98d0d6;
  --text: #12315b;
  --muted: #49657c;
  --soft: #f4fbfd;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.65;
}

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

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

.container {
  width: min(1160px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(5, 42, 88, .07);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy) 0 52%, var(--teal) 53% 100%);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px 9px 6px 13px;
  border-radius: 50%;
  background: var(--white);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 10px;
  left: 22px;
  border-radius: 50%;
  background: var(--navy);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 22px;
  line-height: 1;
  letter-spacing: .04em;
}

.brand small {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: .12em;
}

.site-menu {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 36px);
  color: var(--deep);
  font-size: 15px;
  font-weight: 800;
}

.site-menu a {
  position: relative;
  padding: 9px 0;
}

.site-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.site-menu a:hover::after,
.site-menu a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #007980);
  font-weight: 900;
}

.header-cta {
  min-width: 118px;
  min-height: 40px;
  padding: 8px 22px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 545px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .9) 42%, rgba(255, 255, 255, .15) 100%),
    url("../../images/hero-optometrist.jpg") center right / cover no-repeat;
}

.hero-inner {
  position: relative;
  min-height: 545px;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
  padding: 56px 0 76px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--deep);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
  letter-spacing: .12em;
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(44px, 5.8vw, 70px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: .03em;
}

.hero h1 span {
  color: var(--teal);
}

.hero-slogan {
  margin: 0 0 28px;
  color: var(--deep);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 900;
  letter-spacing: .24em;
}

.hero-btn {
  min-height: 44px;
  padding: 12px 30px;
  font-size: 20px;
}

.hero-note {
  margin: 26px 0 0;
  color: #314b6f;
  font-size: 16px;
  font-weight: 800;
}

.signature {
  position: absolute;
  right: 38px;
  bottom: 38px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.55;
  letter-spacing: .14em;
  transform: rotate(-8deg);
  text-align: center;
}

.signature::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 8px;
  background: var(--teal);
}

.benefit-strip {
  padding: 36px 0 24px;
  background: linear-gradient(180deg, #f9fdff 0%, #ffffff 100%);
}

.benefit-panel {
  border: 1px solid var(--teal-bright);
  border-radius: 8px;
  padding: 0 34px 28px;
  background: rgba(255, 255, 255, .94);
}

.benefit-panel h2 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin: -17px 0 24px;
  color: var(--teal);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
}

.benefit-panel h2 span {
  height: 1px;
  background: var(--teal);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.benefit-grid article {
  min-height: 155px;
  padding: 8px 24px 0;
  text-align: center;
  border-right: 1px solid rgba(5, 42, 88, .18);
}

.benefit-grid article:last-child {
  border-right: 0;
}

.benefit-grid h3 {
  margin: 14px 0 5px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
}

.benefit-grid p {
  margin: 0;
  color: #243b61;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.75;
}

.icon {
  display: block;
  width: 54px;
  height: 54px;
  margin: 0 auto;
  color: var(--teal);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-cap {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23008f95' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 24 32 12l26 12-26 12L6 24Z'/%3E%3Cpath d='M18 30v12c8 7 20 7 28 0V30'/%3E%3Cpath d='M54 27v16'/%3E%3C/svg%3E");
}

.icon-cert {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23008f95' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 10h34v40H15z'/%3E%3Cpath d='M23 21h18M23 30h14'/%3E%3Ccircle cx='43' cy='43' r='7'/%3E%3Cpath d='m39 49-2 7 6-3 6 3-2-7'/%3E%3C/svg%3E");
}

.icon-money {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23008f95' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='32' r='23'/%3E%3Cpath d='M32 18v28M39 24c-2-3-12-4-12 3 0 8 13 4 13 12 0 7-10 7-15 2'/%3E%3C/svg%3E");
}

.icon-team {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23008f95' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='22' r='8'/%3E%3Ccircle cx='16' cy='25' r='7'/%3E%3Ccircle cx='48' cy='25' r='7'/%3E%3Cpath d='M19 46c2-9 24-9 26 0M5 46c1-7 14-9 20-4M39 42c6-5 19-3 20 4'/%3E%3C/svg%3E");
}

.icon-heart {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23008f95' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M32 53S10 39 10 23c0-8 10-14 18-5l4 5 4-5c8-9 18-3 18 5 0 16-22 30-22 30Z'/%3E%3C/svg%3E");
}

.icon-store {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23008f95' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 28h40v25H12zM9 13h46l-4 15H13L9 13Z'/%3E%3Cpath d='M18 28v-15M28 28l1-15M40 28l-1-15M49 28v-15M24 53V40h16v13'/%3E%3C/svg%3E");
}

.icon-eye {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23008f95' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 32s9-14 24-14 24 14 24 14-9 14-24 14S8 32 8 32Z'/%3E%3Ccircle cx='32' cy='32' r='7'/%3E%3Cpath d='M32 8v5M20 12l3 5M44 12l-3 5'/%3E%3C/svg%3E");
}

.icon-clipboard {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23008f95' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 12h20l2 7H20l2-7Z'/%3E%3Cpath d='M17 17H12v38h40V17h-5'/%3E%3Cpath d='M22 33h12M22 43h8M39 41l4 4 8-10'/%3E%3C/svg%3E");
}

.icon-glasses {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23008f95' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='21' cy='36' r='10'/%3E%3Ccircle cx='43' cy='36' r='10'/%3E%3Cpath d='M31 36h2M11 33 6 24M53 33l5-9M23 24c3-5 15-5 18 0'/%3E%3C/svg%3E");
}

.icon-bag {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23008f95' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 22h36v30H14z'/%3E%3Cpath d='M24 22v-6h16v6M14 31h36M27 37h10M32 32v10'/%3E%3C/svg%3E");
}

.icon-lens {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23008f95' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='18' width='44' height='28' rx='12'/%3E%3Cpath d='M18 32h10M36 32h10M32 25v14M22 24c7-6 13-6 20 0M22 40c7 6 13 6 20 0'/%3E%3C/svg%3E");
}

.icon-book {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 14h18c5 0 8 3 8 8v28c0-5-3-8-8-8H12V14ZM52 14H38c-5 0-8 3-8 8v28c0-5 3-8 8-8h14V14Z'/%3E%3C/svg%3E");
}

.icon-chart {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 50h42M17 44V30M31 44V20M45 44V26M17 30l14-10 14 6 9-12'/%3E%3C/svg%3E");
}

.become-page {
  background: #f7fcfd;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  padding-top: 16px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.sub-hero {
  min-height: 405px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(231, 250, 251, .9) 38%, rgba(229, 247, 249, .18) 63%),
    url("../../images/become-hero.jpg") center right / auto 100% no-repeat,
    #edf8fa;
}

.sub-hero-inner {
  min-height: 340px;
  display: flex;
  align-items: center;
}

.sub-hero-copy {
  max-width: 520px;
  padding: 28px 0 52px;
}

.sub-hero-copy h1 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.2;
  font-weight: 900;
}

.sub-hero-copy h2 {
  margin: 0 0 24px;
  color: var(--teal);
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: .04em;
}

.sub-hero-copy p {
  margin: 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 760;
}

.growth-section,
.work-content-section,
.equipment-section {
  background: var(--white);
}

.growth-section {
  padding: 28px 0 34px;
}

.section-heading {
  color: var(--navy);
}

.inline-heading {
  display: flex;
  align-items: baseline;
  gap: 26px;
  margin-bottom: 28px;
}

.inline-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.inline-heading p {
  margin: 0;
  color: #315173;
  font-size: 16px;
  font-weight: 800;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 58px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 70px;
  right: 70px;
  top: 36px;
  height: 1px;
  background: var(--line);
}

.timeline article {
  position: relative;
  text-align: center;
}

.step-num {
  position: absolute;
  left: 0;
  top: 18px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-size: 17px;
  font-weight: 900;
}

.timeline .icon {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 82px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background-color: #f8fcfd;
  background-size: 52px;
}

.timeline h3 {
  margin: 16px 0 8px;
  color: var(--teal);
  font-size: 19px;
  font-weight: 900;
}

.timeline p {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 760;
}

.work-content-section {
  padding: 20px 0 30px;
}

.task-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.task-grid article {
  padding: 20px 10px 10px;
  border: 1px solid #c7dce4;
  border-radius: 8px;
  background: #fbfeff;
  text-align: center;
}

.task-grid .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}

.task-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.task-grid p {
  min-height: 54px;
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 760;
}

.task-grid img {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.equipment-section {
  padding: 8px 0 48px;
}

.equipment-panel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid #d2e1e7;
  border-radius: 9px;
  background: var(--white);
  overflow: hidden;
}

.equipment-panel article {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid #d2e1e7;
}

.equipment-panel article:last-child {
  border-right: 0;
}

.equipment-panel img {
  height: 82px;
  width: 120px;
  object-fit: contain;
  margin-bottom: 12px;
}

.equipment-panel h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.32;
  font-weight: 900;
}

.equipment-panel p {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 760;
}

.more-device {
  color: var(--teal);
}

.more-device span {
  margin-bottom: 34px;
  color: var(--teal);
  font-size: 40px;
  line-height: 1;
  letter-spacing: .1em;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.outline-teal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 190px;
  min-height: 42px;
  padding: 8px 24px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  color: var(--teal);
  background: var(--white);
  font-weight: 900;
}

.become-cta {
  position: relative;
  min-height: 192px;
  color: var(--white);
  background: linear-gradient(135deg, #008f95 0%, #007d90 100%);
  overflow: hidden;
}

.become-cta-photo {
  position: absolute;
  inset: 0 auto 0 0;
  width: 278px;
  background: url("../../images/become-cta-team.jpg") center / cover no-repeat;
}

.become-cta-inner {
  position: relative;
  min-height: 192px;
  display: grid;
  grid-template-columns: 1fr 370px;
  align-items: center;
  gap: 60px;
  padding-left: 305px;
}

.become-cta-copy h2 {
  margin: 0 0 10px;
  font-size: 31px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: .06em;
}

.become-cta-copy p {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 760;
}

.cta-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 40px;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, .45);
}

.cta-feature-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.cta-feature-grid .icon {
  width: 42px;
  height: 42px;
  margin: 0;
  filter: brightness(0) invert(1);
}

.vision-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 322px;
  background: var(--teal);
}

.vision-copy {
  display: flex;
  align-items: center;
  color: var(--white);
  background: linear-gradient(90deg, #00959a 0%, #00999f 68%, rgba(0, 153, 159, .82) 100%);
}

.vision-copy .container {
  width: min(580px, calc(100% - 64px));
  margin-right: 0;
}

.vision-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: .06em;
}

.vision-copy p {
  margin: 0 0 27px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.8;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 44px;
  padding: 9px 26px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.vision-photo {
  background: url("../../images/banner-lobby.jpg") center / cover no-repeat;
}

.partner-section,
.life-section {
  background: #f7fcfd;
}

.partner-section {
  padding: 34px 0 18px;
}

.partner-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 64px;
  align-items: start;
}

.partner-copy h2,
.life-section h2 {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 900;
}

.partner-copy ul {
  margin: 0;
  padding: 0;
}

.partner-copy li {
  position: relative;
  margin: 8px 0;
  padding-left: 28px;
  list-style: none;
  color: var(--navy);
  font-size: 16px;
  font-weight: 850;
}

.partner-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  line-height: 1;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.work-gallery img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.life-section {
  padding: 10px 0 30px;
}

.life-section p {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 850;
}

.life-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.life-gallery img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
  border-radius: 9px;
}

.apply-section {
  padding: 30px 0;
  color: var(--white);
  background: linear-gradient(135deg, #008f95 0%, #007d90 100%);
}

.anchor-point {
  display: block;
  position: relative;
  top: -70px;
  height: 0;
  overflow: hidden;
}

.apply-layout {
  display: grid;
  grid-template-columns: 1.1fr .75fr 116px;
  align-items: center;
  gap: 46px;
}

.apply-title {
  padding-left: 48px;
}

.apply-title h2 {
  margin: 0 0 12px;
  font-size: 27px;
  line-height: 1.58;
  letter-spacing: .12em;
  font-weight: 500;
}

.apply-info {
  padding-left: 44px;
  border-left: 1px solid rgba(255, 255, 255, .45);
}

.apply-info h3 {
  margin: 0 0 12px;
  font-size: 17px;
}

.apply-info p {
  margin: 4px 0;
  font-size: 14px;
  font-weight: 800;
}

.qr-code {
  width: 104px;
  height: 104px;
  padding: 5px;
  border-radius: 5px;
  background: var(--white);
  object-fit: contain;
}

.site-footer {
  padding: 18px 0;
  color: var(--white);
  background: var(--navy);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

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

.brand-footer .brand-mark::before {
  background: var(--navy);
}

.brand-footer .brand-mark::after {
  background: var(--white);
}

.footer-menu {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 750;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.copyright {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    display: grid;
    gap: 5px;
    align-content: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: var(--navy);
  }

  .site-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px 32px 20px;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid rgba(5, 42, 88, .1);
  }

  .menu-open .site-menu {
    display: flex;
  }

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

  .benefit-grid article:nth-child(3n) {
    border-right: 0;
  }

  .partner-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .apply-title,
  .apply-info {
    padding-left: 0;
  }

  .apply-info {
    border-left: 0;
  }

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

  .footer-menu {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .sub-hero {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(231, 250, 251, .92) 48%, rgba(229, 247, 249, .3) 100%),
      url("../../images/become-hero.jpg") center right / auto 100% no-repeat,
      #edf8fa;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 42px;
  }

  .timeline::before {
    display: none;
  }

  .step-num {
    left: calc(50% - 70px);
  }

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

  .equipment-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .equipment-panel article:nth-child(3n) {
    border-right: 0;
  }

  .equipment-panel article:nth-child(-n+3) {
    border-bottom: 1px solid #d2e1e7;
  }

  .become-cta-photo {
    opacity: .22;
    width: 100%;
  }

  .become-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 0;
  }

  .cta-feature-grid {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 620px);
  }

  .header-inner {
    min-height: 64px;
    gap: 12px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 10px;
    letter-spacing: .05em;
  }

  .brand-mark {
    width: 34px;
    height: 23px;
  }

  .header-cta {
    min-width: auto;
    min-height: 36px;
    padding: 7px 14px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 55%, rgba(255, 255, 255, .68) 100%),
      url("../../images/hero-optometrist.jpg") 64% top / cover no-repeat;
  }

  .hero-inner {
    min-height: 660px;
    align-items: flex-start;
  }

  .hero-copy {
    padding: 44px 0 220px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-slogan {
    font-size: 18px;
    letter-spacing: .12em;
  }

  .hero-btn {
    width: 100%;
    min-height: 48px;
    padding: 10px 18px;
    font-size: 16px;
  }

  .signature {
    right: 20px;
    bottom: 24px;
    max-width: 260px;
    font-size: 18px;
  }

  .benefit-panel {
    padding: 0 18px 24px;
  }

  .benefit-panel h2 {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: -15px;
    font-size: 22px;
  }

  .benefit-panel h2 span {
    display: none;
  }

  .benefit-grid,
  .work-gallery,
  .life-gallery {
    grid-template-columns: 1fr;
  }

  .benefit-grid article,
  .benefit-grid article:nth-child(3n) {
    min-height: auto;
    padding: 18px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(5, 42, 88, .12);
  }

  .benefit-grid article:last-child {
    border-bottom: 0;
  }

  .vision-banner {
    grid-template-columns: 1fr;
  }

  .vision-copy {
    min-height: 340px;
  }

  .vision-copy .container {
    width: min(100% - 32px, 620px);
    margin: 0 auto;
  }

  .vision-photo {
    min-height: 220px;
  }

  .work-gallery,
  .life-gallery {
    gap: 16px;
  }

  .work-gallery img,
  .life-gallery img {
    aspect-ratio: 1.7 / 1;
  }

  .apply-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: left;
  }

  .apply-title h2 {
    font-size: 23px;
    letter-spacing: .04em;
  }

  .qr-code {
    width: 116px;
    height: 116px;
  }

  .breadcrumb {
    padding-top: 12px;
  }

  .sub-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .99) 0%, rgba(235, 250, 251, .96) 55%, rgba(235, 250, 251, .68) 100%),
      url("../../images/become-hero.jpg") 68% bottom / auto 58% no-repeat,
      #edf8fa;
  }

  .sub-hero-inner {
    min-height: 560px;
    align-items: flex-start;
  }

  .sub-hero-copy {
    padding: 34px 0 230px;
  }

  .sub-hero-copy h1 {
    font-size: 40px;
  }

  .sub-hero-copy h2 {
    font-size: 27px;
  }

  .inline-heading {
    display: block;
    margin-bottom: 18px;
  }

  .inline-heading h2 {
    margin-bottom: 6px;
    font-size: 25px;
  }

  .timeline,
  .task-grid,
  .equipment-panel {
    grid-template-columns: 1fr;
  }

  .timeline {
    gap: 26px;
  }

  .timeline article {
    padding: 0 0 22px;
    border-bottom: 1px solid rgba(5, 42, 88, .1);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

  .step-num {
    left: calc(50% - 66px);
  }

  .task-grid article {
    padding: 18px 14px 14px;
  }

  .task-grid p {
    min-height: auto;
  }

  .equipment-panel article,
  .equipment-panel article:nth-child(3n),
  .equipment-panel article:nth-child(-n+3) {
    border-right: 0;
    border-bottom: 1px solid #d2e1e7;
  }

  .equipment-panel article:last-child {
    border-bottom: 0;
  }

  .become-cta {
    min-height: auto;
  }

  .become-cta-inner {
    min-height: auto;
  }

  .become-cta-copy h2 {
    font-size: 26px;
  }

  .become-cta-copy p {
    font-size: 16px;
  }

  .cta-feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 0;
    border-left: 0;
  }
}
