@charset "UTF-8";
:root {
  --teal: #009695;
  --teal-d: #007574;
  --teal-l: #33B5B4;
  --teal-ll:#5ECECE;
  --teal-bg:#EAF6F6;
  --teal-bg2:#F0FAFA;
  --ink: #0A1414;
  --mid: #3A5252;
  --muted: #6B8888;
  --line: rgba(0,0,0,0.08);
  --lineb: rgba(0,0,0,0.05);
  --white: #ffffff;
  --off: #F5FAFA;
  --hero-bg:#F2FAFA;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  transition: background 0.3s, border-bottom 0.3s, box-shadow 0.3s;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

.logo-wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.logo-wrap .logo {
  position: relative;
  display: flex;
  align-items: center;
  width: 140px;
  height: 46px;
}
.logo-wrap .logo__mark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
}
.logo-wrap .logo__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 38.4px;
  margin: 0;
  padding: 0;
}
.nav-links > li {
  position: relative;
  padding-top: 2px;
}
.nav-links .link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  color: var(--mid);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links .link:hover {
  color: var(--teal);
}

.nav-chevron {
  flex-shrink: 0;
  width: 12px;
  height: 17px;
  color: currentColor;
  transition: transform 0.2s;
}

.nav-item--has-sub::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: max(100%, 146px);
  height: 16px;
}
.nav-item--has-sub:hover > .link, .nav-item--has-sub:focus-within > .link {
  color: var(--teal);
}
.nav-item--has-sub:hover .nav-chevron, .nav-item--has-sub:focus-within .nav-chevron {
  transform: rotate(180deg);
}
.nav-item--has-sub:hover .depth2, .nav-item--has-sub:focus-within .depth2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
@media (max-width: 991.98px) {
  .nav-item--has-sub:hover .depth2, .nav-item--has-sub:focus-within .depth2 {
    transform: none;
  }
}

.depth2 {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 146px;
  padding: 16px 20px;
  margin: 0;
  list-style: none;
  background: var(--teal);
  border-radius: 20px;
  box-shadow: 0 4px 9px rgba(0, 150, 149, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.nav-item--has-sub:not(:hover):not(:focus-within) .depth2 {
  transition-delay: 0.12s, 0.12s, 0s;
}
.depth2 .depth2-item {
  width: 100%;
}
.depth2 .link {
  justify-content: center;
  width: 100%;
  color: #fff;
  text-align: center;
}
.depth2 .link:hover {
  color: #fff;
  opacity: 0.85;
}

.ncta {
  display: inline-flex;
  align-items: center;
  background: var(--teal) !important;
  color: #fff !important;
  padding: 6px 18px;
  border-radius: 26.24px;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  box-shadow: 0 2px 6px rgba(0, 150, 149, 0.22);
  transition: background 0.2s, box-shadow 0.2s !important;
}
.ncta:hover {
  background: var(--teal-d) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 150, 149, 0.32) !important;
}

nav > .nav-mobile__btn {
  display: none;
}

@media (max-width: 991.98px) {
  nav {
    padding: 16px 28.8px;
  }
  nav > .nav-links {
    display: none;
  }
  nav > .nav-mobile__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
  }
  nav > .nav-mobile__btn svg path {
    stroke: var(--mid);
  }
}
body.nav-mobile-open {
  overflow: hidden;
}

.nav-mobile {
  z-index: 700;
  background-color: #fff;
  max-width: 600px;
  width: 100%;
  height: 100%;
  transition: 500ms all;
  text-align: left;
  position: fixed;
  top: 0;
  right: -100%;
  display: block;
}
.nav-mobile.active {
  right: 0;
}
.nav-mobile__btn {
  display: none;
}
.nav-mobile__bg {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 650;
}
.nav-mobile__head {
  height: 60px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.nav-mobile__head .logo-wrap .logo {
  width: 116px;
  height: 38px;
}
.nav-mobile__head .logo-wrap .logo__mark {
  left: 2px;
  width: 28px;
  height: 28px;
}
.nav-mobile__head .logo-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 16px;
}
.nav-mobile__btn--close {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mid);
  font-size: 1.25rem;
  cursor: pointer;
}
.nav-mobile__body {
  padding-bottom: 50px;
  position: relative;
  overflow-y: auto;
  height: calc(100vh - 60px);
}
.nav-mobile .nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
}
.nav-mobile .nav-links > li {
  padding-top: 0;
}
.nav-mobile .nav-links > li::after {
  display: none;
}
.nav-mobile .nav-links > li > .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  white-space: normal;
}
.nav-mobile .nav-links > li > .link:hover {
  color: var(--teal);
}
.nav-mobile .nav-links > li > .link.active {
  color: var(--teal);
}
.nav-mobile .nav-links .ncta {
  justify-content: center;
  margin: 1rem 1.25rem 0;
  width: calc(100% - 2.5rem);
}
@media (max-width: 991.98px) {
  .nav-mobile .nav-links .ncta {
    margin: 1rem 0 0;
  }
}
.nav-mobile .nav-item--has-sub > .link .nav-chevron {
  transition: transform 0.2s;
}
.nav-mobile .nav-item--has-sub.is-open > .link .nav-chevron {
  transform: rotate(180deg);
}
.nav-mobile .depth2 {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  min-width: 0;
  padding: 0;
  margin: 0;
  background: var(--teal-bg);
  border-radius: 0;
  box-shadow: none;
  display: none;
  gap: 0;
}
.nav-mobile .depth2 .link {
  justify-content: flex-start;
  padding: 0.85rem 1.25rem 0.85rem 2rem;
  font-size: 0.92rem;
  color: var(--mid);
  border-bottom: 1px solid rgba(0, 150, 149, 0.08);
  text-align: left;
}
.nav-mobile .depth2 .link:hover, .nav-mobile .depth2 .link.active {
  color: var(--teal-d);
  opacity: 1;
}
.nav-mobile .depth-1 > .link {
  text-align: left;
  color: #000;
  border-bottom: 1px solid #ddd;
  display: block;
  padding: 1rem 1rem;
  font-size: 1.2rem;
  position: relative;
}
.nav-mobile .depth-1 > .link.active {
  color: #fff;
}
.nav-mobile .depth-2 > .link {
  display: block;
  padding: 0.7rem 1rem;
  padding-left: 1.6rem;
  background-color: rgb(244.8, 244.8, 244.8);
  color: #555;
  font-size: 1rem;
}
.nav-mobile .depth-2:first-child > .link {
  padding-top: 1rem;
}
.nav-mobile .depth-2:last-child > .link {
  padding-bottom: 1rem;
}
.nav-mobile .depth-3 > .link {
  display: block;
  padding: 0.8rem 1rem;
  padding-left: 2.4rem;
  background-color: rgb(234.6, 234.6, 234.6);
  color: #555;
  font-size: 0.8rem;
}
.nav-mobile .depth-1 > .link,
.nav-mobile .depth-2 > .link {
  display: block;
  position: relative;
}
.nav-mobile .depth-1._down > .link.active:before,
.nav-mobile .depth-2._down > .link.active:before {
  content: "\e944";
}
.nav-mobile .depth-1._down > .link:before,
.nav-mobile .depth-2._down > .link:before {
  position: absolute;
  top: 50%;
  font-size: 1rem;
  margin-top: -0.5rem;
  right: 1rem;
}
.nav-mobile .nav-list--depth2,
.nav-mobile .nav-list--depth3 {
  display: none;
}

:root {
  --teal-dk:#005F5F;
  --soft:var(--muted);
  --bg:#F4F8F8;
  --border:rgba(0,150,149,.12);
  --font:'Segoe UI',system-ui,sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.main-body.diode-home {
  padding-top: 0;
}

.main-body.diode-home .main {
  min-height: auto;
}

.hero {
  background: #F2FAFA;
  min-height: 440px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 150, 149, 0.1);
  padding-top: 88px;
}

#hero-cv {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 72px 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-d);
  border: 1px solid rgba(0, 150, 149, 0.28);
  border-radius: 2em;
  background: rgba(0, 150, 149, 0.07);
  padding: 0.35em 1em;
  margin-bottom: 1.6rem;
}

.epulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  animation: ep 2.4s ease-in-out infinite;
}

@keyframes ep {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 640px;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  color: var(--teal);
  font-style: normal;
}

.hero p {
  font-size: 1rem;
  color: var(--mid);
  max-width: 520px;
  line-height: 1.75;
}

.pt-intro {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 36px 40px;
}

.pt-intro h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}

.pt-intro p {
  font-size: 0.95rem;
  color: var(--mid);
  max-width: 680px;
  line-height: 1.75;
}

.scrolly {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 36px 120px;
}

.scrolly-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.step {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  opacity: 0.38;
  transition: opacity 0.45s;
}

.step.active {
  opacity: 1;
}

.step .vis-wrap {
  display: none;
}

@media (max-width: 900px) {
  .step .vis-wrap {
    display: block;
    margin-bottom: 12px;
  }
}
.step-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(0, 150, 149, 0.14);
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 6px;
  transition: color 0.4s;
}

.step.active .step-num {
  color: rgba(0, 150, 149, 0.3);
}

.step-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 22px;
  background: transparent;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.35s;
}

.step.active .step-title::before {
  background: var(--teal);
}

.step-desc {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.78;
  margin-bottom: 20px;
  max-width: 470px;
}

.step-bullets {
  list-style: none;
}

.step-bullets li {
  font-size: 0.84rem;
  color: var(--soft);
  line-height: 1.65;
  padding: 9px 0 9px 18px;
  position: relative;
  border-bottom: 1px solid rgba(0, 150, 149, 0.07);
}

.step-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 1px;
  background: var(--teal);
  opacity: 0.5;
}

.step-bullets li strong {
  color: var(--ink);
  font-weight: 600;
}

.scrolly-visual {
  position: sticky;
  top: 100px;
}

.vis-wrap {
  position: relative;
  height: 420px;
}

.vp {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #F6FBFB;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.vp.active {
  opacity: 1;
  pointer-events: auto;
}

.vp canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.vp-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  pointer-events: none;
}

.vp-label.last {
  bottom: 84px;
}

.vp-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  width: fit-content;
  background: rgba(0, 150, 149, 0.12);
  color: var(--teal-dk);
  border: 1px solid rgba(0, 150, 149, 0.3);
}

.vp-label strong {
  font-size: 0.76rem;
  color: var(--ink);
}

.vp-label span {
  font-size: 0.68rem;
  color: var(--soft);
  max-width: 240px;
  line-height: 1.35;
}

.partners {
  background: #F2FAFA;
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.partners-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 36px;
}

.sec-tag {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 150, 149, 0.07);
  border: 1px solid rgba(0, 150, 149, 0.18);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.partners-hd {
  margin-bottom: 40px;
}

.partners-hd h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.partners-hd p {
  font-size: 0.93rem;
  color: var(--mid);
  max-width: 600px;
  line-height: 1.72;
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.pcard:hover {
  box-shadow: 0 4px 20px rgba(0, 150, 149, 0.1);
  border-color: rgba(0, 150, 149, 0.22);
}

.pcard-type {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 5px;
}

.pcard-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.pcard-desc {
  font-size: 0.76rem;
  color: var(--soft);
  margin-top: 5px;
  line-height: 1.52;
}

.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, #005a5a 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 36px;
}

.cta-band h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.cta-band p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-w {
  background: #fff;
  color: var(--teal);
  padding: 0.88em 2.4em;
  border-radius: 2em;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.cta-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.cta-o {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 0.84em 2em;
  border-radius: 2em;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}

.cta-o:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
}

/* FOOTER */
.diode-footer {
  background: #0a1414;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 33px 0 32px;
  z-index: 1;
  position: relative;
}

.diode-footer .wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.diode-footer .wrap .frow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.diode-footer .wrap .f-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.diode-footer .wrap .flinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.diode-footer .wrap .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.diode-footer .wrap .flink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.diode-footer .wrap .design {
  font-size: 14px;
  font-weight: 600;
  color: #FF7A8A;
}
.diode-footer .wrap .flink:hover {
  color: rgba(255, 255, 255, 0.55);
}
.diode-footer .wrap .fsep {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.12);
  -webkit-user-select: none;
          user-select: none;
}
.diode-footer .wrap .fsocial {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.diode-footer .wrap .fsoc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.diode-footer .wrap .fsoc:hover {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}
.diode-footer .wrap .fcopy {
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 768px) {
  .diode-footer .wrap {
    padding: 0 1.3rem;
  }
  .frow {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .flinks {
    order: 3;
  }
  .fsocial {
    order: 2;
  }
}
@media (max-width: 900px) {
  .scrolly-grid {
    grid-template-columns: 1fr;
  }
  .scrolly-visual {
    display: none;
  }
  .pgrid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-inner, .pt-intro, .scrolly, .partners-inner, .cta-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ── HOME CTA BAND ── */
.home-cta-band {
  margin-top: 112px;
  padding: 96px 0 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--cta-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.home-cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.home-cta-band .home-cta-band__inner h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 14px;
}

.home-cta-band .home-cta-band__inner p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

.home-cta-band__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding-top: 26px;
}

.home-cta-band .cta-w {
  background: #fff;
  color: #009695;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.home-cta-band .cta-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.home-cta-band .cta-o {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 11px 31px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}

.home-cta-band .cta-o:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 700px) {
  .home-cta-band {
    padding: 72px 0 88px;
  }
  .home-cta-band__inner {
    padding: 0 20px;
  }
}