/* ==========================================================================
   Zenco Canada Services Inc. — base stylesheet
   Elevated, editorial take on the "Industrial Blueprint" design system.
   ========================================================================== */

:root {
  --color-bg: #f7f9fb;
  --color-bg-alt: #f0f3f8;
  --color-surface: #ffffff;
  --color-border: #e2e8f0;
  --color-border-strong: #c3c6d3;

  --color-ink: #0f172a;
  --color-text: #434751;
  --color-text-muted: #737782;

  --color-accent: #2d58a7;
  --color-accent-dark: #08408e;
  --color-accent-tint: #eef2f9;

  --color-footer-bg: #0a1428;
  --color-footer-text: #b9c3d6;

  --font-display: "Hanken Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 1px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 24px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 30px 60px -24px rgba(15, 23, 42, 0.28);

  --container: 1200px;
  --gutter: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: 112px 0;
}

.section--tight {
  padding: 72px 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--gutter);
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.section-head p {
  max-width: 560px;
  color: var(--color-text);
  font-size: 17px;
}

.page-hero {
  padding-top: 64px;
}

.page-hero h1 {
  font-size: 44px;
  margin-bottom: 18px;
  max-width: 760px;
}

.page-hero p {
  max-width: 620px;
  font-size: 18px;
  color: var(--color-text);
}

/* ---------- Image frames ---------- */

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-accent-tint);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame--large {
  aspect-ratio: 4 / 3;
}

.image-frame--card {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  box-shadow: none;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 10px 20px -8px rgba(45, 88, 167, 0.55);
}

.btn--primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px -8px rgba(8, 64, 142, 0.55);
}

.btn--outline {
  border-color: var(--color-border-strong);
  color: var(--color-ink);
  background: #fff;
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}

.btn--on-dark {
  background: #fff;
  color: var(--color-accent-dark);
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.35);
}

.btn--on-dark:hover {
  background: var(--color-accent-tint);
  transform: translateY(-1px);
}

.btn--outline-on-dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn--outline-on-dark:hover {
  border-color: #fff;
  transform: translateY(-1px);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--color-border);
  box-shadow: 0 4px 20px -12px rgba(15, 23, 42, 0.15);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 38px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.main-nav a:hover {
  color: var(--color-accent);
}

.main-nav a.is-active {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}

/* ---------- Hero ---------- */

.hero {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.hero h1 {
  font-size: 54px;
  letter-spacing: -0.02em;
  margin: 22px 0 26px;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}

.hero p {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 40px;
}

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

.hero-visual {
  position: relative;
}

.hero-visual .image-frame {
  aspect-ratio: 4 / 3;
}

.hero-visual .grid-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.85);
  border-left: 2px solid rgba(255, 255, 255, 0.85);
  top: 18px;
  left: 18px;
  z-index: 2;
}

.hero-stat {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  background: rgba(10, 20, 40, 0.62);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  color: #fff;
  z-index: 2;
}

.hero-stat .cols {
  display: flex;
  gap: 32px;
}

.hero-stat p.label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.hero-stat .value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
}

/* ---------- Credibility bar ---------- */

.stat-bar {
  background: var(--color-ink);
  color: #fff;
}

.stat-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
  padding-top: 36px;
  padding-bottom: 36px;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.stat-item svg {
  width: 22px;
  height: 22px;
  color: #9fb7e6;
  flex-shrink: 0;
  margin-top: 2px;
}

.stat-item p.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

.stat-item p.value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

/* ---------- Cards / verticals grid ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter);
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-body {
  padding: 32px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
}

.card-top svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.card-top .index {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-border-strong);
}

.card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.card-body > p {
  margin-bottom: 20px;
}

.check-list {
  margin-bottom: 24px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--color-text);
}

.check-list svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.card-link:hover {
  text-decoration: underline;
}

.card-link svg {
  width: 14px;
  height: 14px;
}

/* ---------- Feature rows (About values, Advantage list) ---------- */

.feature-row {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--color-border);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--color-accent-tint);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}

.feature-row h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

/* ---------- Split section (advantage / about) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.quote-block {
  position: relative;
  margin-top: 40px;
  padding: 32px 36px;
  background: var(--color-ink);
  color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.quote-block::before {
  content: "\201C";
  position: absolute;
  top: -18px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 110px;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.quote-block p:first-child {
  position: relative;
  font-size: 17px;
  font-style: italic;
  margin-bottom: 16px;
  color: #e6e9f0;
}

.quote-block p:last-child {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9fb7e6;
}

.panel-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.cta-band > * {
  position: relative;
}

.cta-band h2 {
  color: #fff;
  font-size: 34px;
  margin-bottom: 16px;
}

.cta-band p {
  max-width: 620px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Service detail sections (IT / Supplies pages) ---------- */

.service-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block .index {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--color-border-strong);
}

.service-block h3 {
  font-size: 25px;
  margin-bottom: 14px;
}

.service-block p {
  margin-bottom: 18px;
  max-width: 680px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 9px 15px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-text);
}

/* ---------- Global offices grid (Contact page) ---------- */

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
}

.office-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.office-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.office-card .office-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.office-card h4 {
  font-size: 17px;
}

.office-card .hq-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-tint);
  padding: 4px 9px;
  border-radius: 999px;
}

.office-card address {
  font-style: normal;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 16px;
  min-height: 60px;
}

.office-card .office-contacts {
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.office-card .office-contacts span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
}

.office-card .office-contacts svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent);
}

/* ---------- Contact page ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.info-list {
  margin-top: 28px;
}

.info-list li {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.info-list li:first-child {
  padding-top: 0;
}

.info-list svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-list p.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.info-list p.value {
  font-size: 15px;
  color: var(--color-ink);
  font-weight: 500;
}

.notice-box {
  margin-top: 32px;
  padding: 24px;
  background: var(--color-accent-tint);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--color-text);
}

.notice-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-ink);
}

form.card {
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font: inherit;
  color: var(--color-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-tint);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field-error {
  margin-top: 6px;
  font-size: 12px;
  color: #b3261e;
}

.field-hint {
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #b3261e;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 14px;
}

.alert--success {
  background: #eaf5ec;
  border: 1px solid #bfe3c4;
  color: #1e4620;
}

.alert--error {
  background: #fdeceb;
  border: 1px solid #f3c1bc;
  color: #7a241c;
}

.turnstile-widget {
  margin-bottom: 20px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: var(--gutter);
  padding: 80px 0 44px;
}

.footer-logo-img {
  filter: brightness(0) invert(1);
}

.footer-grid p {
  max-width: 300px;
  margin: 22px 0 24px;
  font-size: 14px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.footer-grid h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}

.footer-grid ul li {
  margin-bottom: 13px;
  font-size: 14px;
}

.footer-grid ul li a:hover {
  color: #fff;
}

.footer-grid address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
}

.footer-grid address .accent {
  color: #9fb7e6;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .badges {
  display: flex;
  gap: 20px;
}

.footer-bottom .badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom svg {
  width: 13px;
  height: 13px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1140px) {
  .main-nav,
  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px var(--gutter) 28px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
  }

  .site-header.nav-open .header-actions .btn {
    display: inline-flex;
  }
}

@media (max-width: 1140px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .stat-bar .container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .stat-item {
    border-right: none;
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  form.card,
  .card-body {
    padding: 26px 22px;
  }

  .cta-band {
    padding: 56px 28px;
  }
}
