* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  color: #2B2F33;
  background: #FAF9F6;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

/* CONTAINER */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 414px) {
  .container {
    padding: 0 15px;
  }
}

/* ============ SECTIONS PARENT CLASS ============ */
.section {
  position: relative;
  width: 100%;
}

.section--pad {
  padding: 60px 0;
}

@media (max-width: 768px) {
  .section--pad {
    padding: 50px 0;
  }
}

@media (max-width: 414px) {
  .section--pad {
    padding: 40px 0;
  }
}

/* BUTTONS (shared with homepage) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn svg {
  width: 16px;
  height: 16px;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn--navy {
  background: #0B2341;
  color: #fff;
}
.btn--navy:hover {
  background: #132c4f;
  box-shadow: 0 10px 24px rgba(11, 35, 65, .25);
  transform: translateY(-2px);
}
.btn--gold {
  background: #C6A25A;
  color: #0B2341;
}
.btn--gold:hover {
  background: #d4b06e;
  box-shadow: 0 10px 24px rgba(198, 162, 90, .35);
  transform: translateY(-2px);
}
.btn--outline-gold {
  background: transparent;
  color: #C6A25A;
  border-color: #C6A25A;
}
.btn--outline-gold:hover {
  background: #C6A25A;
  color: #0B2341;
  transform: translateY(-2px);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}
.btn--outline-white:hover {
  background: #fff;
  color: #0B2341;
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--sm {
  padding: 13px 22px;
  font-size: 12.5px;
}

/* HERO */
.about-hero {
  background:#f3f2f2;
  text-align: center;
  padding-top: 60px;
  overflow: hidden;
}
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #C6A25A;
  margin-bottom: 22px;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: #C6A25A;
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.2;
  color: #0B2341;
  max-width: 900px;
  margin: 0 auto 26px;
}
.about-hero h1 .accent {
  color: #1E3A73;
}
.about-hero p {
  color: #6B7280;
  font-size: 16.5px;
  max-width: 640px;
  margin: 0 auto 36px;
}
.about-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.trust-bar {
  display: flex;
  align-items: left;  
  gap:75px;
  flex-wrap: wrap;
  color: #0B2341;
  font-weight: 600;
  font-size:12pt;
  margin-top:-15pt;
  margin-bottom:21pt;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap:25px;
}
.check-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0B2341;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-dot svg {
  width: 12px;
  height: 12px;
}

@media (max-width: 900px) {
  .trust-bar {
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding-top: 50px;
  }
}

@media (max-width: 414px) {
  .about-hero {
    padding-top: 40px;
  }
}

/* MORE THAN EQUIPMENT */
.more-equip {
  background: #FAF9F6;
}
.more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.more-copy .rule {
  width: 46px;
  height: 2px;
  background: #C6A25A;
  margin-bottom: 22px;
}
.more-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size:30pt;
  color: #0B2341;
  line-height: 1.28;
  margin-bottom: 24px;
}
.more-copy h2 .accent {
  display: block;
  color: #C6A25A;
  font-style: italic;
}
.more-copy p {
  color: #6B7280;
  font-size:17px;
  margin-bottom:35px;
  max-width:525px;
  text-align:justify;
}
.why-card {
  background: #0B2341;
  border-radius: 20px;
  padding: 0px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(11, 35, 65, .35);
}
.why-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(198, 162, 90, .25);
  border-radius: 50%;
}
.why-ribbon {
  width:45px;
  height:55px;
  background: #C6A25A;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top:10px;
  color: #0B2341;
  margin-bottom:2px;
  position: relative;
  z-index: 1;
}
.why-ribbon svg {
  width:25px;
  height:25px;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size:40px;
  color: #fff;
  line-height: 1.3;
  padding-top:15pt;
  margin-bottom:28px;
  position: relative;
  z-index: 1;
}
.why-card h3 .accent {
  color: #C6A25A;
  display: block;
}
.why-list {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  font-weight: 500;
  font-size:18px;
}
.why-list li:last-child {
  border-bottom: none;
}
.why-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #C6A25A;
  color: #0B2341;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-check svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 900px) {
  .more-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 414px) {
  .more-copy .rule {
    margin-bottom: 10px;
  }
  .more-grid {
    gap: 30px;
  }
  .why-card {
    padding: 30px;
  }
}

/* BUILT AROUND SUCCESS */
.success-section {
  background: #f3f2f2;
}
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}
.section-head .rule-top {
  width: 46px;
  height: 2px;
  background: #C6A25A;
  margin: 0 auto 20px;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 38px);
  color: #0B2341;
  margin-bottom: 14px;
}
.section-head p {
  color: #6B7280;
  font-size: 15.5px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  background: #fff;
  border: 1px solid #E6E8EB;
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 44px -20px rgba(11, 35, 65, .18);
}
.feature-icon-circle {
  width:70px;
  height:70px;
  border-radius: 50%;
  background: #F5F0E8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B2341;
  margin-bottom:22px;
}
.feature-icon-circle svg {
  width:35px;
  height:35px;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size:28px;
  color: #0B2341;
  line-height:1.3;
  margin-bottom: 14px;
}
.feature-rule {
  width: 34px;
  height: 2px;
  background: #C6A25A;
  margin-bottom: 16px;
}
.feature-card p {
  color: #6B7280;
  font-size:17px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 414px) {
  .section-head {
    margin: 0 auto 30px;
  }
  .feature-card {
    padding: 30px;
  }
  .feature-grid {
    gap: 15px;
  }
}

/* HOW IT WORKS */
.how-it-works {
  background: #faf9f6;
}
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width:210px;
  transition: transform .25s ease;
}
.step:hover {
  transform: translateY(-6px);
}
.step-icon {
  width:65px;
  height:65px;
  border-radius: 50%;
  background: #0B2341;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom:18px;
  transition: box-shadow .25s ease;
}
.step:hover .step-icon {
  box-shadow: 0 14px 26px -10px rgba(11, 35, 65, .4);
}
.step-icon svg {
  width:32px;
  height:32px;
}
.step-num {
  color: #C6A25A;
  font-family:serif;
  font-weight: 700;
  font-size:32px;
  margin-bottom: 8px;
}
.step h4 {
  font-size:21px;
  font-weight:600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #0B2341;
  margin-bottom: 10px;
}
.step p {
  color: #6B7280;
  font-size:17px;
  line-height: 1.6;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  width: 70px;
  flex-shrink: 0;
}
.step-arrow .arrow-line {
  width: 100%;
  border-top: 1px dashed #C6A25A;
  position: relative;
}
.step-arrow .arrow-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:32px;
  height:32px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid #C6A25A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A25A;
}
.step-arrow .arrow-dot svg {
  width:18px;
  height:18px;
}

@media (max-width: 1100px) {
  .steps-row {
    flex-wrap: wrap;
    gap: 30px;
  }
  .step-arrow {
    display: none;
  }
  .step {
    width: 45%;
  }
}

@media (max-width: 600px) {
  .step {
    width: 100%;
  }
}

/* TRUSTED ACROSS CANADA */
.trusted-banner {
  background: #0B2341;
  border-radius: 20px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(11, 35, 65, .35);
}
.trusted-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #C6A25A;
}
.trusted-left h3 {
  font-family: 'Playfair Display', serif;
  font-size:30pt;
  color: #fff;
  margin-bottom: 10px;
}
.trusted-left p {
  color:#ffffff;
  font-size:17px;
  max-width: 340px;
  margin-bottom: 24px;
}
.trusted-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.trusted-stats {
  display: flex;
  align-items: center;
  gap:60px;
  flex-wrap: wrap;
}
.trusted-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  color: #fff;
  min-width:120px;
}
.trusted-stat .stars {
  display: flex;
  gap: 2px;
  color: #C6A25A;
}
.trusted-stat .stars svg {
  width:36px;
  height:36px;
}
.trusted-stat-icon {
  color: #C6A25A;
}
.trusted-stat-icon svg {
  width: 36px;
  height: 36px;
}
.trusted-stat span.label {
  font-size:17px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  line-height: 1.4;
}

@media (max-width: 1000px) {
  .trusted-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .trusted-stats {
    gap: 28px;
  }
}

@media (max-width: 414px) {
  .trusted-banner {
    padding: 30px;
  }
}

/* FINAL CTA */
.final-cta {
  background: #F5F0E8;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 40px);
  color: #0B2341;
  line-height: 1.3;
  margin-bottom: 16px;
}
.final-cta h2 .accent {
  color: #C6A25A;
}
.final-cta p {
  color: #6B7280;
  font-size: 15.5px;
  max-width: 560px;
  margin: 0 auto 34px;
}
.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}