:root {
  --primary-yellow: #FFC400;
  --light-yellow: #FFD54F;
  --accent-green: #4CAF50;
  --dark-green: #388E3C;
  --dark-black: #111111;
  --medium-black: #222;
  --text-gray: #666;
  --light-gray: #f8f9fa
}
* {
  box-sizing: border-box
}
body {
  font-family: 'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
  line-height: 1.6;
  color: var(--dark-black);
  margin: 0;
  padding: 0
}
.utility-bar {
  background: var(--dark-black);
  color: #fff;
  padding: 8px 0;
  font-size: 14px
}
.utility-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}
.utility-left {
  display: flex;
  align-items: center;
  gap: 15px
}
.province-selector-small {
  background: var(--medium-black);
  color: #fff;
  border: 1px solid #444;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px
}
.lang-toggle {
  background: 0 0;
  border: 1px solid #444;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer
}
.phone-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500
}
.phone-link:hover {
  color: var(--primary-yellow)
}
.utility-cta {
  color: var(--primary-yellow);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px
}
.utility-cta:hover {
  color: var(--light-yellow)
}
.small-banner {
  background: var(--primary-yellow);
  color: var(--dark-black);
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
  font-size: 16px
}
.main-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.1)
}
.logo {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px
}
.logo:hover {
  color: var(--dark-black)
}
.logo-icon {
  color: var(--primary-yellow)
}
.navbar-nav .nav-link {
  color: var(--dark-black);
  font-weight: 500;
  padding: 8px 16px;
  transition: color .3s ease
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-yellow)
}
.btn-list-business {
  background: var(--primary-yellow);
  border: 2px solid var(--primary-yellow);
  color: var(--dark-black);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .3s ease
}
.btn-list-business:hover {
  background: var(--light-yellow);
  color: var(--dark-black);
  transform: translateY(-1px)
}
.hero-section-howitworks {
  background: linear-gradient(135deg,var(--light-gray) 0,#fff 100%);
  text-align: center
}
.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark-black);
  margin-bottom: 20px;
  line-height: 1.2
}
.hero-subtitle {
  font-size: 22px;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}
.breadcrumb {
  background: 0 0;
  padding: 0;
  margin-bottom: 0
}
.breadcrumb-item {
  color: var(--text-gray)
}
.breadcrumb-item.active {
  color: var(--dark-black);
  font-weight: 500
}
.breadcrumb-item a {
  color: var(--text-gray);
  text-decoration: none
}
.breadcrumb-item a:hover {
  color: var(--primary-yellow)
}
.btn-back-home {
  background: var(--dark-black);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
  margin-top: 30px
}
.btn-back-home:hover {
  background: var(--medium-black);
  color: #fff;
  transform: translateY(-2px)
}
.process-section {
  padding: 100px 0;
  background: #fff
}
.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark-black)
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px
}
.process-step {
  padding: 60px 0;
  position: relative
}
.process-step:nth-child(even) {
  background: var(--light-gray)
}
.step-content {
  display: flex;
  align-items: center;
  gap: 60px
}
.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,var(--primary-yellow),var(--light-yellow));
  color: var(--dark-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 2
}
.step-connector {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom,var(--primary-yellow),var(--accent-green));
  z-index: 1
}
.step-connector::after {
  content: '';
  position: absolute;
  top: 80px;
  left: -2px;
  width: 8px;
  height: 8px;
  background: var(--primary-yellow);
  border-radius: 50%
}
.step-info h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-black);
  margin-bottom: 16px
}
.step-description {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px
}
.step-features {
  list-style: none;
  padding: 0;
  margin: 0
}
.step-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--dark-black)
}
.step-features i {
  color: var(--accent-green);
  font-size: 16px;
  width: 20px;
  text-align: center
}
.step-cta {
  margin-top: 24px
}
.btn-step-primary {
  background: var(--primary-yellow);
  border: 2px solid var(--primary-yellow);
  color: var(--dark-black);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
  font-size: 16px
}
.btn-step-primary:hover {
  background: var(--light-yellow);
  transform: translateY(-2px);
  color: var(--dark-black)
}
.timeline-section {
  padding: 100px 0;
  background: var(--light-gray)
}
.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative
}
.timeline {
  position: relative;
  padding: 20px 0
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom,var(--primary-yellow),var(--accent-green));
  transform: translateX(-50%)
}
.timeline-item {
  position: relative;
  margin: 60px 0;
  width: 50%
}
.timeline-item:nth-child(odd) {
  left: 0
}
.timeline-item:nth-child(even) {
  left: 50%
}
.timeline-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,.1);
  position: relative;
  border-left: 4px solid var(--primary-yellow)
}
.timeline-item:nth-child(even) .timeline-content {
  border-left: none;
  border-right: 4px solid var(--primary-yellow);
  margin-right: -20px
}
.timeline-marker {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--primary-yellow);
  border: 4px solid #fff;
  border-radius: 50%;
  z-index: 2
}
.timeline-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,var(--primary-yellow),var(--light-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--dark-black);
  margin: 0 auto 20px;
  position: relative;
  z-index: 3
}
.timeline-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-black);
  margin-bottom: 12px;
  text-align: center
}
.timeline-description {
  font-size: 15px;
  color: var(--text-gray);
  text-align: center;
  line-height: 1.6
}
.faq-section {
  padding: 100px 0;
  background: #fff
}
.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
  padding-bottom: 20px
}
.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}
.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  transition: color .3s ease
}
.faq-question:hover {
  color: var(--primary-yellow)
}
.faq-toggle {
  background: 0 0;
  border: none;
  color: var(--text-gray);
  font-size: 18px;
  cursor: pointer;
  transition: transform .3s ease
}
.faq-toggle.active {
  transform: rotate(180deg);
  color: var(--primary-yellow)
}
.faq-answer {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease,padding .3s ease;
  padding: 0 0 0 20px
}
.faq-answer.active {
  max-height: 200px;
  padding: 20px 0 0 20px
}
.comparison-section {
  padding: 100px 0;
  background: var(--light-gray)
}
.comparison-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,.1);
  margin-top: 40px
}
.comparison-table thead th {
  background: var(--primary-yellow);
  color: var(--dark-black);
  font-weight: 600;
  padding: 20px;
  text-align: center;
  border: none;
  font-size: 16px
}
.comparison-table tbody td {
  padding: 20px;
  vertical-align: middle;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px
}
.comparison-table tbody tr:last-child td {
  border-bottom: none
}
.feature-icon {
  color: var(--accent-green);
  font-size: 18px;
  margin-right: 8px
}
.feature-check {
  color: var(--accent-green);
  font-size: 20px
}
.feature-cross {
  color: #ccc;
  font-size: 20px
}
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg,var(--dark-black) 0,var(--medium-black) 100%);
  color: #fff;
  text-align: center
}
.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff
}
.cta-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(255,255,255,.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto
}
.btn-cta-large {
  background: var(--primary-yellow);
  border: 2px solid var(--primary-yellow);
  color: var(--dark-black);
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  transition: all .3s ease;
  text-decoration: none;
  display: inline-block
}
.btn-cta-large:hover {
  background: var(--light-yellow);
  transform: translateY(-2px);
  color: var(--dark-black)
}
.footer {
  background: var(--medium-black);
  color: #fff;
  padding: 60px 0 30px
}
.footer-section h5 {
  color: var(--primary-yellow);
  font-weight: 600;
  margin-bottom: 20px
}
.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px
}
.footer-tagline {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 20px
}
.footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color .3s ease
}
.footer-link:hover {
  color: var(--primary-yellow)
}
.provinces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(60px,1fr));
  gap: 8px
}
.province-link {
  color: #ccc;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
  transition: all .3s ease
}
.province-link:hover {
  background: var(--primary-yellow);
  color: var(--dark-black)
}
.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #999;
  font-size: 14px
}
@media (max-width:992px) {
  .hero-title {
    font-size: 36px
  }
  .hero-subtitle {
    font-size: 18px
  }
  .section-title {
    font-size: 28px
  }
  .step-content {
    flex-direction: column;
    gap: 30px;
    text-align: center
  }
  .step-number {
    order: -1
  }
  .timeline::before {
    left: 20px
  }
  .timeline-item {
    width: fit-content;
    left: 0!important;
    margin-left: 40px
  }
  .timeline-item:nth-child(even) .timeline-content {
    margin-right: 0;
    border-left: 4px solid var(--primary-yellow);
    border-right: none
  }
  .timeline-marker {
    left: 20px;
    transform: none
  }
  .cta-title {
    font-size: 28px
  }
}
@media (max-width:768px) {
  .utility-controls {
    flex-direction: column;
    gap: 10px
  }
  .hero-section-howitworks {
    padding: 80px 0 60px
  }
  .process-step {
    padding: 40px 0
  }
  .step-info h3 {
    font-size: 24px
  }
  .comparison-table {
    font-size: 14px
  }
  .comparison-table tbody td,
  .comparison-table thead th {
    padding: 12px 8px
  }
  .btn-cta-large {
    padding: 14px 30px;
    font-size: 16px
  }
}
.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
}
@media (prefers-contrast:high) {
  :root {
    --primary-yellow: #FFD700;
    --dark-black: #000;
    --medium-black: #333
  }
}