/* =====================================================================
   CANADIAN OATS — style.css
   Design direction: Modern Prairie Editorial
   Fonts: Cormorant Garamond (display) · Inter (body)
   ===================================================================== */


/* =====================================================================
   DESIGN TOKENS
   ===================================================================== */
:root {
  /* Palette */
  --cream:        #F5EFE0;  /* main background                        */
  --off-white:    #FDFAF4;  /* card / section surface                 */
  --forest:       #1A2E1A;  /* primary dark — header, footer, process */
  --forest-mid:   #2A4A2A;  /* hover tint on forest                   */
  --amber:        #C8892A;  /* accent — CTAs, labels, icons           */
  --amber-dark:   #A87020;  /* amber hover                            */
  --stone:        #7A6E5F;  /* secondary body text                    */
  --border:       #E5DDD0;  /* subtle borders                         */
  --error-color:  #C0392B;
  --success-color:#2A6B2A;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Type scale */
  --text-xs:   0.75rem;    /*  12px */
  --text-sm:   0.875rem;   /*  14px */
  --text-base: 1rem;       /*  16px */
  --text-md:   1.125rem;   /*  18px */
  --text-lg:   1.375rem;   /*  22px */
  --text-xl:   1.75rem;    /*  28px */
  --text-2xl:  2.5rem;     /*  40px */
  --text-3xl:  3.5rem;     /*  56px */
  --text-4xl:  5rem;       /*  80px */

  /* Layout */
  --container-max: 1100px;
  --container-pad: clamp(1.25rem, 4vw, 2rem);
  --section-gap:   clamp(4rem, 8vw, 7rem);

  /* Motion */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}


/* =====================================================================
   RESET
   ===================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--forest);
  background: var(--cream);
  overflow-x: hidden;
}

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

a      { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }
ul     { list-style: none; }


/* =====================================================================
   UTILITIES
   ===================================================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Visually hidden but accessible to screen readers */
.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;
}

/* Scroll-reveal: elements start hidden and fade in via JS IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  /* --reveal-delay is set per-element by JS for staggered grids */
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}


/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    transform var(--duration) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

/* Filled amber — primary CTA */
.btn-primary {
  background: var(--amber);
  color: var(--off-white);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
}

/* Ghost — for dark or image backgrounds */
.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(253, 250, 244, 0.7);
}
.btn-ghost:hover {
  background: var(--off-white);
  color: var(--forest);
  border-color: var(--off-white);
  transform: translateY(-2px);
}

/* Outline — for amber backgrounds */
.btn-outline {
  background: transparent;
  color: var(--off-white);
  border-color: var(--off-white);
}
.btn-outline:hover {
  background: var(--off-white);
  color: var(--amber);
  transform: translateY(-2px);
}


/* =====================================================================
   HEADER & NAVIGATION
   ===================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--forest);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
}

/* Desktop nav links — hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--duration) var(--ease);
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--amber);
}

/* Contact nav link styled as a bordered pill */
.nav-links .nav-cta {
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--amber);
  border-radius: 2px;
  color: var(--amber);
}
.nav-links .nav-cta:hover {
  background: var(--amber);
  color: var(--off-white);
}

/* Animated 3-line hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg);  }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0;                                 }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-in menu panel */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--forest);
  z-index: 99;
  padding: 2rem var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--duration) var(--ease);
}
.mobile-menu a:hover { color: var(--amber); }

/* Dim overlay behind mobile menu */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}
.overlay.show { opacity: 1; pointer-events: auto; }

body.no-scroll { overflow: hidden; }


/* =====================================================================
   SHARED SECTION TYPOGRAPHY
   ===================================================================== */
.section-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 4vw, var(--text-3xl));
  font-weight: 400;
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: var(--text-md);
  color: var(--stone);
  line-height: 1.75;
  max-width: 560px;
}


/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Banner image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/banner.jpg') center / cover no-repeat;
  z-index: 0;
}
/* Forest-green gradient overlay — keeps text legible without pure black */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(26, 46, 26, 0.82) 0%,
    rgba(26, 46, 26, 0.50) 55%,
    rgba(26, 46, 26, 0.18) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 660px;
  animation: heroFadeIn 1s var(--ease) 0.1s both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none;             }
}

.hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 6.5vw, var(--text-4xl));
  font-weight: 300;
  line-height: 1.06;
  color: var(--off-white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: clamp(var(--text-base), 2vw, var(--text-md));
  color: rgba(253, 250, 244, 0.78);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Animated scroll arrow at base of hero */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(253,250,244,0.45);
  animation: scrollBounce 2.2s ease-in-out infinite;
  transition: color var(--duration) var(--ease);
}
.scroll-indicator:hover { color: var(--amber); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);  }
  50%       { transform: translateX(-50%) translateY(7px); }
}


/* =====================================================================
   THE DIFFERENCE
   ===================================================================== */
.difference {
  background: var(--off-white);
  padding: var(--section-gap) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.difference-header {
  margin-bottom: 3.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pillar-icon {
  width: 42px;
  height: 42px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--forest);
}

.pillar p {
  color: var(--stone);
  font-size: var(--text-base);
  line-height: 1.7;
}


/* =====================================================================
   PRODUCT SHOWCASE
   ===================================================================== */
.product {
  padding: var(--section-gap) 0;
}

.product-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.product-image-wrap img {
  width: 300px;
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(26, 46, 26, 0.14);
}

.product-details {
  max-width: 520px;
}

.product-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 4vw, var(--text-3xl));
  font-weight: 400;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.product-desc {
  color: var(--stone);
  font-size: var(--text-md);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* Checklist-style feature list */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.25rem;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-base);
  color: var(--forest);
  line-height: 1.5;
}
/* Amber circle checkmark built from SVG data URI */
.product-features li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background-color: var(--amber);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='%23FDFAF4' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

.product-buy {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.product-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
}
.product-price .weight {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--stone);
}


/* =====================================================================
   PROCESS — From Field to Bowl
   ===================================================================== */
.process {
  background: var(--forest);
  padding: var(--section-gap) 0;
}

.process .section-label  { color: var(--amber);   }
.process .section-heading { color: var(--off-white); }

.process-header {
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.process-step:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.step-num {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-3xl));
  font-weight: 300;
  color: var(--amber);
  opacity: 0.55;
  line-height: 1;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--off-white);
  line-height: 1.2;
}

.process-step p {
  color: rgba(253, 250, 244, 0.62);
  line-height: 1.75;
  max-width: 440px;
}


/* =====================================================================
   OUR STORY
   ===================================================================== */
.story {
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
}
/* Reuse the oat texture at low opacity for warmth */
.story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/oat-texture-bg.png') repeat;
  background-size: 300px auto;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}
.story > .container { position: relative; z-index: 1; }

.story-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.story-quote {
  border-left: 3px solid var(--amber);
  padding-left: 1.75rem;
}
.story-quote p {
  font-family: var(--font-display);
  font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
  line-height: 1.35;
  margin-top: 0.75rem;
}

.story-body p {
  color: var(--stone);
  line-height: 1.82;
  margin-bottom: 1rem;
}
.story-body p:last-child { margin-bottom: 0; }


/* =====================================================================
   WHOLESALE / TRADE
   ===================================================================== */
.wholesale {
  background: var(--amber);
  padding: 5rem 0;
}

.wholesale-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.wholesale .section-label  { color: rgba(253,250,244,0.65); }
.wholesale .section-heading { color: var(--off-white); margin-bottom: 0.75rem; }

.wholesale-sub {
  color: rgba(253, 250, 244, 0.85);
  font-size: var(--text-md);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.wholesale-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 2.25rem;
}
.wholesale-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--off-white);
  font-size: var(--text-sm);
  font-weight: 500;
}
.wholesale-points li::before {
  content: '→';
  color: rgba(253,250,244,0.55);
  font-style: normal;
}


/* =====================================================================
   CONTACT FORM
   ===================================================================== */
.contact {
  padding: var(--section-gap) 0;
  background: var(--off-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-intro .section-heading { margin-bottom: 1rem; }

.contact-intro p {
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.contact-intro p:last-child { margin-bottom: 0; }

.response-note {
  font-size: var(--text-sm) !important;
  color: var(--stone);
  font-style: italic;
}

/* Form layout */
form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Side-by-side name + email on wider screens */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--forest);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  width: 100%;
  transition:
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

/* Custom select caret */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5l5 5 5-5' stroke='%237A6E5F' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 18px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200, 137, 42, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 110, 95, 0.5);
}

/* Error state on individual fields */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--error-color);
}

.field-error {
  font-size: var(--text-xs);
  color: var(--error-color);
  min-height: 1em;
  display: block;
}

.form-group textarea {
  resize: vertical;
  min-height: 136px;
  line-height: 1.6;
}

.btn-submit {
  align-self: flex-start;
  min-width: 168px;
}
.btn-submit.loading {
  pointer-events: none;
  opacity: 0.65;
}

/* Form-level feedback banners */
.form-feedback {
  padding: 1rem 1.25rem;
  border-radius: 3px;
  font-size: var(--text-sm);
  line-height: 1.65;
  display: none; /* shown via JS by adding .visible */
}
.form-feedback.visible { display: block; }

.form-feedback.success {
  background: #EAF5EA;
  border: 1px solid #A3CBA3;
  color: var(--success-color);
}
.form-feedback.error {
  background: #FBF0EF;
  border: 1px solid #E0A9A5;
  color: var(--error-color);
}
.form-feedback.error a {
  color: var(--error-color);
  text-decoration: underline;
}


/* =====================================================================
   FOOTER
   ===================================================================== */
footer {
  background: var(--forest);
  padding: 3.5rem 0 1.75rem;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 0.85rem;
  opacity: 0.8;
}
.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(253,250,244,0.5);
  line-height: 1.65;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-nav-col h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253,250,244,0.35);
  margin-bottom: 0.85rem;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav-col a {
  font-size: var(--text-sm);
  color: rgba(253,250,244,0.6);
  transition: color var(--duration) var(--ease);
}
.footer-nav-col a:hover { color: var(--amber); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(253,250,244,0.3);
}


/* =====================================================================
   RESPONSIVE — mobile-first breakpoints
   ===================================================================== */

/* 540px — form row goes side-by-side */
@media (min-width: 540px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* 768px — desktop nav, two-column layouts */
@media (min-width: 768px) {
  .nav-links  { display: flex; }
  .hamburger  { display: none; }

  .product-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 5rem;
  }

  .product-image-wrap {
    flex-shrink: 0;
  }

  .story-layout {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .wholesale-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
  }
  .wholesale-content { flex: 1; min-width: 280px; }

  .contact-layout {
    grid-template-columns: 1fr 1.65fr;
    gap: 5rem;
    align-items: start;
  }

  .footer-main {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: row;
    gap: 4rem;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* 1024px — 4-column pillars, 3-column horizontal process */
@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step {
    flex-direction: column;
    padding: 2.5rem 2.5rem 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: none !important;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .process-step:last-child {
    border-right: none;
    padding-right: 0;
  }
}