/* ==========================================================================
   CALLVEA - MODERN SAAS STYLESHEET
   ========================================================================== */

/* --- CSS Reset & Global Tokens --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #007af5;
  --primary-hover: #0066d0;
  --primary-light: #e6f2fd;
  --navy-dark: #021a36;
  --navy-header: #031e3c;
  --navy-footer: #02162b;
  --text-dark: #062d5e;
  --text-body: #315a85;
  --text-muted: #5e84ab;
  --border-light: #d8e8f8;
  --card-bg: #ffffff;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-pill: 9999px;
  --shadow-card: 0 16px 40px rgba(2, 26, 54, 0.22);
  --shadow-subtle: 0 4px 16px rgba(6, 45, 94, 0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* --- Common UI Elements --- */
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.eyebrow-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #5bb3ff;
  background: rgba(0, 122, 245, 0.16);
  border: 1px solid rgba(91, 179, 255, 0.3);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-size: 14px;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  padding: 13px 26px;
  box-shadow: 0 6px 20px rgba(0, 122, 245, 0.28);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 122, 245, 0.35);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 13px 24px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 10px 20px;
  font-size: 13px;
}

.btn-outline-dark:hover {
  background: var(--primary-light);
}

.btn-small {
  padding: 10px 18px;
  font-size: 13px;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   Site Header & Navbar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  white-space: nowrap;
}

.maple-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(230, 32, 32, 0.4));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1.1;
}

.brand-sub {
  font-size: 10.5px;
  color: #a2c4e6;
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: #b8d4f2;
}

.nav a:not(.nav-pill):hover {
  color: #ffffff;
}

.nav-pill {
  background: #0d3a68;
  color: #ffffff !important;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
}

.nav-pill:hover {
  background: #114a84;
}

.support-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  white-space: nowrap;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.phone-svg {
  color: #4ca5ff;
}

.support-text {
  display: flex;
  flex-direction: column;
}

.support-text b {
  font-size: 13.5px;
  letter-spacing: 0.2px;
}

.support-text span {
  font-size: 11px;
  color: #92b7df;
}

.btn-header {
  background: var(--primary);
  color: #ffffff;
  padding: 10px 18px;
  font-size: 13px;
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--primary-hover);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
  color: #ffffff;
  min-height: 560px;
  display: flex;
  align-items: center;
}

/* Hero Background Photo with Headset Agent */
.hero-bg-photo {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18%;
  width: 58%;
  background-size: cover;
  background-position: center top;
  z-index: 1;
  opacity: 0.95;
  filter: contrast(1.04);
}

/* Rich Gradient Overlay to blend agent photo seamlessly */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #021a36 0%,
    #021a36 34%,
    rgba(2, 26, 54, 0.82) 48%,
    rgba(2, 26, 54, 0.2) 65%,
    rgba(2, 26, 54, 0.75) 88%,
    #021a36 100%
  );
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  padding: 48px 0;
}

.hero-copy {
  max-width: 600px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #ffffff;
}

.hero-highlight {
  color: #00a2ff;
}

.hero-lead {
  font-size: 16px;
  line-height: 1.55;
  color: #dceaf8;
  margin-bottom: 26px;
  max-width: 530px;
}

/* Trust Badges */
.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item:last-child {
  border-right: none;
  padding-right: 0;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 122, 245, 0.18);
  border: 1.5px solid rgba(0, 162, 255, 0.4);
  color: #00a2ff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.trust-text strong {
  font-size: 13px;
  color: #ffffff;
}

.trust-text small {
  font-size: 11.5px;
  color: #a8caee;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right Side Demo Card */
.demo-card-wrap {
  display: flex;
  justify-content: flex-end;
}

.demo-card {
  width: 100%;
  max-width: 410px;
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 26px 24px;
}

.demo-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #04254c;
  margin-bottom: 4px;
}

.demo-card-sub {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.35;
}

/* Demo Form Inputs */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 13px;
  color: #5c8ab4;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-icon.textarea-icon {
  top: 13px;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1px solid #c7ddf2;
  border-radius: 8px;
  font-size: 13px;
  color: #062d5e;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.demo-form input::placeholder,
.demo-form textarea::placeholder {
  color: #6d93b8;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 122, 245, 0.15);
}

.select-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-chevron {
  position: absolute;
  right: 14px;
  color: #5c8ab4;
  pointer-events: none;
}

.demo-form textarea {
  height: 66px;
  resize: none;
}

/* Form Submit Button with Spinner */
.btn-spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.spinner-svg {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Form Success State */
.form-success-state {
  text-align: center;
  padding: 20px 10px;
}

.success-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-light);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.success-title {
  font-size: 20px;
  font-weight: 800;
  color: #04254c;
  margin-bottom: 8px;
}

.success-msg {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 18px;
}

.success-lead-summary {
  background: #f4f8fd;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-dark);
  text-align: left;
  margin-bottom: 18px;
  border: 1px solid #dce8f5;
}

/* ==========================================================================
   Features / Solutions Strip
   ========================================================================== */
.features {
  background: #ffffff;
  padding: 30px 0;
  border-bottom: 1px solid #e2edf8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.feature-item {
  padding: 0 24px;
  border-right: 1px solid #d6e8f8;
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e9f3fd;
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.feature-item h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: #053b7c;
  margin-bottom: 6px;
  line-height: 1.25;
}

.feature-item p {
  font-size: 12.5px;
  line-height: 1.45;
  color: #2b6197;
}

/* ==========================================================================
   Why Callvea Section & Comparison Table
   ========================================================================== */
.why {
  background: #f1f7fc;
  padding: 65px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.65fr;
  gap: 40px;
  align-items: center;
}

.why-copy h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  color: #04254c;
  margin: 6px 0 16px;
}

.why-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #3b658e;
  margin-bottom: 24px;
}

/* Comparison Table */
.table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid #c9dfed;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(6, 45, 94, 0.05);
  padding: 1px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 12.5px;
}

.comparison-table th,
.comparison-table td {
  padding: 11px 12px;
  border-bottom: 1px solid #e3edf7;
  text-align: center;
  vertical-align: middle;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table th {
  background: #f7fbfe;
  color: #062d5e;
  font-weight: 700;
  font-size: 11.5px;
  line-height: 1.3;
}

.comparison-table th.th-feature,
.comparison-table td.td-feature {
  text-align: left;
  font-weight: 600;
  color: #062d5e;
  padding-left: 18px;
}

/* CALLVEA Highlighted Column */
.comparison-table th.th-callvea {
  background: #084d94;
  color: #ffffff;
  padding: 12px 14px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.callvea-header-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.maple-icon-table {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
}

.comparison-table td.td-callvea {
  background: #f2f8fe;
  border-left: 1.5px solid #bddcf6;
  border-right: 1.5px solid #bddcf6;
}

.comparison-table tr:last-child td.td-callvea {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* Status Badges */
.badge-yes {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #06965e;
  font-weight: 700;
}

.badge-no {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #e02424;
  font-weight: 700;
}

.badge-limited {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #b26c04;
  font-weight: 600;
}

.circle-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.check-circle {
  background: #06965e;
  color: #ffffff;
}

.cross-circle {
  background: #e02424;
  color: #ffffff;
}

.half-circle {
  background: #f59e0b;
  box-shadow: inset 8px 0 0 #fde68a;
}

.badge-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
}

.pill-high {
  color: #06965e;
}

.pill-med {
  color: #b26c04;
}

.fineprint {
  font-size: 10.5px;
  color: #7b9cbe;
  padding: 10px 18px;
  background: #fbfdff;
  border-top: 1px solid #e5f0f9;
}

/* ==========================================================================
   Industries Grid
   ========================================================================== */
.industries {
  padding: 60px 0;
  background: #ffffff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 800;
  color: #04254c;
  margin: 4px 0 8px;
}

.section-head p {
  color: #3b658e;
  font-size: 14.5px;
  max-width: 680px;
}

.view-all-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.view-all-link:hover {
  text-decoration: underline;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.industry-grid .industry-card:nth-child(n+7) {
  /* Row 2 layout */
  grid-column: span 1;
}

.industry-card {
  background: #ffffff;
  border: 1px solid #d4e5f5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(6, 45, 94, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(6, 45, 94, 0.1);
}

.industry-thumb {
  height: 98px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.industry-meta {
  padding: 8px 10px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  position: relative;
}

.industry-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #007af5;
  color: #ffffff;
  display: grid;
  place-items: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 122, 245, 0.3);
  margin-top: -20px;
  flex-shrink: 0;
  z-index: 2;
}

.industry-meta h3 {
  font-size: 12px;
  font-weight: 700;
  color: #006adc;
  line-height: 1.2;
}

/* ==========================================================================
   Client Success Stories / Testimonials
   ========================================================================== */
.stories {
  background: #042750;
  color: #ffffff;
  padding: 60px 0;
}

.stories-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
}

.eyebrow-light {
  color: #5bb3ff;
}

.stories-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 4px;
}

.view-more-link {
  color: #70beff;
  font-size: 13.5px;
  font-weight: 700;
}

.view-more-link:hover {
  text-decoration: underline;
  color: #ffffff;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.quote-text {
  font-size: 13.5px;
  line-height: 1.45;
  color: #08529e;
  font-weight: 500;
  margin-bottom: 14px;
  flex-grow: 1;
}

.stars-row {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.client-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #ebf2fa;
  padding-top: 12px;
}

.client-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #d0e4f7;
}

.client-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.client-name {
  font-size: 13px;
  font-weight: 700;
  color: #007af5;
}

.client-role {
  font-size: 11.5px;
  color: #658bb2;
}

/* ==========================================================================
   Canadian Skyline Banner
   ========================================================================== */
.canadian-section {
  position: relative;
  overflow: hidden;
  background: #031e3b;
  color: #ffffff;
  min-height: 100px;
  display: flex;
  align-items: center;
}

.skyline-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 60%;
  opacity: 0.85;
  z-index: 1;
}

.skyline-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 30, 59, 0.95) 0%,
    rgba(3, 30, 59, 0.8) 40%,
    rgba(3, 30, 59, 0.7) 100%
  );
  z-index: 2;
}

.canadian-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
}

.canadian-brand-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.maple-icon-large {
  filter: drop-shadow(0 2px 6px rgba(230, 32, 32, 0.5));
  flex-shrink: 0;
}

.canadian-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  display: block;
}

.canadian-sub {
  font-size: 12px;
  color: #bad5f2;
}

.city-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.city-pin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-footer);
  color: #ffffff;
  padding: 30px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
  gap: 24px;
  align-items: center;
}

.footer-brand-col .brand {
  margin-bottom: 8px;
}

.copyright {
  font-size: 11.5px;
  color: #799ec4;
}

.footer-links-col {
  display: flex;
  gap: 20px;
}

.footer-links-col a {
  font-size: 12.5px;
  color: #bad3ed;
}

.footer-links-col a:hover {
  color: #ffffff;
}

.footer-support-col {
  display: flex;
  flex-direction: column;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: #ffffff;
}

.footer-support-col small {
  font-size: 11px;
  color: #799ec4;
  margin-top: 2px;
}

.footer-social-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  color: #a4c7ec;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: #ffffff;
}

.footer-flag-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: #a4c7ec;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .feature-item {
    border-right: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .footer-social-col {
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .nav, .support-badge, .btn-header {
    display: none;
  }
  .menu-btn {
    display: block;
    margin-left: auto;
  }
  .nav.active {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--navy-header);
    flex-direction: column;
    padding: 20px 5%;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero-container {
    grid-template-columns: 1fr;
    padding: 35px 0;
  }
  .hero-bg-photo {
    display: none; /* In mobile view, keep hero uncluttered */
  }
  .hero-title {
    font-size: 38px;
  }
  .demo-card-wrap {
    justify-content: center;
  }
  .quotes-grid {
    grid-template-columns: 1fr;
  }
  .canadian-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 580px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .trust-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .trust-item {
    border-right: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
