:root {
  --brand-cyan: #00c2e8;
  --brand-blue: #0072ff;
  --brand-blue-dark: #005edb;
  --brand-navy: #16315c;
  --brand-ink: #1b3654;
  --brand-muted: #5b6b80;
  --brand-green: #2f9e4a;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --script: "Great Vibes", cursive;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--brand-ink);
  background: #fff;
}

.page-shell {
  min-width: 1200px;
  width: 100%;
}

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

a {
  text-decoration: none;
}

.brand-lockup {
  grid-area: logo;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: #fff;
}

.header-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "logo meta meta"
    "logo nav actions";
  align-items: center;
  column-gap: 1.75rem;
  row-gap: 0.25rem;
  padding: 0.85rem 0 0.95rem;
}

.brand-lockup {
  grid-area: logo;
}

.brand-lockup img {
  height: 96px;
  width: auto;
  max-width: none;
}

.header-meta {
  grid-area: meta;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  padding-bottom: 0.2rem;
}

.header-nav {
  grid-area: nav;
  display: flex !important;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-width: 0;
}

.header-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
  gap: 0.65rem;
}

.meta-link,
.canada-badge {
  color: #1d3557;
  font-size: 0.92rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.meta-link i,
.canada-badge i {
  color: var(--brand-blue);
  font-size: 1rem;
}

.canada-badge i {
  color: #e31c24;
}

.meta-divider {
  width: 1px;
  height: 18px;
  background: #cfd8e3;
}

.nav-center {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 2.5rem;
  width: 100%;
  margin: 0;
}

.nav-center .nav-link {
  color: #2a3f57;
  font-weight: 600;
  padding: 0.2rem 0.15rem;
  position: relative;
  white-space: nowrap;
}

.nav-center .nav-link:hover,
.nav-center .nav-link.active {
  color: var(--brand-navy);
}

.nav-center .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.15rem;
  right: 0.15rem;
  bottom: -2px;
  height: 2px;
  background: var(--brand-blue);
}

.btn.btn-brand {
  --bs-btn-bg: var(--brand-blue);
  --bs-btn-border-color: var(--brand-blue);
  --bs-btn-hover-bg: var(--brand-blue-dark);
  --bs-btn-hover-border-color: var(--brand-blue-dark);
  --bs-btn-active-bg: var(--brand-blue-dark);
  --bs-btn-active-border-color: var(--brand-blue-dark);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-color: #fff;
  --bs-btn-padding-x: 1.35rem;
  --bs-btn-padding-y: 0.58rem;
  --bs-btn-font-weight: 600;
  --bs-btn-font-size: 0.94rem;
  --bs-btn-border-radius: 999px;
  --bs-btn-border-width: 0;
  --bs-btn-box-shadow: none;
  --bs-btn-focus-box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
  box-shadow: none;
}

.btn.btn-brand:hover,
.btn.btn-brand:focus,
.btn.btn-brand:active {
  color: #fff;
  box-shadow: none;
}

.btn.btn-brand i {
  font-size: 0.88em;
  font-weight: 400;
}

.btn-arrow {
  display: inline-block;
  font-size: 1.45em;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
}

.btn-arrow::before {
  content: "\2192";
}

.search-btn {
  width: 38px;
  height: 38px;
  color: #24364d;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.btn-brand-lg {
  --bs-btn-padding-x: 1.7rem;
  --bs-btn-padding-y: 0.78rem;
  --bs-btn-font-size: 1rem;
  min-height: 48px;
}

.btn.btn-ghost {
  --bs-btn-box-shadow: none;
  --bs-btn-focus-box-shadow: none;
  color: #fff;
  border: 1.5px solid #fff;
  background: transparent;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  padding: 0.72rem 1.35rem 0.72rem 1.05rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: none;
  line-height: 1.15;
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 760px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(6, 20, 40, 0.62) 0%, rgba(6, 20, 40, 0.22) 48%, rgba(6, 20, 40, 0.08) 100%),
    url("../images/banner.png") center/cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 3.6rem 0 4.4rem;
}

.eyebrow {
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
}

.eyebrow span {
  color: #7dff6b;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.7rem);
  font-weight: 800;
  line-height: 0.98;
  margin: 0.7rem 0 1.15rem;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  background-image: linear-gradient(90deg, #00c6f7 0%, #00d4c8 55%, #2ee06a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-bar {
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 999px;
  margin-bottom: 1.15rem;
  background: linear-gradient(90deg, #178a2c 0%, #1aa24a 36%, #1598a0 58%, #1570c8 78%, #1a5ad8 100%);
  box-shadow: 0 8px 18px rgba(0, 20, 40, 0.28);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  padding: 0.55rem 1.05rem 0.55rem 0.95rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.trust-copy {
  background: transparent;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  padding: 0.42rem 1.05rem;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-lead {
  max-width: 560px;
  color: #e7eef6;
  font-size: 1.02rem;
  margin-bottom: 1.45rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.play-dot {
  width: 28px;
  height: 28px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  flex-shrink: 0;
}

.hero-panel {
  position: relative;
  padding: 1.1rem 0 2.4rem 3.6rem;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -2rem 0 -2rem -12%;
  background: linear-gradient(115deg, transparent 0%, rgba(8, 22, 44, 0.55) 26%, rgba(8, 22, 44, 0.62) 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.panel-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #fff;
  padding: 0.42rem 0;
  font-weight: 600;
}

.panel-item:hover {
  color: var(--brand-cyan);
}

.panel-item i {
  width: 22px;
  color: #dbe7f3;
  margin-top: 0.2rem;
}

.panel-kicker {
  position: relative;
  z-index: 1;
  margin-top: 1.3rem;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #d5e4f1;
}

.script-mark {
  position: relative;
  z-index: 1;
  margin-top: 1.6rem;
  font-family: var(--script);
  font-size: 2.55rem;
  color: #fff;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.products-section {
  padding: 2.4rem 0 1.4rem;
  background: #fff;
}

.product-card {
  background: #fff;
  height: 100%;
}

.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.product-card .card-body {
  padding: 1rem 0.2rem 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--brand-navy);
}

.product-card p {
  color: var(--brand-muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.45;
  flex: 1;
}

.card-go {
  display: none;
}

.values-section {
  padding: 1.6rem 0 2rem;
  background: #fff;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.4rem 1.1rem;
  border-right: 1px solid #d7e2ee;
}

.value-item:last-child {
  border-right: 0;
}

.value-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
}

.value-item h3 {
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0 0 0.1rem;
  color: var(--brand-navy);
}

.value-item p {
  color: var(--brand-muted);
  margin: 0;
  font-size: 0.88rem;
}

.cta-band {
  color: #fff;
  min-height: 250px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(4, 12, 28, 0.55) 0%, rgba(4, 12, 28, 0.18) 50%, rgba(4, 12, 28, 0.05) 100%),
    url("../images/contact.png") right center/cover no-repeat;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr auto auto;
  align-items: center;
  gap: 2rem;
}

.cta-band .eyebrow {
  color: #c9d8e8;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  margin: 0.45rem 0 0.7rem;
  color: #fff;
}

.cta-band p {
  max-width: 460px;
  color: #d5e0ec;
  margin: 0;
}

.cta-side {
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: right;
  line-height: 1.7;
  position: relative;
  padding-bottom: 0.55rem;
}

.cta-side::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--brand-blue);
}

.site-footer {
  background: #071221;
  color: #c5d2e0;
  padding: 1.15rem 0;
  font-size: 0.92rem;
  text-align: center;
}

.modal-content {
  border: 0;
  border-radius: 16px;
}

.ratio video {
  object-fit: cover;
}

.navbar-toggler {
  display: none !important;
}

@media (max-width: 1199.98px) {
  html {
    zoom: calc(100vw / 1200);
  }
}
