/* Generated by tools/build-theme-css.py. Do not edit directly. */
:root {
  --navy: var(--cb-navy);
  --navy-deep: var(--cb-navy-deep);
  --navy-mid: #243070;
  --navy-light: #2e3d80;
  --red: var(--cb-red);
  --red-dark: #9d1f24;
  --red-glow: rgba(184, 41, 45, 0.12);
  --red-bright: #d43438;
  --cream: var(--cb-cream);
  --white: var(--cb-white);
  --stone: var(--cb-stone);
  --charcoal: var(--cb-charcoal);
  --radius-xl: 20px;
  --radius-lg: 14px;
  --radius-md: 8px;
  --shadow-soft: 0 2px 16px rgba(27, 38, 85, 0.06);
  --shadow-med: 0 8px 32px rgba(27, 38, 85, 0.1);
  --shadow-strong: 0 20px 60px rgba(27, 38, 85, 0.16);
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --font-body: "DM Sans", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-mono: "DM Mono", monospace;
}

body {
  background: var(--white);
}

.top-bar {
  background: linear-gradient(90deg, #af272b 0%, #b8292d 50%, #a62328 100%);
  padding: 9px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1001;
}

@keyframes gradSlide {
  0% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}

.top-bar-icon {
  font-size: 10px;
  opacity: 0.92;
}

.top-bar-copy {
  display: inline-flex;
  align-items: center;
}

.top-bar strong {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.top-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  font-weight: 700;
}

.top-bar .close-bar {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.top-bar .close-bar:hover {
  color: #fff;
}


.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(184, 41, 45, 0.08);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

.nav.scrolled {
  box-shadow: 0 10px 30px rgba(14, 22, 50, 0.22);
  background: var(--navy-deep);
}

.nav-inner {
  width: 100%;
  height: 68px;
  min-height: 68px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.nav-logo-mark,
.fb-logo-img,
.location-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), #cf474b 52%, var(--navy));
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(184, 41, 45, 0.24);
  flex-shrink: 0;
}

.nav-logo-mark::after,
.fb-logo-img::after,
.location-brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: shimmer 3.4s ease-in-out infinite;
}

.location-brand-mark-logo {
  padding: 4px;
  background: #fff;
}

.location-brand-mark-logo::after {
  display: none;
}

.location-brand-mark-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-120%); }
  50% { transform: translateX(140%); }
}

.nav-logo-full {
  height: 50px;
  width: auto;
  display: block;
  transition: all .3s var(--ease);
}

.nav-logo:hover .nav-logo-full {
  filter: brightness(1.08);
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  flex-wrap: nowrap;
  z-index: 1;
}

.nav-link {
  color: rgba(255, 255, 255, 0.45);
  padding: 8px 14px;
  border: 0;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  line-height: 1;
  font-weight: 500;
  transition: all .25s;
  white-space: nowrap;
  flex: 0 0 auto;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  transition: all .3s var(--ease-spring);
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 20%;
  right: 20%;
}

.nav-link.active {
  color: #fff;
  background: transparent;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 2;
}


.lang-dropdown {
  position: relative;
}

.nav-lang-sw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 132px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: transparent;
  color: rgba(255, 255, 255, .4);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s;
  font-family: var(--font-body);
  line-height: 1.1;
  white-space: nowrap;
}

.nav-lang-emoji,
.nav-lang-text,
.nav-lang-caret {
  display: inline-flex;
  align-items: center;
}

.nav-lang-emoji {
  flex: 0 0 auto;
}

.nav-lang-text {
  min-width: 0;
}

.nav-lang-caret {
  font-size: 11px;
  opacity: .72;
}

.nav-lang-sw:hover {
  border-color: var(--red);
  color: var(--red);
}

.nav-lang-sw:focus-visible,
.lang-opt:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 220px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 9999;
}

.lang-menu.open {
  display: block;
  animation: langDrop .3s var(--ease-spring) both;
}

@keyframes langDrop {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to { opacity: 1; transform: none; }
}

.lang-menu-inner {
  max-height: 480px;
  overflow-y: auto;
  padding: 6px;
}

.lang-menu-inner::-webkit-scrollbar {
  width: 4px;
}

.lang-menu-inner::-webkit-scrollbar-thumb {
  background: rgba(27, 38, 85, .12);
  border-radius: 2px;
}

.lang-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--charcoal);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}

.lang-opt:hover {
  background: var(--cream);
  transform: translateX(3px);
}

.lang-opt.active {
  background: var(--red-glow);
  color: var(--red);
  border-color: rgba(184, 41, 45, .12);
  font-weight: 600;
}


.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  flex-direction: column;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s var(--ease);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 22, 50, .97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mobile-overlay.open {
  display: flex;
  animation: pageIn .3s var(--ease-out);
}

@keyframes pageIn {
  from { opacity: 0; transform: scale(.98); }
  to { opacity: 1; transform: none; }
}

.mobile-overlay .mob-link {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: all .25s;
  opacity: .7;
}

.mobile-overlay .mob-link:hover,
.mobile-overlay .mob-link.active {
  opacity: 1;
  color: var(--red-bright);
}

.mobile-overlay .mob-lang {
  margin-top: 16px;
  text-align: center;
}

.mobile-overlay .mob-lang-label {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 10px;
}

.mobile-overlay .mob-lang-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 320px;
  margin: 0 auto;
}

.mobile-overlay .mob-lang-opt {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .15);
  transition: all .2s;
}

.mobile-overlay .mob-lang-opt:hover,
.mobile-overlay .mob-lang-opt.active {
  color: #fff;
  border-color: var(--red-bright);
  background: rgba(220, 38, 38, .15);
}

.cta-main,
.cta-wa,
.cta-ghost,
.nav-enroll-btn,
.mobile-overlay .mob-enroll,
.location-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all .3s var(--ease-spring);
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
}

.cta-main,
.nav-enroll-btn,
.mobile-overlay .mob-enroll,
.location-map-link {
  background: var(--red);
  color: #fff !important;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 12px 30px rgba(184, 41, 45, .22);
  white-space: nowrap;
}

.cta-main {
  padding: 14px 28px;
}

.nav-enroll-btn {
  padding: 9px 24px;
  font-size: 13px;
  white-space: nowrap;
}

.mobile-overlay .mob-enroll {
  margin-top: 20px;
  padding: 14px 40px;
  font-size: 15px;
}

.location-map-link {
  padding: 9px 18px;
  font-size: 12px !important;
}

.cta-main:hover,
.nav-enroll-btn:hover,
.mobile-overlay .mob-enroll:hover,
.location-map-link:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(184, 41, 45, .28);
}

.cta-wa {
  background: #25d366;
  color: #fff;
  padding: 14px 24px;
}

.cta-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .3);
}

.cta-ghost {
  border: 1.5px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .7);
  padding: 14px 24px;
  background: transparent;
}

.cta-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(184, 41, 45, .04);
}

.rv,
.rvl,
.rvr,

.rvs {
  opacity: 0;
}

.rv { transform: translateY(30px); transition: all .7s var(--ease-out); }
.rvl { transform: translateX(-40px); transition: all .7s var(--ease-out); }
.rvr { transform: translateX(40px); transition: all .7s var(--ease-out); }
.rvs { transform: scale(.9); transition: all .6s var(--ease-spring); }

.rv.v,
.rvl.v,
.rvr.v,
.rvs.v {
  opacity: 1;
  transform: none;
}


.sec {
  padding: 90px 32px;
  position: relative;
}

.sec-cream {
  background: var(--cream);
}

.sec-white {
  background: var(--white);
}

.sec-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.sec-eyebrow::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--red);
  border-radius: 1px;
}

.sec-eyebrow-center {
  justify-content: center;
}

.sec-h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.5vw, 46px);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 12px;
}

.sec-p {
  max-width: 500px;
  color: var(--stone);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.sec-p-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cb-page-block {
  margin-top: 36px;
}

.cb-page-block-lg {
  margin-top: 52px;
}

.cb-page-grid-gap {
  margin-top: 24px;
}

.c-tags-offset {
  margin-top: 10px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.feat-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(27, 38, 85, 0.04);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all 0.4s var(--ease-spring);
}

.feat-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--red), var(--navy-mid));
  transition: transform 0.5s var(--ease-spring);
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.feat-card:hover::after {
  transform: scaleX(1);
}

.ftico {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  font-size: 22px;
  transition: all 0.3s var(--ease-spring);
}

.feat-card:hover .ftico {
  transform: scale(1.1) rotate(-5deg);
}

.ftico.r {
  background: var(--red-glow);
}

.ftico.b {
  background: rgba(27, 38, 85, 0.06);
}

.ftico.g {
  background: rgba(37, 211, 102, 0.08);
}

.feat-card h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
}

.feat-card p {
  margin: 0;
  color: var(--stone);
  font-size: 13.5px;
  line-height: 1.6;
}


.promo {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding: 32px 40px;
  border-radius: var(--radius-xl);
  background: var(--red);
}

.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: promoShine 3s ease infinite;
}

.promo h3,
.promo p,
.promo-btn {
  position: relative;
  z-index: 2;
}

.promo h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 4px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 22px;
}

.promo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border: none;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
}

.promo-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@keyframes promoShine {
  0% {
    background-position: 200% 200%;
  }

  100% {
    background-position: -200% -200%;
  }
}

.cb-path-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.cb-path-step {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.cb-path-step.is-accent {
  background: var(--red-glow);
  color: var(--red);
}

.cb-path-step.is-muted {
  background: rgba(27, 38, 85, 0.06);
  color: var(--navy);
}

.cb-path-arrow {
  color: var(--stone);
  font-size: 14px;
}


.icta {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}

.icta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(184, 41, 45, .1), transparent 55%);
}

.icta::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image: linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.icta h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  color: #fff;
  margin: 0 0 10px;
  position: relative;
  z-index: 2;
}

.icta p {
  color: rgba(255, 255, 255, .4);
  font-size: 14.5px;
  max-width: 420px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.icta-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}


.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(27, 38, 85, .5);
  transition: all .3s;
  border: none;
  position: relative;
  animation: waB 3s ease infinite;
}

@keyframes waB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.wa-btn:hover {
  transform: scale(1.12) !important;
  animation: none;
}

.wa-btn .wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waP 2s infinite;
}

@keyframes waP {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.wa-panel {
  display: none;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  width: 280px;
  max-height: 80vh;
  overflow: hidden;
  animation: panelPop .4s var(--ease-spring);
}

.wa-panel .wa-pb {
  max-height: calc(80vh - 48px);
  overflow-y: auto;
}

@keyframes panelPop {
  from { opacity: 0; transform: scale(.85) translateY(10px); }
  to { opacity: 1; transform: none; }
}

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

.wa-ph {
  background: var(--navy);
  padding: 14px 18px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wa-pc {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.wa-pb {
  padding: 10px;
}

.wa-sec-label {
  padding: 4px 14px 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "DM Mono", monospace;
}

.wa-lb {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  color: var(--charcoal);
  font-size: 13.5px;
  font-weight: 500;
  transition: all .2s;
  border: 1px solid transparent;
}

.wa-lb:hover {
  background: #f0faf4;
  border-color: #25d366;
  transform: translateX(4px);
}

.wa-lb-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 12px;
}

.wa-lb-icon-green { background: #25d366; }
.wa-lb-icon-blue { background: #0088cc; }
.wa-lb-icon-indigo { background: #0084ff; }

.wa-wechat-qr {
  display: flex;
  justify-content: center;
  padding: 8px 14px 4px;
}

.wa-wechat-qr img {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.wa-sep {
  height: 1px;
  background: rgba(27, 38, 85, .06);
  margin: 6px 14px;
}


.footer {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #090e20 100%);
  padding: 0;
  border-top: none;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-bright), var(--red), var(--red-dark));
  background-size: 200% 100%;
  animation: gradSlide 4s ease infinite;
}

.footer-main {
  padding: 48px 32px 28px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 36px;
}

.fb-logo {
  display: block;
  margin-bottom: 12px;
}

.footer-logo-full {
  width: 252px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, .3);
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 18px;
}

.footer-brand-socials {
  display: flex;
  gap: 10px;
}

.footer-brand-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .45);
  font-size: 15px;
  text-decoration: none;
  transition: all .3s var(--ease-spring);
  border: 1px solid rgba(255, 255, 255, .06);
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.footer-social-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.footer-brand-socials a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-3px) scale(1.1);
}

.footer-col h4 {
  font-family: "DM Mono", monospace;
  color: rgba(255, 255, 255, .55);
  font-size: 10.5px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .35);
  font-size: 13.5px;
  padding: 5px 0;
  transition: all .25s;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-col a .fc-icon {
  font-size: 14px;
  opacity: .5;
  transition: opacity .25s;
}

.footer-col a:hover .fc-icon {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  color: rgba(255, 255, 255, .35);
  font-size: 13.5px;
}

.footer-contact-item .fci-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item a {
  display: inline;
  padding: 0;
  color: rgba(255, 255, 255, .35);
}

.footer-contact-item a:hover {
  color: #fff;
  transform: none;
}

.footer-bottom {
  padding: 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1224px;
  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .2);
  font-size: 11.5px;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .2);
  font-size: 11.5px;
  transition: color .2s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, .5);
}

@media (max-width: 1024px) {
  .nav-links,
  .lang-dropdown,
  .nav-enroll-btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    margin-left: auto;
  }

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

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

@media (max-width: 640px) {
  .top-bar {
    padding: 8px 36px 8px 12px;
    font-size: 10px;
    gap: 6px;
  }

  .top-bar-icon {
    display: none;
  }

  .sec {
    padding: 56px 18px;
  }

  .nav-inner {
    padding: 0 18px;
    height: 68px;
    min-height: 68px;
  }

  .nav-logo-full {
    height: 40px;
  }

  .icta-btns {
    flex-direction: column;
    gap: 12px;
  }

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

  .promo,
  .icta {
    padding: 32px 24px;
  }

  .cb-path-steps {
    flex-direction: column;
  }

  .cb-path-arrow {
    transform: rotate(90deg);
  }

  .wa-float {
    right: 18px;
    bottom: 18px;
  }

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

  .footer-main,
  .footer-bottom {
    padding-left: 18px;
    padding-right: 18px;
  }
}
