:root {
  --bg: #071216;
  --bg-2: #0b1720;
  --panel: #0c1a22;
  --panel-2: #10222d;
  --line: rgba(45, 92, 95, 0.55);
  --line-2: rgba(66, 143, 132, 0.38);
  --text: #eff7f5;
  --muted: #a8bec0;
  --green: #1de6a0;
  --green-2: #30c26d;
  --blue: #13a7f5;
  --orange: #ff7a45;
  --gold: #ffc65c;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --container-wide: 1460px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(24, 190, 143, 0.08), transparent 26%),
    radial-gradient(circle at 95% 8%, rgba(19, 167, 245, 0.08), transparent 18%),
    linear-gradient(180deg, #071216 0%, #09141b 100%);
  color: var(--text);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
main { overflow: clip; }
.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.container-wide { width: min(var(--container-wide), calc(100% - 32px)); }
.section { padding: 26px 0; }
.compact-section { padding: 14px 0 10px; }
.eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #c4f9dc;
  background: rgba(29, 230, 160, 0.08);
  border: 1px solid rgba(29, 230, 160, 0.22);
}
.flash-area { padding-top: 10px; }
.alert {
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
}
.alert-success { background: rgba(29, 230, 160, 0.08); color: #d8ffea; }
.alert-error { background: rgba(255, 122, 69, 0.08); color: #ffe2d7; }
.icon { width: 20px; height: 20px; flex: 0 0 20px; }
.icon.tiny { width: 16px; height: 16px; flex-basis: 16px; }
.site-shell-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(6, 17, 21, 0.82);
  border-bottom: 1px solid rgba(35, 74, 76, 0.5);
}
.topbar {
  border-bottom: 1px solid rgba(35, 74, 76, 0.45);
  color: var(--muted);
  font-size: 13px;
}
.topbar-inner, .topbar-left, .topbar-right {
  display: flex; align-items: center; gap: 18px;
}
.topbar-inner { justify-content: space-between; min-height: 38px; }
.topbar-left span, .topbar-right span, .topbar-right a {
  display: inline-flex; align-items: center; gap: 7px;
}
.topbar-right a {
  width: 22px; height: 22px; justify-content: center;
  border-radius: 999px; border: 1px solid transparent;
}
.topbar-right a:hover { border-color: rgba(29,230,160,.35); color: var(--green); }
.lang-switch { padding-left: 10px; border-left: 1px solid rgba(65, 96, 98, 0.5); }
.mainbar { padding: 12px 0; }
.nav-wrap {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark-img { width: 54px; height: 54px; }
.brand-copy { display: inline-flex; flex-direction: column; }
.brand-copy strong { font-size: 18px; line-height: 1.05; }
.brand-copy small { font-size: 12px; color: var(--muted); }
.nav-search {
  display: flex; align-items: center; gap: 12px;
  height: 48px; padding: 0 14px;
  border-radius: 14px;
  background: rgba(6, 15, 18, 0.72);
  border: 1px solid rgba(55, 101, 101, 0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.nav-search input {
  width: 100%; border: 0; outline: 0; background: transparent; color: var(--text);
}
.main-nav {
  display: flex; align-items: center; justify-content: flex-end; gap: 14px;
}
.main-nav > a {
  color: #f1f6f5; opacity: .94; font-weight: 600; font-size: 15px;
}
.main-nav > a:hover { color: var(--green); }
.nav-toggle {
  display: none; background: transparent; color: white; border: 1px solid var(--line);
  border-radius: 12px; width: 44px; height: 44px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 18px; border-radius: 14px; border: 1px solid transparent;
  font-weight: 700; cursor: pointer; transition: .18s ease; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #35d989, #27bf71);
  color: #082218;
  box-shadow: 0 16px 34px rgba(34, 183, 113, 0.22);
}
.btn-cta {
  background: linear-gradient(180deg, #ff8b59, #ff7646);
  color: white;
  box-shadow: 0 16px 34px rgba(255, 122, 69, 0.2);
}
.btn-line, .btn-soft {
  border-color: rgba(73, 139, 124, 0.48);
  color: #e9fbf7;
  background: rgba(7, 19, 23, 0.6);
}
.link-accent {
  color: var(--green); font-weight: 700; white-space: nowrap;
}
.section-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 14px;
}
.section-bar h2, .section-head h2 { margin: 0; font-size: 21px; }
.section-bar h2::before, .section-head h2::before {
  content: ""; display: inline-block; width: 4px; height: 18px; border-radius: 4px;
  background: var(--green); margin-right: 10px; vertical-align: -2px;
}
.section-head { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.section-head p { margin: 6px 0 0; color: var(--muted); }
.home-hero-v3 {
  position: relative;
  padding: 22px 0 0;
}
.hero-backdrop {
  width: min(var(--container-wide), calc(100% - 32px));
  height: 470px;
  margin: 0 auto;
  border-radius: 0 0 18px 18px;
  background:
    linear-gradient(90deg, rgba(6,17,21,.88) 0%, rgba(6,17,21,.6) 34%, rgba(6,17,21,.16) 60%, rgba(6,17,21,.22) 100%),
    url('../illustrations/hero-panorama.svg') center/cover no-repeat;
  border: 1px solid rgba(49, 90, 92, 0.4);
  box-shadow: var(--shadow);
}
.hero-content-wrap {
  position: relative;
  margin-top: -440px;
  min-height: 440px;
  display: flex; align-items: flex-start;
  padding: 28px 16px 0;
}
.hero-copy-card {
  max-width: 980px;
  width: 100%;
}
.hero-copy-card h1 {
  margin: 0 0 10px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: .95;
  letter-spacing: -0.03em;
  max-width: 640px;
}
.hero-copy-card h1 span { color: var(--green); }
.hero-copy-card p {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.45;
  color: #e0ecec;
  max-width: 560px;
}
.hero-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 14px;
}
.tab {
  display: inline-flex; align-items: center; gap: 8px;
  height: 42px; padding: 0 16px; border-radius: 14px;
  border: 1px solid rgba(79, 114, 117, 0.5);
  background: rgba(7, 18, 22, 0.68); color: #ecf7f6; font-weight: 700; font-size: 14px;
}
.tab.active { background: rgba(29,230,160,.12); border-color: rgba(29,230,160,.4); color: #d3ffea; }
.home-search-bar {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.5fr auto;
  gap: 14px;
  align-items: end;
  padding: 14px;
  border-radius: 18px;
  background: rgba(6, 17, 21, 0.8);
  border: 1px solid rgba(52, 100, 104, 0.6);
  box-shadow: var(--shadow);
}
.field-box label, .field label, .search-page-hero label {
  display: block; margin: 0 0 8px; font-size: 13px; font-weight: 700; color: #cbe6e7;
}
.field-control {
  display: flex; align-items: center; gap: 10px;
  min-height: 54px; padding: 0 14px;
  border-radius: 14px;
  background: rgba(7, 17, 21, 0.85);
  border: 1px solid rgba(58, 105, 108, .58);
}
.field-control select, .field-control input, .input, textarea {
  width: 100%; background: transparent; border: 0; outline: 0; color: var(--text);
}
.field-control select option { color: #0b1113; }
.search-action .btn { width: 100%; min-width: 160px; }
.hero-leaf-corner {
  position: absolute; right: 18px; top: 62px; width: 260px; opacity: .75; pointer-events: none;
}
.category-tile-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 14px;
}
.category-tile {
  min-height: 110px; padding: 20px 14px;
  border-radius: 18px;
  border: 1px solid rgba(56, 102, 103, 0.52);
  background: linear-gradient(180deg, rgba(10, 24, 31, .92), rgba(10, 20, 25, .92));
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 12px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.category-tile:hover { border-color: rgba(29,230,160,.35); transform: translateY(-2px); }
.category-tile .icon { color: var(--green); width: 28px; height: 28px; }
.category-tile span { font-weight: 700; line-height: 1.2; }
.featured-row-v3 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.featured-card-v3 {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(56, 102, 103, 0.5);
  background: linear-gradient(180deg, rgba(11, 25, 32, .98), rgba(7, 19, 23, .98));
  box-shadow: var(--shadow);
}
.featured-cover { position: relative; aspect-ratio: 16/7; overflow: hidden; }
.featured-cover img { width: 100%; height: 100%; object-fit: cover; }
.verify-chip {
  position: absolute; top: 10px; right: 10px; display: inline-flex; align-items: center; gap: 5px;
  height: 26px; padding: 0 10px; border-radius: 999px;
  background: rgba(15, 58, 46, 0.95); color: #caffea; font-size: 12px; font-weight: 700;
  border: 1px solid rgba(29,230,160,.35);
}
.featured-body {
  display: grid; grid-template-columns: 58px 1fr auto; gap: 12px;
  align-items: center; padding: 12px;
}
.featured-logo {
  width: 58px; height: 58px; padding: 4px;
  border-radius: 999px; background: rgba(236, 247, 245, 0.96);
  display: grid; place-items: center; overflow: hidden;
}
.featured-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 999px; }
.featured-copy h3 { margin: 0 0 5px; font-size: 19px; }
.featured-meta { margin: 0 0 6px; color: var(--muted); font-size: 14px; }
.featured-rating { color: #fbe387; font-weight: 700; font-size: 14px; }
.featured-rating span { color: var(--gold); }
.mini-btn {
  height: 40px; min-width: 95px; padding: 0 12px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(78, 120, 120, 0.55);
  background: rgba(7, 16, 20, .85);
  font-weight: 700; font-size: 14px;
}
.benefit-strip-v3 {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(53, 100, 101, 0.54);
  background: linear-gradient(180deg, rgba(10, 23, 29, .95), rgba(8, 18, 22, .95));
}
.benefit-item {
  display: flex; gap: 14px; padding: 18px 20px; align-items: flex-start;
  border-right: 1px solid rgba(53, 100, 101, 0.32);
}
.benefit-item:last-child { border-right: 0; }
.benefit-item .icon { color: var(--green); width: 24px; height: 24px; margin-top: 2px; }
.benefit-item strong { display: block; margin-bottom: 4px; }
.benefit-item span { color: var(--muted); font-size: 14px; line-height: 1.4; }
.simple-cta-panel {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 24px 26px; border-radius: 18px;
  border: 1px solid rgba(57, 106, 108, 0.54);
  background: linear-gradient(90deg, rgba(9, 22, 28, .95), rgba(11, 23, 29, .95));
  box-shadow: var(--shadow);
}
.simple-cta-panel h2 { margin: 0 0 6px; font-size: 28px; }
.simple-cta-panel p { margin: 0; color: var(--muted); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.site-footer {
  margin-top: 18px;
  padding-top: 26px;
  border-top: 1px solid rgba(42, 78, 80, 0.5);
  background: rgba(6, 14, 18, 0.55);
}
.footer-grid-v3 {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 24px;
}
.site-footer strong { display: block; margin-bottom: 12px; font-size: 16px; }
.site-footer a, .site-footer p, .newsletter-label {
  color: var(--muted); display: block; margin-bottom: 8px; line-height: 1.45;
}
.footer-brand-block p { max-width: 290px; }
.footer-socials { display: flex; gap: 8px; margin-bottom: 14px; }
.footer-socials a {
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(63, 102, 104, .45);
  margin-bottom: 0;
}
.newsletter-form {
  display: flex; gap: 8px; align-items: center;
  height: 46px; padding: 0 8px 0 12px;
  border-radius: 14px; border: 1px solid rgba(63, 102, 104, .45); background: rgba(8, 18, 22, .72);
}
.newsletter-form input {
  flex: 1; border: 0; outline: 0; background: transparent; color: var(--text);
}
.newsletter-form button {
  width: 34px; height: 34px; border-radius: 10px; border: 0; cursor: pointer;
  background: rgba(29,230,160,.12); color: var(--green);
}
.footer-bottom {
  margin-top: 20px; padding: 18px 0 24px; text-align: center; color: var(--muted);
  border-top: 1px solid rgba(42, 78, 80, 0.42);
}
.plans-hero-v3 { padding: 28px 0 10px; }
.plans-hero-copy { margin-bottom: 22px; }
.plans-hero-copy h1 { font-size: clamp(34px, 5vw, 60px); margin: 10px 0 10px; }
.plans-hero-copy p { max-width: 680px; margin: 0; color: var(--muted); font-size: 18px; }
.plans-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.plan-box-v3 {
  position: relative;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(57, 106, 108, 0.55);
  background: linear-gradient(180deg, rgba(10, 23, 29, .97), rgba(8, 18, 22, .97));
  box-shadow: var(--shadow);
}
.plan-box-v3.featured { border-color: rgba(29,230,160,.54); box-shadow: 0 20px 44px rgba(29,230,160,.1); }
.plan-top-tag {
  position: absolute; top: -12px; left: 24px; height: 28px; padding: 0 12px; border-radius: 999px;
  background: var(--green); color: #072116; font-weight: 800; display: inline-flex; align-items: center;
}
.plan-box-v3 h2 { margin: 8px 0; font-size: 28px; }
.plan-headline { margin: 0 0 14px; color: #c9dddf; }
.price-main { font-size: 40px; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 6px; }
.price-main small { font-size: 16px; color: var(--muted); font-weight: 600; }
.price-sub { color: var(--muted); margin-bottom: 16px; }
.plan-features-v3 { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.plan-features-v3 li { display: flex; align-items: flex-start; gap: 10px; color: #deeeef; }
.plan-features-v3 .icon { color: var(--green); margin-top: 2px; }
.addons-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px;
}
.addon-card-v3 {
  padding: 22px; border-radius: 18px; border: 1px solid rgba(57,106,108,.55);
  background: linear-gradient(180deg, rgba(10, 23, 29, .97), rgba(8, 18, 22, .97));
}
.addon-icon { color: var(--gold); margin-bottom: 10px; }
.addon-card-v3 h3 { margin: 0 0 8px; }
.addon-card-v3 p { color: var(--muted); margin: 0 0 12px; }
.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .search-panel, .auth-card, .empty-state, .dashboard-panel, .table-wrap {
  background: linear-gradient(180deg, rgba(10, 23, 29, .95), rgba(8, 18, 22, .95));
  border: 1px solid rgba(57, 106, 108, 0.52);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.search-panel { padding: 16px; }
.search-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}
.listing-grid-cards.search-results-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.rich-listing-card { overflow: hidden; }
.listing-cover { position: relative; aspect-ratio: 16 / 10; display: block; overflow: hidden; }
.listing-cover img { width: 100%; height: 100%; object-fit: cover; }
.listing-card-badges {
  position: absolute; inset: 10px 10px auto 10px; display: flex; justify-content: space-between; gap: 8px;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px; height: 28px; padding: 0 11px;
  border-radius: 999px; font-size: 12px; font-weight: 800;
}
.badge-ok { background: rgba(20, 74, 56, 0.9); color: #cfffeb; border: 1px solid rgba(29,230,160,.32); }
.badge-hot { background: rgba(82, 40, 25, 0.9); color: #ffd7ca; border: 1px solid rgba(255,122,69,.34); }
.listing-content { padding: 14px; position: relative; }
.listing-logo {
  width: 70px; height: 70px; border-radius: 999px; padding: 6px;
  display: grid; place-items: center; background: rgba(244,250,250,.95); overflow: hidden;
}
.listing-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 999px; }
.listing-row {
  display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: start; margin-top: 12px;
}
.listing-row h3 { margin: 0 0 6px; font-size: 21px; }
.listing-meta { display: inline-flex; gap: 6px; color: var(--muted); margin: 0; align-items: center; flex-wrap: wrap; }
.rating-pill {
  height: 32px; padding: 0 10px; border-radius: 999px; display: inline-flex; align-items: center;
  background: rgba(255,198,92,.12); color: #ffe18d; font-weight: 800; white-space: nowrap;
}
.listing-summary { color: #d7e7e8; line-height: 1.5; margin: 12px 0 14px; }
.contact-pill {
  min-height: 42px; padding: 0 14px; border-radius: 12px; display: inline-flex; gap: 8px; align-items: center; justify-content: center;
  border: 1px solid rgba(57, 106, 108, 0.55); background: rgba(7, 17, 21, 0.78); font-weight: 700;
}
.province-grid { margin-top: 8px; }
.province-card, .addon-card { padding: 18px; }
.province-card .icon { color: var(--green); margin-bottom: 10px; }
.muted { color: var(--muted); }
.empty-state { padding: 24px; color: var(--muted); }
.page-search .section-head h1, .page-listing h1 { margin: 0; }
.auth-card, .dashboard-panel, .table-wrap { padding: 20px; }
.form-stack, .form-grid { display: grid; gap: 14px; }
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.input, textarea, select {
  min-height: 52px; padding: 0 14px; border-radius: 14px;
  border: 1px solid rgba(57, 106, 108, 0.55); background: rgba(7, 17, 21, 0.8); color: var(--text);
}
textarea { min-height: 140px; padding-top: 14px; resize: vertical; }
.table-wrap table { width: 100%; border-collapse: collapse; }
.table-wrap th, .table-wrap td { padding: 12px 10px; border-bottom: 1px solid rgba(57,106,108,.26); text-align: left; }
.home-bottom-cta { padding-bottom: 18px; }

@media (max-width: 1280px) {
  .category-tile-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .featured-row-v3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-strip-v3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-item:nth-child(2) { border-right: 0; }
  .benefit-item:nth-child(-n+2) { border-bottom: 1px solid rgba(53, 100, 101, 0.32); }
  .footer-grid-v3 { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (max-width: 1100px) {
  .nav-wrap { grid-template-columns: auto 1fr auto; }
  .nav-search { display: none; }
  .main-nav {
    position: absolute; top: calc(100% + 10px); right: 16px; min-width: 290px;
    padding: 14px; border-radius: 16px; background: rgba(8,18,22,.98); border: 1px solid var(--line);
    box-shadow: var(--shadow); display: none; flex-direction: column; align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 8px 6px; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .topbar-left { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .home-search-bar { grid-template-columns: 1fr 1fr; }
  .field-box-keyword { grid-column: span 2; }
  .search-action { grid-column: span 2; }
  .plans-grid-v3, .addons-grid-v3, .listing-grid-cards.search-results-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .container, .container-wide { width: min(var(--container-wide), calc(100% - 20px)); }
  .brand-copy small { display: none; }
  .hero-backdrop { height: 540px; }
  .hero-content-wrap { margin-top: -520px; min-height: 520px; padding-inline: 10px; }
  .hero-copy-card h1 { max-width: 100%; font-size: clamp(34px, 10vw, 54px); }
  .hero-copy-card p { font-size: 17px; }
  .home-search-bar, .search-grid, .form-grid.two { grid-template-columns: 1fr; }
  .field-box-keyword, .search-action { grid-column: auto; }
  .category-tile-grid, .featured-row-v3, .benefit-strip-v3, .grid-4, .grid-3 { grid-template-columns: 1fr 1fr; }
  .simple-cta-panel, .section-bar, .topbar-right, .featured-body { flex-wrap: wrap; }
  .featured-body { grid-template-columns: 58px 1fr; }
  .mini-btn { grid-column: 2; justify-self: start; }
  .footer-grid-v3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .topbar-right { gap: 10px; font-size: 12px; }
  .topbar-right span:first-child { display: none; }
  .brand-mark-img { width: 48px; height: 48px; }
  .brand-copy strong { font-size: 17px; }
  .hero-backdrop { height: 620px; width: calc(100% - 20px); }
  .hero-content-wrap { margin-top: -598px; min-height: 598px; }
  .hero-leaf-corner { width: 160px; top: 100px; }
  .category-tile-grid, .featured-row-v3, .benefit-strip-v3, .grid-4, .grid-3, .footer-grid-v3 { grid-template-columns: 1fr; }
  .benefit-item { border-right: 0; border-bottom: 1px solid rgba(53, 100, 101, 0.32); }
  .benefit-item:last-child { border-bottom: 0; }
  .simple-cta-panel { padding: 20px; }
  .simple-cta-panel h2 { font-size: 22px; }
}
