/* ==================================================
   SWIFT BIN BUDDY - INDUSTRIAL MODERN CSS STYLE
   Responsive, Flexbox-Only, Brand Compliant (NO CSS Grid)
   ================================================== */

/* -------------------------------
   0. CSS RESET & NORMALIZE
-------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  min-height: 100vh;
  background: #23292C; /* Industrial dark base */
  color: #EAF6F9;
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  background: none;
  border: none;
}
a {
  color: #F4B942;
  text-decoration: none;
  transition: color .18s;
}
a:focus, a:hover {
  color: #fff178;
  outline: none;
}

/* -------------------------------
   1. TYPOGRAPHY (BRAND + INDUSTRIAL)
-------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: #F4B942;
  font-weight: 900;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5rem;
  color: #F4B942; /* Brand yellow */
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  line-height: 1.11;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #EAF6F9;
}
h3, h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #F4B942;
}
h5, h6 {
  font-size: 1rem;
}
p, ul, ol, li, table, .text-section {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #EAF6F9;
  margin-bottom: 1.2em;
  line-height: 1.75;
}
strong {
  font-weight: 700;
  color: #fff;
}

/* ---------------------------------
   2. MAIN STRUCTURE & FLEXBOX LAYOUTS
---------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(34,38,41,0.93);
  border-radius: 20px;
  box-shadow: 0 6px 24px 0 rgba(17, 19, 22, 0.11);
  border: 1.5px solid #485058;
  transition: box-shadow 0.18s;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 7px;
    margin-bottom: 36px;
    border-radius: 15px;
  }
}

/* ---------------------------------
   3. HEADER / NAVIGATION
---------------------------------- */
header {
  background: #1B2124;
  border-bottom: 2.5px solid #325D76;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}
header a img {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #EAF6F9;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 3px;
  transition: color .19s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F4B942;
  outline: none;
}

.cta-button {
  background: #325D76;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.10rem;
  font-weight: 700;
  padding: 11px 28px;
  margin-left: 34px;
  border-radius: 28px;
  box-shadow: 0 6px 18px 0 rgba(34,38,41,0.12);
  transition: background 0.19s, box-shadow 0.18s, color .17s;
  letter-spacing: 0.05em;
  border: 1.5px solid #F4B942;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.cta-button.secondary {
  background: #F4B942;
  color: #23292C;
  border: 1.5px solid #325D76;
}
.cta-button:hover, .cta-button:focus {
  background: #22303C;
  color: #F4B942;
  box-shadow: 0 8px 32px 0 rgba(50,93,118,0.23);
  outline: none;
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #23292C;
  color: #F4B942;
}

.mobile-menu-toggle {
  display: none;
  background: #23292C;
  color: #F4B942;
  border: 2px solid #F4B942;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 2rem;
  cursor: pointer;
  transition: background .17s, color .16s;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F4B942;
  color: #23292C;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ---------------------------------
   4. MOBILE MENU OVERLAY
---------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,33,36,0.97);
  z-index: 1100;
  width: 100vw;
  height: 100vh;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.46,0.03,0.52,0.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #F4B942;
  font-size: 2.5rem;
  padding: 18px 26px 10px 8px;
  align-self: flex-end;
  cursor: pointer;
  border: none;
  z-index: 1102;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
  margin-top: 30px;
  padding: 0 38px;
}
.mobile-nav a {
  color: #F4B942;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 5px;
  transition: color .19s, background .16s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #1B2124;
  color: #fff178;
  outline: none;
}

/* ----------------------------------
   5. FOOTER
----------------------------------- */
footer {
  background: #1B2124;
  border-top: 2.5px solid #325D76;
  color: #F4B942;
  padding-top: 40px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  padding: 0 18px 18px 18px;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
}
footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-left: 28px;
  font-weight: 700;
}
footer .footer-nav a {
  color: #F4B942;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  transition: color .18s;
}
footer .footer-nav a:hover, footer .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  font-family: 'Roboto', Arial, sans-serif;
  color: #C8D1D6;
  line-height: 1.7;
}
.footer-contact a {
  color: #F4B942;
  text-decoration: underline;
}
.footer-copy {
  width: 100%;
  margin-top: 18px;
  font-size: 0.9rem;
  color: #EAF6F9;
  letter-spacing: 0.03em;
  text-align: right;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-copy {
    text-align: left;
  }
}

/* -----------------------------------
   6. CARD & FEATURE FLEXBOX PATTERNS
------------------------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #23292C;
  box-shadow: 0 1.5px 8px 0 rgba(32,36,38,0.13);
  border-radius: 14px;
  border: 1.5px solid #485058;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .17s, border-color .18s;
  padding: 24px;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(50,93,118,0.22);
  border-color: #F4B942;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.testimonial-card {
  background: #ffffff6b;
  color: #23292C;
  border-radius: 16px;
  box-shadow: 0 7px 22px 0 rgba(50,93,118,0.11);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin: 0 0 24px 0;
  min-width: 0;
  max-width: 500px;
  border-left: 6px solid #325D76;
  position: relative;
  transition: box-shadow 0.16s;
}
.testimonial-card strong {
  color: #325D76;
  display: block;
  margin-top: 8px;
  font-size: 1.1rem;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature {
  flex: 1 1 210px;
  background: #23292C;
  border: 1.5px solid #485058;
  border-radius: 12px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 3px 18px 0 rgba(50,93,118,0.12);
  gap: 12px;
  min-width: 222px;
  max-width: 350px;
  transition: box-shadow .14s, border-color .16s;
}
.feature img {
  width: 48px;
  height: 48px;
}
.feature:hover {
  border-color: #F4B942;
  box-shadow: 0 8px 36px 0 rgba(244,185,66,0.15);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-card {
  flex: 1 1 220px;
  background: #23292C;
  border-radius: 12px;
  border: 1.5px solid #325D76;
  box-shadow: 0 4px 24px 0 rgba(50,93,118,0.09);
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  transition: box-shadow .18s, border-color .16s;
}
.service-card strong {
  color: #F4B942;
  font-size: 1.14rem;
  margin-top: 7px;
}
.service-card:hover {
  box-shadow: 0 10px 34px 0 rgba(244,185,66,0.13);
  border-color: #F4B942;
}
@media (max-width: 900px) {
  .feature-grid, .service-cards {
    flex-direction: column;
    gap: 20px;
  }
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 20px;
}
.step {
  flex: 1 1 180px;
  background: #23292C;
  border-radius: 12px;
  border: 1.5px solid #485058;
  padding: 18px 10px 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 150px;
  max-width: 230px;
  box-shadow: 0 2px 14px 0 rgba(50,93,118,0.11);
  transition: box-shadow .15s, border-color .13s;
}
.step img {
  width: 35px;
  height: 35px;
}
.step:hover {
  border-color: #F4B942;
  box-shadow: 0 4px 19px 0 rgba(244,185,66,0.13);
}
@media (max-width: 900px) {
  .steps-grid {
    flex-direction: column;
    gap: 14px;
  }
  .step {
    max-width: 100%;
  }
}

/* Feature Item Pattern */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Spacing for lists and paragraphs */
ul, ol {
  margin-bottom: 1.3em;
  padding-left: 19px;
}
ul li, ol li {
  margin-bottom: .6em;
}

/* -----------------------------------
   7. TABLES (Pricing etc.)
------------------------------------ */
.pricing-table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  font-family: 'Roboto', Arial, sans-serif;
  background: #23292C;
  box-shadow: 0 2px 18px 0 rgba(50,93,118,0.13);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 14px 11px;
}
.pricing-table th {
  background: #325D76;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
}
.pricing-table td {
  color: #EAF6F9;
  border-bottom: 1.5px solid #485058;
}
.pricing-table tr:last-child td {
  border: none;
}

/* ----------------------------------
   8. FAQ ACCORDION
---------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-item {
  background: #23292C;
  border-radius: 8px;
  border-left: 6px solid #325D76;
  padding: 24px 16px 18px 22px;
  box-shadow: 0 7px 22px 0 rgba(50,93,118,0.11);
  color: #EAF6F9;
  transition: box-shadow .18s, border-color .17s;
}
.faq-item h2 {
  font-size: 1.2rem;
  color: #F4B942;
  margin-bottom: 8px;
}
.faq-item p a {
  color: #325D76;
  font-weight: bold;
}
.faq-item:hover {
  border-color: #F4B942;
  box-shadow: 0 12px 32px 0 rgba(244,185,66,0.08);
}

/* ----------------------------------
   9. BUTTONS & MICROINTERACTIONS
---------------------------------- */
button, [type="button"], [type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  outline: none;
  transition: background 0.17s, color 0.16s, box-shadow 0.14s;
}
button:active {
  transform: scale(0.97);
}

/* ----------------------------------
   10. CONTACT SOCIAL LISTS & INFOS
---------------------------------- */
.contact-info {
  margin-bottom: 20px;
}
.social-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  list-style: none;
  margin-top: 11px;
}
.social-links li {
  background: #485058;
  border-radius: 8px;
  padding: 7px;
  transition: background .16s;
  display: flex;
  align-items: center;
}
.social-links li:hover {
  background: #325D76;
}
.social-links img {
  width: 26px;
  height: 26px;
}

.contact-cta .cta-button {
  margin-top: 16px;
  margin-left: 0;
}

/* ----------------------------------
   11. COOKIE CONSENT BANNER
---------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #23292C;
  box-shadow: 0 -4px 18px rgba(50,93,118,0.14);
  color: #fff;
  z-index: 1250;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 32px;
  gap: 22px;
  flex-wrap: wrap;
  width: 100vw;
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform .39s cubic-bezier(0.68,-0.12,0.24,1.12), opacity .32s;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-banner .cookie-banner__text {
  flex: 1 1 250px;
  font-size: 1rem;
  color: #F4B942;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  padding: 9px 24px;
  border-radius: 28px;
  font-size: 1rem;
  font-weight: 700;
  border: 1.5px solid #325D76;
  background: #325D76;
  color: #fff;
  transition: background 0.18s, color 0.17s;
}
.cookie-banner .reject-btn {
  background: #485058;
  border-color: #485058;
  color: #fff;
}
.cookie-banner .settings-btn {
  background: #F4B942;
  color: #23292C;
  border-color: #325D76;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #F4B942;
  color: #23292C;
  outline: none;
}
.cookie-banner .settings-btn:hover,
.cookie-banner .settings-btn:focus {
  background: #325D76;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 13px 6px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: rgba(22,25,28, 0.85);
  z-index: 1350;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cookie-modal {
  background: #23292C;
  border-radius: 18px;
  box-shadow: 0 10px 46px rgba(50,93,118,0.25);
  width: 98vw;
  max-width: 450px;
  padding: 36px 28px 22px 28px;
  color: #FFD23F;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: cookieModalIn .45s cubic-bezier(0.5,1.5,0.6,1) both;
}
@keyframes cookieModalIn {
  from { transform: scale(0.74) translateY(70px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #F4B942;
  font-size: 1.35rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  color: #EAF6F9;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-modal .category-toggle {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.cookie-modal input[type="checkbox"] {
  width: 34px;
  height: 18px;
  display: none;
}
.cookie-modal .toggle-slider {
  width: 34px;
  height: 18px;
  background: #23292C;
  border: 2px solid #485058;
  border-radius: 13px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  transition: background .14s, border .15s;
}
.cookie-modal .toggle-slider::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: #485058;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1px;
  transition: left .18s, background .15s;
}
.cookie-modal input[type="checkbox"]:checked + .toggle-slider {
  background: #F4B942;
  border-color: #F4B942;
}
.cookie-modal input[type="checkbox"]:checked + .toggle-slider::after {
  left: 17px;
  background: #325D76;
}
.cookie-modal .category-essential label {
  color: #F4B942;
  font-weight: 700;
}
.cookie-modal .category-essential .toggle-slider {
  background: #485058;
  border: 2px solid #485058;
}
.cookie-modal .category-essential .toggle-slider::after {
  background: #485058;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-actions button {
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #325D76;
  color: #fff;
  border: 1.5px solid #F4B942;
  transition: background .17s, color .15s;
}
.cookie-modal .cookie-modal-actions button:hover,
.cookie-modal .cookie-modal-actions button:focus {
  background: #F4B942;
  color: #23292C;
  outline: none;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px; right: 17px;
  background: none;
  color: #F4B942;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ----------------------------------
   12. UTILITY & GLOBAL CLASSES
---------------------------------- */
.bg-primary { background: #325D76 !important; }
.bg-secondary { background: #F4B942 !important; color: #23292C !important; }
.bg-accent { background: #EAF6F9 !important; }
.text-primary { color: #325D76 !important; }
.text-secondary { color: #F4B942 !important; }
.text-accent { color: #EAF6F9 !important; }

.rounded {
  border-radius: 12px;
}
.shadow {
  box-shadow: 0 5px 16px 0 rgba(50,93,118,0.22);
}

/* Hide visually */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}

/* ----------------------------------
   13. RESPONSIVE MEDIA QUERIES
---------------------------------- */
@media (max-width: 1260px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .card-container, .content-grid, .feature-grid, .service-cards, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  h3, h4 { font-size: 1.1rem; }
  .service-card, .feature, .step, .testimonial-card {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }
  .feature-grid, .service-cards, .steps-grid, .testimonial-slider {
    gap: 13px;
  }
  .footer-contact, .footer-nav {
    margin-left: 0;
  }
  .footer-copy {
    font-size: 0.86rem;
    text-align: left;
    margin-top: 13px;
  }
}
@media (max-width: 550px) {
  html { font-size: 14px; }
  .section { padding: 19px 4px; }
  .container { padding: 0 3px; }
}

/* ----------------------------------
   14. PAGE-SPECIFIC MINOR ADJUSTMENTS
---------------------------------- */
.pricing-table td:last-child, .pricing-table th:last-child {
  text-align: right;
}
.text-section {
  margin-bottom: 18px;
}
.contact-cta {
  margin-bottom: 10px;
}

/* FAQ quick links */
.faq-accordion + p {
  margin-top: 25px;
}
.faq-accordion a {
  color: #F4B942;
  border-bottom: 1px dotted #F4B942;
  transition: color .15s, border-color .11s;
}
.faq-accordion a:hover {
  color: #fff;
  border-color: #fff;
}

/* Thank you page > make call-to-action bold */
.thank-you-section .cta-button {
  margin-top: 18px;
  font-size: 1.2rem;
}

/* ----------------------------------
   15. ANIMATIONS & MICROINTERACTIONS
---------------------------------- */
.card, .feature, .service-card, .step, .testimonial-card, .faq-item {
  transition: box-shadow .19s, border-color .16s, background .13s, color .11s;
}
.card:focus-within, .feature:focus-within, .service-card:focus-within,
.step:focus-within, .faq-item:focus-within {
  border-color: #F4B942;
  box-shadow: 0 10px 38px 0 rgba(244,185,66,0.15);
}

a, button, .cta-button {
  transition: color 0.16s, background 0.16s, border-color 0.16s, box-shadow 0.17s;
}
a:active, .cta-button:active, button:active {
  transform: scale(0.98);
}
section {
  padding: 15px 0;
}
/* ===================================== */
/* DO NOT USE DISPLAY: grid or COLUMNS!  */
/* ===================================== */
