:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-soft: #f1ece5;
  --text: #111926;
  --muted: #66717d;
  --line: rgba(17, 25, 38, 0.12);
  --navy: #0f1722;
  --navy-soft: #162233;
  --orange: #f26b1d;
  --orange-dark: #d95b12;
  --gold: #d7b075;
  --shadow: 0 28px 70px rgba(10, 18, 28, 0.12);
  --font-ui-strong: "Barlow", "Manrope", sans-serif;
  --font-display: "Barlow", "Outfit", sans-serif;
  --page-motion: 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.page-is-loading {
  background: #f7f4ef;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 107, 29, 0.08), transparent 18%),
    linear-gradient(180deg, #f7f4ef 0%, #f3eee7 100%);
}

.topbar,
.site-header,
main,
.contact-map-section,
footer {
  transition:
    opacity var(--page-motion),
    transform var(--page-motion),
    filter calc(var(--page-motion) * 0.9);
  will-change: opacity, transform;
}

html.page-is-loading .topbar,
html.page-is-loading .site-header,
html.page-is-loading main,
html.page-is-loading .contact-map-section,
html.page-is-loading footer {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
}

html.page-is-ready .topbar,
html.page-is-ready .site-header,
html.page-is-ready main,
html.page-is-ready .contact-map-section,
html.page-is-ready footer {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

body.is-page-leaving .topbar,
body.is-page-leaving .site-header,
body.is-page-leaving main,
body.is-page-leaving .contact-map-section,
body.is-page-leaving footer {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(10px);
  pointer-events: none;
}

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

  .topbar,
  .site-header,
  main,
  .contact-map-section,
  footer {
    transition: none;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}

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

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

p {
  margin: 0 0 1rem;
  line-height: 1.75;
  color: var(--muted);
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  font-family: "Outfit", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text);
  overflow-wrap: anywhere;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  background: #0b1119;
  color: #ffffff;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(15, 23, 34, 0.08);
}

.topbar-inner,
.nav-wrap,
.footer-grid,
.section-head,
.stats-grid,
.card-grid,
.related-grid,
.filter-row,
.chip-row,
.about-grid,
.spotlight-grid,
.faq-grid-home3,
.metrics-grid-home3,
.news-grid-home3,
.service-grid-home3 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-inner,
.nav-wrap,
.footer-grid,
.section-head {
  justify-content: space-between;
  align-items: center;
}

.topbar-inner {
  padding: 0.75rem 0;
  justify-content: center;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 34, 0.08);
}

.nav-wrap {
  display: grid;
  grid-template-columns: minmax(17rem, 21rem) 1fr auto;
  gap: 1.75rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  gap: 0.95rem;
  align-items: center;
  min-width: 0;
  justify-self: start;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--orange), #ffbf54);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 16px 28px rgba(242, 107, 29, 0.25);
}

.brand-mark-logo {
  flex: 0 0 auto;
  width: clamp(12.2rem, 17vw, 13.6rem);
  height: 4.25rem;
  overflow: hidden;
  padding: 0.2rem 0.55rem;
  border-radius: 0.8rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 34, 0.08);
  box-shadow: 0 14px 28px rgba(15, 23, 34, 0.12);
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
  align-items: flex-start;
}

.brand-text strong {
  font-family: var(--font-ui-strong);
  line-height: 1.1;
  font-size: 0.98rem;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.brand-text small {
  display: block;
  font-family: var(--font-ui-strong);
  color: #98a2b3;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.015em;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 0;
}

.main-nav,
.nav-actions,
.hero-actions,
.hero-contact-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav {
  justify-self: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: nowrap;
}

.nav-actions {
  justify-self: end;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.65rem;
}

.main-nav a {
  font-family: var(--font-ui-strong);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  color: #1d2937;
  white-space: nowrap;
}

.site-header .button {
  font-family: var(--font-ui-strong);
  letter-spacing: 0.015em;
}

.main-nav a.is-active,
.main-nav a:hover {
  color: var(--orange);
}

.button,
.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.92rem 1.35rem;
  border: 1px solid transparent;
  font-weight: 800;
  transition: 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.button:hover,
.filter-btn:hover {
  transform: translateY(-2px);
}

.button-primary,
.filter-btn.is-active {
  background: var(--orange);
  color: #fff;
}

.button-primary:hover,
.filter-btn.is-active:hover {
  background: var(--orange-dark);
}

.button-outline,
.filter-btn {
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  border-color: var(--line);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.96);
}

.button-search svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.nav-actions .button-search {
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button-icon-circle {
  width: 3.15rem;
  min-width: 3.15rem;
  height: 3.15rem;
  padding: 0;
  border-radius: 999px;
}

.button-account,
.button-cart {
  position: relative;
}

.button-account svg,
.button-cart svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.button-search svg {
  width: 1.1rem;
  height: 1.1rem;
}

.button-account {
  background: #f26b1d;
  border-color: #f26b1d;
  color: #ffffff;
}

.button-account:hover {
  background: #d95e16;
  border-color: #d95e16;
}

.button-cart {
  background: #ffffff;
}

.cart-badge {
  position: absolute;
  top: -0.18rem;
  right: -0.14rem;
  min-width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: #f26b1d;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15rem;
  text-align: center;
}

.has-overlay-open {
  overflow: hidden;
}

.site-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 10vw, 6.5rem) 1.25rem 1.25rem;
}

.site-overlay[hidden] {
  display: none;
}

.site-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 20, 0.66);
  backdrop-filter: blur(6px);
}

.site-overlay-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 40rem);
}

.site-search-dialog {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.quick-search-form {
  flex: 1 1 auto;
  background: #ffffff;
  border: 2px solid #101820;
  padding: 0.8rem 1rem 0.95rem;
  box-shadow: 0 18px 42px rgba(5, 12, 20, 0.18);
}

.quick-search-label {
  display: block;
  margin-bottom: 0.55rem;
  color: #516072;
  font-size: 0.82rem;
}

.quick-search-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.quick-search-box input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #09111f;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 0;
}

.quick-search-box input::placeholder {
  color: #7b8898;
  font-weight: 500;
}

.quick-search-submit,
.site-overlay-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: #0f1622;
  cursor: pointer;
}

.quick-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
}

.quick-search-submit svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.site-overlay-close {
  font-size: 2rem;
  line-height: 1;
  color: #ffffff;
  padding: 0.25rem;
}

.site-auth-dialog {
  position: relative;
  width: min(100%, 32rem);
  padding: 1.2rem;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(5, 12, 20, 0.2);
}

.site-auth-dialog .site-overlay-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  color: #0f1622;
}

.auth-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 2.4rem 1rem 0;
}

.auth-switch {
  appearance: none;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: 999px;
  background: rgba(245, 247, 250, 0.9);
  color: #344255;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0.8rem 1rem;
}

.auth-switch.is-active {
  background: #f26b1d;
  border-color: #f26b1d;
  color: #ffffff;
}

.auth-panel {
  padding-top: 0.25rem;
}

.auth-panel.is-hidden {
  display: none;
}

.auth-kicker {
  margin: 0 0 0.55rem;
  color: #f26b1d;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.auth-panel h2 {
  margin: 0 0 1rem;
  color: #0d1725;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.1;
}

.auth-form {
  display: grid;
  gap: 0.9rem;
}

.button-block {
  width: 100%;
}

.auth-alert {
  margin-bottom: 1rem;
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.auth-alert-error {
  background: rgba(191, 45, 45, 0.08);
  color: #8e2323;
}

.auth-alert-success {
  background: rgba(31, 128, 76, 0.1);
  color: #17613a;
}

.account-summary-card {
  display: grid;
  gap: 0.85rem;
  border: 1px solid rgba(15, 23, 34, 0.08);
  border-radius: 1.2rem;
  background: #f8fafc;
  padding: 1rem;
}

.account-summary-card span {
  display: block;
  margin-bottom: 0.2rem;
  color: #68778b;
  font-size: 0.82rem;
}

.account-summary-card strong {
  color: #0d1725;
  font-size: 1rem;
}

.site-cart-dialog {
  position: relative;
  width: min(100%, 34rem);
  padding: 1.2rem;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(5, 12, 20, 0.2);
}

.site-cart-dialog .site-overlay-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  color: #0f1622;
}

.cart-panel h2 {
  margin: 0 0 1rem;
  color: #0d1725;
  font-size: clamp(1.4rem, 4vw, 1.95rem);
  line-height: 1.1;
}

.cart-list {
  display: grid;
  gap: 0.9rem;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  border: 1px solid rgba(15, 23, 34, 0.08);
  border-radius: 1.15rem;
  background: #f8fafc;
  padding: 0.95rem 1rem;
}

.cart-item-copy strong,
.cart-item-copy span,
.cart-item-copy small {
  display: block;
}

.cart-item-copy strong {
  color: #0d1725;
  font-size: 0.98rem;
}

.cart-item-copy span {
  margin-top: 0.2rem;
  color: #516072;
  font-size: 0.88rem;
}

.cart-item-copy small {
  margin-top: 0.28rem;
  color: #7c8a9a;
  font-size: 0.8rem;
}

.cart-item-actions {
  display: grid;
  gap: 0.55rem;
}

.button-mini {
  min-height: 2.3rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.82rem;
}

.cart-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cart-empty-state {
  border: 1px dashed rgba(15, 23, 34, 0.12);
  border-radius: 1.15rem;
  background: #f8fafc;
  padding: 1.2rem;
  text-align: center;
}

.cart-empty-state p {
  margin: 0 0 0.35rem;
  color: #0d1725;
  font-weight: 700;
}

.cart-empty-state span {
  color: #64748b;
  font-size: 0.9rem;
}

.auth-actions-stack {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.auth-actions-stack form {
  margin: 0;
}

.library-search-summary {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.library-search-summary p {
  margin: 0;
  color: #516072;
}

.library-search-summary strong {
  color: #101820;
}

.library-empty-state {
  margin-top: 1.5rem;
  border: 1px dashed rgba(16, 24, 32, 0.16);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  text-align: center;
}

.button-dark {
  background: #0f1115;
  color: #fff;
  border-color: #0f1115;
}

.button-dark:hover {
  background: #000;
  border-color: #000;
}

.button-dark-alt {
  background: #171c24;
  border-color: #171c24;
}

.light-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.hero {
  padding: 0;
}

.hero-home3 {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.5rem;
  background:
    linear-gradient(90deg, rgba(15, 23, 34, 0.97) 0%, rgba(15, 23, 34, 0.93) 55%, rgba(15, 23, 34, 0.75) 100%);
}

.hero-home3::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(242, 107, 29, 0.18), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.08), transparent 18%);
  pointer-events: none;
}

.hero-home3-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy-column {
  color: #fff;
}

.hero-copy-column h1 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.8rem);
  max-width: 12ch;
}

.hero-copy {
  max-width: 45rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(242, 107, 29, 0.14);
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-phone-card,
.hero-micro-card,
.hero-showcase-card,
.about-image-large,
.about-image-small,
.section-card,
.service-card-home3,
.mini-case-card,
.faq-copy-panel,
.faq-image-panel,
.metric-card-home3,
.news-card-home3,
.library-card,
.case-panel,
.cta-banner {
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
}

.hero-phone-card,
.hero-micro-card {
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-phone-card {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.hero-phone-card strong,
.hero-micro-card strong {
  display: block;
  margin-bottom: 0.2rem;
}

.hero-phone-card p,
.hero-micro-card span {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero-icon {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
}

.hero-showcase-card {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-showcase-image {
  width: 100%;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
}

.hero-showcase-body {
  padding: 1.35rem 1.5rem 1.6rem;
}

.hero-floating-badge {
  position: absolute;
  left: 1.35rem;
  bottom: 7.2rem;
  background: var(--orange);
  color: #fff;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  min-width: 8rem;
}

.hero-floating-badge strong {
  display: block;
  font: 800 2rem/1 "Outfit", sans-serif;
}

.hero-floating-badge span {
  font-size: 0.94rem;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background:
    linear-gradient(180deg, var(--navy) 0%, #111d2a 100%);
  color: #fff;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-head-light h2,
.section-head-light p {
  color: #fff;
}

.about-grid,
.spotlight-grid,
.faq-grid-home3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-visual-stack {
  position: relative;
  min-height: 34rem;
}

.about-image-large,
.about-image-small {
  overflow: hidden;
  background: #fff;
}

.about-image-large img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
}

.about-image-small {
  position: absolute;
  right: 0;
  bottom: 1.8rem;
  width: 48%;
  border: 8px solid #fff;
}

.about-image-small img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.experience-box {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--navy);
  color: #fff;
  padding: 1.15rem 1.25rem;
  border-left: 4px solid var(--orange);
  border-radius: 1rem;
}

.experience-box strong {
  display: block;
  font: 800 2.7rem/1 "Outfit", sans-serif;
}

.feature-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.feature-list-card,
.section-card {
  padding: 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
}

.service-grid-home3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.service-card-home3 {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
}

.service-card-home3 h3,
.service-card-home3 p,
.service-link {
  color: #fff;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.service-index {
  color: rgba(255, 255, 255, 0.35);
  font: 800 2.1rem/1 "Outfit", sans-serif;
}

.service-plus {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
}

.service-link {
  color: var(--gold);
  font-weight: 800;
}

.spotlight-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mini-case-card,
.news-card-home3,
.library-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  height: 100%;
}

.mini-case-card img,
.news-card-home3 img,
.library-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.mini-case-body,
.news-card-body,
.library-body,
.case-panel {
  padding: 1.25rem;
}

.mini-case-body,
.news-card-body,
.library-body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.news-card-body .service-link,
.library-body .button,
.mini-case-body .service-link {
  margin-top: auto;
}

.library-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.faq-image-panel {
  overflow: hidden;
  background: #fff;
}

.faq-image-panel img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.faq-copy-panel {
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
}

.faq-item-home3 {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(17, 25, 38, 0.09);
}

.faq-item-home3:last-child {
  border-bottom: 0;
}

.metrics-home3 {
  padding-top: 0;
}

.metrics-grid-home3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.metric-card-home3 {
  padding: 1.6rem 1.25rem;
  background: linear-gradient(180deg, #fff 0%, #f4eee6 100%);
  border: 1px solid var(--line);
  text-align: center;
}

.metric-card-home3 strong {
  display: block;
  margin-bottom: 0.5rem;
  font: 800 2.4rem/1 "Outfit", sans-serif;
  color: var(--navy);
}

.news-grid-home3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.news-meta,
.library-meta {
  color: var(--orange-dark);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.filter-row {
  margin-bottom: 1.6rem;
}

.card-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.library-card {
  display: flex;
  flex-direction: column;
}

.chip-row {
  gap: 0.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.44rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: #2d3a48;
  font-size: 0.92rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: start;
}

.case-panel {
  background: #fff;
  border: 1px solid var(--line);
}

.case-panel img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.list li {
  margin-bottom: 0.72rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.case-panel p,
.case-panel li,
.faq-item-home3 p,
.service-card-home3 p,
.news-card-body p,
.library-body p,
.mini-case-body p {
  overflow-wrap: anywhere;
}

.cta-banner {
  padding: 1.6rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
}

.cta-banner h3,
.cta-banner p {
  color: #fff;
}

.contact-map-section {
  padding: 0 0 4rem;
}

.contact-map-card {
  overflow: hidden;
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-map-card iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.category-pills,
.testimonials-grid,
.benefits-grid,
.faq-extended-grid,
.product-grid-home,
.university-grid {
  display: grid;
  gap: 1.2rem;
}

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

.category-pill,
.benefit-card,
.faq-extended-card,
.testimonial-card,
.product-card-home,
.support-card-home {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.category-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.15rem;
  font-weight: 800;
}

.category-pill strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--orange-dark);
}

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

.university-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trust-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1.4rem;
  border-radius: 1.6rem;
  background:
    linear-gradient(135deg, rgba(15, 23, 34, 0.96) 0%, rgba(23, 35, 50, 0.92) 100%);
  box-shadow: var(--shadow);
}

.trust-band-copy h2,
.trust-band-copy p {
  color: #fff;
}

.trust-band-copy p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.75);
}

.trust-band-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trust-stat-card {
  min-height: 100%;
  padding: 1.2rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.trust-stat-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font: 800 2rem/1 "Outfit", sans-serif;
}

.trust-stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.campus-marquee {
  overflow: hidden;
  margin-bottom: 2rem;
  padding: 0.35rem 0 0.2rem;
}

.campus-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: campus-marquee 28s linear infinite;
}

.campus-marquee:hover .campus-track {
  animation-play-state: paused;
}

.campus-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--school-soft, #f4f6fb) 0%, #ffffff 100%);
  border: 1px solid rgba(17, 25, 38, 0.08);
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(10, 18, 28, 0.08);
}

.campus-pill-badge {
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--school, #1f4ea6), var(--school-accent, #67a7ff));
  color: #fff;
  font: 800 0.88rem/1 "Outfit", sans-serif;
  letter-spacing: 0.04em;
}

.campus-pill-logo {
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 0.22rem;
  box-shadow: inset 0 0 0 1px rgba(17, 25, 38, 0.08);
}

.school-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, var(--school-soft, #f4f6fb) 0%, #ffffff 100%);
  border: 1px solid rgba(17, 25, 38, 0.08);
  box-shadow: var(--shadow);
  min-height: 100%;
}

.school-logo-badge {
  width: 4.2rem;
  height: 4.2rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--school, #1f4ea6), var(--school-accent, #67a7ff));
  color: #fff;
  font: 800 0.95rem/1 "Outfit", sans-serif;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0.4rem;
}

.school-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 0.85rem;
  padding: 0.35rem;
}

.school-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.school-card-body strong {
  color: var(--school, var(--text));
  font-size: 1rem;
}

.school-card-body p {
  margin: 0;
}

.school-card-body span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.product-card-home {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-home img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.product-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  height: 100%;
}

.product-card-body .button {
  margin-top: auto;
}

.testimonial-card {
  padding: 1.15rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.testimonials-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}

.testimonials-intro-card,
.testimonial-slider-panel {
  padding: 1.45rem;
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.testimonials-intro-card {
  display: none;
}

.shopfront-section-head-compact {
  justify-content: center;
  text-align: center;
  margin-bottom: 1.25rem;
}

.shopfront-section-head-compact h2 {
  max-width: none;
  font-size: clamp(2rem, 3.3vw, 2.8rem);
}

.testimonials-intro-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.testimonial-points {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.testimonial-points li {
  padding-left: 1.15rem;
  position: relative;
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--orange);
}

.testimonial-slider-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.testimonial-slider-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-slider-meta strong {
  font-size: 1rem;
}

.testimonial-slider-meta span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.93rem;
}

.testimonial-nav {
  display: inline-flex;
  gap: 0.7rem;
}

.testimonial-nav-btn {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font: 800 1.4rem/1 "Outfit", sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.testimonial-nav-btn:hover {
  transform: translateY(-2px);
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
}

.testimonial-header {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(242, 107, 29, 1) 0%, rgba(255, 191, 84, 1) 100%);
  color: #fff;
  font: 800 0.92rem/1 "Outfit", sans-serif;
  letter-spacing: 0.05em;
}

.testimonial-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 0.85rem;
  padding: 0.3rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-author strong {
  margin: 0;
}

.testimonial-author span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.93rem;
}

.testimonial-highlight {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.42rem 0.72rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: rgba(242, 107, 29, 0.12);
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 0.85rem;
}

.testimonial-mark {
  font: 800 2.25rem/1 "Outfit", sans-serif;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 0;
  color: var(--text);
}

.testimonial-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.72;
  font-size: 0.97rem;
}

.testimonial-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.testimonial-dot {
  width: 0.82rem;
  height: 0.82rem;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 25, 38, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.testimonial-dot.is-active {
  background: var(--orange);
  transform: scale(1.12);
}

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

.benefit-card,
.faq-extended-card {
  padding: 1.4rem;
}

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

.support-card-home .news-card-body {
  height: 100%;
  justify-content: flex-start;
}

.checkout-grid,
.payment-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.checkout-summary-panel,
.checkout-form-panel,
.payment-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
}

.checkout-summary-panel,
.payment-panel {
  padding: 1.5rem;
}

.checkout-back {
  display: inline-flex;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.checkout-summary-box h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 1.2rem;
}

.checkout-line-item,
.order-summary-row,
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.checkout-line-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}

.checkout-line-item strong,
.checkout-total-row strong,
.order-summary-row strong {
  color: var(--text);
}

.checkout-meta-list,
.transfer-info-list,
.order-summary-list,
.order-customer-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.checkout-meta-list div,
.transfer-info-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.checkout-meta-list span,
.transfer-info-list span,
.order-summary-row span {
  color: var(--muted);
}

.checkout-total-row {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.checkout-form-panel h2,
.payment-panel h2 {
  margin-bottom: 1rem;
}

.checkout-form-card {
  padding: 1.5rem;
  border-top: 1px solid var(--line);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(17, 25, 38, 0.16);
  font: inherit;
  color: var(--text);
  background: #fff;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(242, 107, 29, 0.12);
}

.checkout-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.checkout-note-box,
.payment-contact-box,
.payment-warning {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
}

.email-status-box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.2rem 0 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
}

.email-status-box strong,
.email-status-box span {
  color: var(--text);
}

.email-status-box.is-success {
  background: #edf8ea;
  border: 1px solid rgba(74, 138, 46, 0.2);
}

.email-status-box.is-preview {
  background: #fff7e9;
  border: 1px solid rgba(242, 107, 29, 0.2);
}

.checkout-note-box,
.payment-contact-box {
  background: var(--surface-soft);
  color: var(--text);
}

.payment-success-text {
  color: #4d6b33;
}

.payment-methods {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.qr-payment-card,
.transfer-info-card {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.2rem;
  background: #fff;
}

.qr-payment-card img {
  width: 100%;
  max-width: 440px;
  margin: 1rem auto;
  border-radius: 1rem;
  box-shadow: 0 18px 42px rgba(15, 23, 34, 0.12);
}

.payment-warning {
  background: #fff5e6;
  border: 1px solid rgba(242, 107, 29, 0.24);
  color: #8a4f11;
}

.payment-side-panel {
  height: fit-content;
}

.order-summary-row {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.order-summary-total {
  border-bottom: 0;
  padding-top: 1.2rem;
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0;
  background: #0b1119;
  color: #edf2f6;
}

.site-footer h3,
.site-footer h4,
.site-footer p {
  color: #edf2f6;
}

.footer-grid {
  align-items: start;
}

.footer-socials {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #fff;
  font-weight: 700;
  transition: 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.social-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  flex: 0 0 auto;
}

.social-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.footer-brand-logo {
  width: min(100%, 15rem);
  height: auto;
  padding: 0.5rem 0.75rem;
  object-fit: contain;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.18);
}

.footer-brand-logo-inline {
  margin-bottom: 1rem;
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-contact-block p {
  margin: 0;
}

.footer-map-link {
  color: var(--gold);
  font-weight: 700;
}

.about-brand-cover {
  position: relative;
  overflow: hidden;
}

.about-brand-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-brand-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 34, 0.05) 0%, rgba(15, 23, 34, 0.72) 100%);
}

.about-brand-cover-label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(15, 23, 34, 0.72);
  backdrop-filter: blur(10px);
}

.about-brand-cover-label strong,
.about-brand-cover-label span {
  display: block;
  color: #fff;
}

.about-brand-cover-label span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.shopfront-home {
  padding-bottom: 3rem;
}

.shopfront-opening-cover {
  position: relative;
  margin: 0;
  padding: 0;
  background: #05080d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.shopfront-opening-video {
  display: block;
  width: 100%;
  height: min(78vh, 56vw);
  min-height: 24rem;
  object-fit: cover;
  object-position: center center;
  background: #05080d;
}

.shopfront-opening-cta {
  position: absolute;
  left: 50%;
  bottom: clamp(1.5rem, 5vw, 3.75rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(14rem, 18vw, 17.5rem);
  min-height: 4rem;
  padding: 0.9rem 1.75rem;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  background: rgba(4, 8, 15, 0.22);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(3px);
  box-shadow: 0 16px 28px rgba(4, 8, 15, 0.18);
  transform: translateX(-50%);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.shopfront-opening-cta:hover,
.shopfront-opening-cta:focus-visible {
  background: rgba(255, 122, 26, 0.94);
  border-color: rgba(255, 122, 26, 0.94);
  color: #09111f;
  transform: translateX(-50%) translateY(-2px);
}

.shopfront-hero,
.shopfront-category-strip,
.shopfront-bundles,
.shopfront-products,
.shopfront-proof,
.shopfront-trust,
.shopfront-brand-story,
.shopfront-reviews,
.shopfront-guide,
.shopfront-cta,
.shopfront-about-founder {
  padding: 4rem 0;
}

.shopfront-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.1rem;
  margin-bottom: 1.2rem;
}

.shopfront-section-head > div {
  display: grid;
  gap: 0.55rem;
}

.shopfront-section-head h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.08;
  max-width: 10ch;
}

.shopfront-section-head p {
  max-width: 36rem;
  font-size: 0.95rem;
  margin: 0;
}

.shopfront-hero {
  padding-top: 2.8rem;
  background:
    radial-gradient(circle at top right, rgba(242, 107, 29, 0.12), transparent 18%),
    linear-gradient(180deg, #fffefb 0%, #f5efe7 100%);
}

.shopfront-hero-grid,
.shopfront-proof-grid,
.shopfront-brand-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  align-items: center;
}

.shopfront-hero-copy h1 {
  font-size: clamp(2.15rem, 4.2vw, 3.7rem);
  max-width: 7.8ch;
  line-height: 0.98;
}

.shopfront-hero-lead {
  max-width: 34rem;
  font-size: 0.96rem;
  margin: 0;
}

.shopfront-hero-actions,
.shopfront-hero-points,
.shopfront-card-actions,
.shopfront-chip-row,
.shopfront-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.shopfront-hero-actions {
  margin: 1.25rem 0 0.95rem;
}

.shopfront-hero-actions a[href="#bundles"],
.shopfront-bundles {
  display: none !important;
}

.shopfront-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(15, 23, 34, 0.06);
  color: #334155;
  font-weight: 700;
}

.shopfront-hero-points span::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--orange);
}

.shopfront-hero-stage {
  display: grid;
  gap: 1rem;
}

.shopfront-hero-product,
.shopfront-mini-product,
.shopfront-bundle-card,
.shopfront-product-card,
.shopfront-proof-card,
.shopfront-logo-card,
.shopfront-brand-cover-card,
.shopfront-step-card,
.shopfront-cta-panel {
  background: #fff;
  border: 1px solid rgba(17, 25, 38, 0.08);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.shopfront-hero-product {
  overflow: hidden;
}

.shopfront-hero-product img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
}

.shopfront-hero-product-body,
.shopfront-product-body,
.shopfront-proof-card-body,
.shopfront-step-card {
  padding: 1.35rem;
}

.shopfront-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.shopfront-card-meta span:last-child {
  color: var(--orange-dark);
}

.shopfront-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--surface-soft);
  color: #334155;
  font-size: 0.9rem;
  font-weight: 800;
}

.shopfront-card-actions {
  margin-top: 1rem;
}

.shopfront-hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.shopfront-mini-product {
  overflow: hidden;
}

.shopfront-mini-product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.shopfront-mini-product-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.shopfront-mini-product-body strong {
  line-height: 1.25;
}

.shopfront-mini-product-body span {
  color: var(--muted);
}

.shopfront-category-strip {
  padding-top: 1.6rem;
}

.shopfront-category-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.shopfront-category-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.7rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17, 25, 38, 0.08);
  box-shadow: 0 16px 30px rgba(10, 18, 28, 0.07);
  font-size: 0.98rem;
  font-weight: 800;
}

.shopfront-category-pill span {
  white-space: nowrap;
}

.shopfront-category-pill strong {
  min-width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(242, 107, 29, 0.12);
  color: var(--orange-dark);
  font-size: 0.9rem;
}

.shopfront-bundles {
  background: linear-gradient(180deg, #fff 0%, #f8f2ea 100%);
}

.shopfront-bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.shopfront-bundle-card {
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shopfront-bundle-card.is-featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(15, 23, 34, 0.96) 0%, rgba(24, 37, 54, 0.92) 100%);
  color: #fff;
}

.shopfront-bundle-card.is-featured h3,
.shopfront-bundle-card.is-featured p,
.shopfront-bundle-card.is-featured li,
.shopfront-bundle-card.is-featured span {
  color: #fff;
}

.shopfront-bundle-card.is-featured .shopfront-chip {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.shopfront-bundle-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(242, 107, 29, 0.12);
  color: var(--orange-dark);
  font-weight: 800;
}

.shopfront-bundle-card.is-featured .shopfront-bundle-eyebrow {
  background: rgba(242, 107, 29, 0.22);
  color: #fff;
}

.shopfront-bundle-list,
.shopfront-proof-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.65rem;
}

.shopfront-bundle-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-top: auto;
}

.shopfront-bundle-footer span {
  max-width: 28ch;
  color: var(--muted);
  line-height: 1.6;
}

.shopfront-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.05rem;
}

.shopfront-product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.shopfront-product-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.shopfront-product-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  height: 100%;
  padding: 1.15rem;
}

.shopfront-card-footer {
  margin-top: auto;
}

.shopfront-product-body h3 {
  font-size: 1.18rem;
  line-height: 1.2;
  margin: 0;
}

.shopfront-product-card .shopfront-card-meta {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.shopfront-product-card .shopfront-card-actions {
  margin-top: 0;
  width: 100%;
  justify-content: space-between;
  gap: 0.65rem;
}

.shopfront-product-card .shopfront-card-actions .button {
  flex: 1 1 0;
}

.shopfront-proof {
  background: linear-gradient(180deg, #fff 0%, #f4efe8 100%);
}

.shopfront-proof-copy h2,
.shopfront-brand-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  max-width: 12ch;
}

.shopfront-proof-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.shopfront-proof-card {
  overflow: hidden;
}

.shopfront-proof-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.shopfront-proof-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.shopfront-proof-card-body span {
  color: var(--muted);
}

.shopfront-trust {
  padding-top: 2.4rem;
}

.shopfront-logo-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 1020px;
  margin: 0 auto;
}

.shopfront-logo-card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 0;
  min-height: 7.75rem;
}

.shopfront-logo-card img {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: contain;
  padding: 0.2rem;
  background: transparent;
  border-radius: 0;
}

.shopfront-logo-card strong,
.shopfront-logo-card span {
  display: none;
}

.shopfront-trust-head {
  justify-content: center;
  text-align: center;
  margin-bottom: 1.2rem;
}

.shopfront-trust-head h2 {
  max-width: none;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.shopfront-logo-card-more {
  background: linear-gradient(135deg, rgba(15, 23, 34, 0.96) 0%, rgba(24, 37, 54, 0.92) 100%);
  border-color: rgba(15, 23, 34, 0.2);
}

.shopfront-logo-card-more strong {
  display: block;
  color: #fff;
  font: 800 clamp(2rem, 3vw, 2.7rem) / 1 "Outfit", sans-serif;
  letter-spacing: 0.03em;
}

.shopfront-brand-grid {
  align-items: stretch;
}

.shopfront-brand-cover-card {
  overflow: hidden;
  min-height: 100%;
}

.shopfront-brand-cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shopfront-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shopfront-brand-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.shopfront-brand-points article {
  padding: 1rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 1px solid rgba(17, 25, 38, 0.08);
  box-shadow: 0 16px 30px rgba(10, 18, 28, 0.06);
}

.shopfront-brand-points strong {
  display: block;
  margin-bottom: 0.45rem;
}

.shopfront-brand-points span {
  color: var(--muted);
  line-height: 1.6;
}

.shopfront-reviews {
  background: linear-gradient(180deg, #f8f2ea 0%, #fff 100%);
}

.shopfront-guide {
  background: #fff;
}

.shopfront-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.shopfront-step-card {
  min-height: 100%;
}

.shopfront-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(242, 107, 29, 0.12);
  color: var(--orange-dark);
  font: 800 1rem/1 "Outfit", sans-serif;
}

.shopfront-cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.6rem;
  background:
    linear-gradient(135deg, rgba(15, 23, 34, 0.96) 0%, rgba(23, 35, 50, 0.92) 100%);
}

.shopfront-cta-panel h2,
.shopfront-cta-panel p {
  color: #fff;
}

.shopfront-cta-panel p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 44rem;
}

.shopfront-cta-actions {
  justify-content: flex-end;
}

.shopfront-cta-panel .button-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.shopfront-cta-panel .button-outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.shopfront-about-founder {
  background: #fff;
  border-top: 1px solid rgba(17, 25, 38, 0.08);
}

.shopfront-about-founder-wrap {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.shopfront-about-founder-wrap > .eyebrow {
  display: none;
}

.shopfront-about-founder-wrap h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.35rem, 4vw, 3.6rem);
  line-height: 1;
}

.shopfront-about-founder-copy {
  display: grid;
  gap: 1.2rem;
}

.shopfront-about-founder-copy p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.03rem;
  line-height: 1.9;
  color: #4b5563;
}

.shopfront-about-founder-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.shopfront-about-founder-actions .button {
  min-width: 280px;
}

@keyframes campus-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@media (max-width: 1180px) {
  .nav-wrap {
    display: flex;
  }

  .brand-mark-logo {
    width: 11.4rem;
    height: 3.8rem;
  }

  .brand-text strong {
    font-size: 1.04rem;
  }

  .brand-text small {
    max-width: 11rem;
  }
}

@media (max-width: 980px) {
  .hero-home3-grid,
  .about-grid,
  .spotlight-grid,
  .faq-grid-home3,
  .detail-grid,
  .service-grid-home3,
  .metrics-grid-home3,
  .news-grid-home3,
  .card-grid,
  .related-grid,
  .checkout-grid,
  .payment-grid,
  .payment-methods,
  .category-pills,
  .university-grid,
  .trust-band,
  .trust-band-stats,
  .testimonials-shell,
  .benefits-grid,
  .faq-extended-grid,
  .product-grid-home,
  .feature-list-grid,
  .spotlight-cards,
  .shopfront-hero-grid,
  .shopfront-proof-grid,
  .shopfront-brand-grid,
  .shopfront-section-head,
  .shopfront-brand-points,
  .shopfront-step-grid,
  .shopfront-cta-panel {
    grid-template-columns: 1fr;
  }

  .shopfront-bundle-grid,
  .shopfront-product-grid,
  .shopfront-logo-wall,
  .shopfront-category-pills {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-wrap,
  .section-head,
  .topbar-inner,
  .shopfront-section-head,
  .shopfront-cta-panel {
    justify-content: center;
    text-align: center;
  }

  .section-head {
    align-items: center;
  }

  .main-nav,
  .nav-actions,
  .hero-actions,
  .hero-contact-row,
  .testimonial-slider-head,
  .shopfront-hero-actions,
  .shopfront-hero-points,
  .shopfront-card-actions,
  .shopfront-cta-actions {
    justify-content: center;
  }

  .footer-grid {
    justify-content: center;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .about-visual-stack {
    min-height: auto;
  }

  .about-image-small,
  .experience-box,
  .hero-floating-badge {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .trust-band-copy,
  .trust-band-stats,
  .testimonial-slider-meta,
  .testimonials-intro-card,
  .testimonial-slider-panel,
  .shopfront-hero-copy,
  .shopfront-proof-copy,
  .shopfront-brand-copy {
    text-align: center;
  }

  .testimonial-slider-head {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-nav {
    justify-content: center;
  }

  .testimonial-points {
    text-align: left;
  }

  .shopfront-hero-copy h1,
  .shopfront-proof-copy h2,
  .shopfront-brand-copy h2,
  .shopfront-section-head h2 {
    max-width: none;
  }

  .shopfront-bundle-card.is-featured {
    grid-column: span 1;
  }

  .shopfront-bundle-footer,
  .shopfront-card-footer {
    align-items: center;
    text-align: center;
  }

  .hero-copy-column h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1rem, 1200px);
  }

  .shopfront-opening-cover {
    padding-top: 0;
  }

  .shopfront-opening-video {
    height: 44vh;
    min-height: 15rem;
  }

  .shopfront-opening-cta {
    right: auto;
    left: 50%;
    bottom: 1.25rem;
    min-width: min(80vw, 18rem);
    min-height: 3.5rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.92rem;
    transform: translateX(-50%);
  }

  .shopfront-opening-cta:hover,
  .shopfront-opening-cta:focus-visible {
    transform: translateX(-50%) translateY(-2px);
  }

  .brand {
    justify-content: center;
  }

  .site-overlay {
    padding-top: 2.5rem;
  }

  .site-search-dialog {
    flex-direction: column;
    align-items: stretch;
  }

  .site-overlay-close {
    align-self: flex-end;
    color: #ffffff;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-actions {
    grid-template-columns: 1fr 1fr;
  }

  .auth-switcher {
    margin-right: 0;
  }

  .brand-mark-logo {
    width: min(100%, 10.2rem);
    height: 3.45rem;
    padding: 0.18rem 0.36rem;
  }

  .brand-text strong {
    font-size: 0.98rem;
    white-space: normal;
  }

  .brand-text small {
    font-size: 0.76rem;
  }

  .hero-home3 {
    padding: 4.2rem 0 3.2rem;
  }

  .hero-copy-column h1 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  .button,
  .filter-btn {
    width: 100%;
  }

  .library-actions .button,
  .shopfront-card-actions .button,
  .shopfront-hero-actions .button,
  .shopfront-cta-actions .button,
  .shopfront-about-founder-actions .button {
    width: 100%;
  }

  .hero-actions,
  .nav-actions,
  .hero-contact-row {
    width: 100%;
  }

  .hero-phone-card,
  .hero-micro-card {
    width: 100%;
  }

  .shopfront-hero-mini-grid,
  .shopfront-proof-wall,
  .shopfront-bundle-grid,
  .shopfront-product-grid,
  .shopfront-logo-wall,
  .shopfront-category-pills {
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: center;
  }

  .service-card-home3,
  .metric-card-home3,
  .faq-copy-panel,
  .case-panel,
  .section-card,
  .feature-list-card {
    padding: 1.2rem;
  }

  .checkout-summary-panel,
  .payment-panel {
    padding: 1.2rem;
  }

  .checkout-form-card {
    padding: 1.2rem;
  }

  .campus-pill {
    padding: 0.75rem 0.9rem;
  }

  .testimonial-header {
    align-items: flex-start;
  }

  .testimonial-author strong,
  .testimonial-author span,
  .school-card-body {
    word-break: break-word;
  }

  .contact-map-card iframe {
    height: 300px;
  }
}
