/* =======================================================
   Reset & Normalize
======================================================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background-color: #181d23;
  color: #F4F6F8;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
}
a {
  color: #F9BE59;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B7CFDD;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}
input, textarea, select {
  font-family: inherit;
}
:focus {
  outline: 2px solid #F9BE59;
  outline-offset: 2px;
}

/* =======================================================
   Fonts (Industrial Modern)
======================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #F4F6F8;
  text-shadow: 0 1px 2px rgba(30,39,59,0.18);
}
h1 {
  font-size: 2.375rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  color: #E2E5E8;
}
strong {
  color: #F9BE59;
  font-weight: 700;
}

/* =======================================================
   Layout Containers / Spacing
======================================================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232831;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(30,39,59,0.16);
  padding: 24px;
  margin-bottom: 20px;
  color: #E2E5E8;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(141, 153, 167, 0.21);
  transform: translateY(-4px) scale(1.015);
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 280px;
  max-width: 540px;
  background: #F4F6F8;
  color: #222831;
  border-left: 4px solid #F9BE59;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px 0 rgba(41,62,106,0.04);
  position: relative;
  font-size: 1.06rem;
  transition: background 0.18s, box-shadow 0.22s;
}
.testimonial-card strong {
  color: #293E6A;
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-top: 8px;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

/* =======================================================
   Brand Color Pallete: Industrial Modern
======================================================= */
:root {
  --color-primary: #293E6A;
  --color-secondary: #B7CFDD;
  --color-accent: #F9BE59;
  --color-bg: #181d23;
  --color-metal: #B0B3B8;
  --color-card: #232831;
  --color-light: #F4F6F8;
  --color-action: #242D36;
  --color-shadow: rgba(30,39,59,0.21);
}

/* =======================================================
   Header & Navigation
======================================================= */
header {
  background: var(--color-primary);
  padding: 0;
  box-shadow: 0 2px 8px rgba(30,39,59, 0.11);
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  min-height: 68px;
}
.logo img {
  height: 38px;
  width: auto;
  filter: grayscale(10%) drop-shadow(0 1px 2px #1c2633);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial Black, sans-serif;
  font-size: 1rem;
  color: #F4F6F8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 6px 0;
  transition: color 0.23s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F9BE59;
}

.cta-btn {
  background: linear-gradient(90deg, #F9BE59 85%, #B7CFDD 100%);
  color: #1d2233;
  font-family: 'Montserrat', Arial Black, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 2px 10px 0 rgba(249,190,89,0.10);
  border: 1px solid #F9BE59;
  transition: background 0.2s, color 0.18s, box-shadow 0.19s, transform 0.15s;
  margin-left: 16px;
  display: inline-block;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #292f36;
  color: #F9BE59;
  border-color: #B7CFDD;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px 0 rgba(41,62,106,0.21);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #F4F6F8;
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 8px;
  margin-left: 24px;
  border: 2px solid transparent;
  transition: border 0.18s, background 0.18s, color 0.17s;
  z-index: 150;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  border: 2px solid #F9BE59;
  background: #232831;
  color: #F9BE59;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; 
  width: 100vw; height: 100vh;
  background: rgba(24,29,35, 0.97);
  transform: translateX(-110%);
  transition: transform 0.40s cubic-bezier(0.77,0.21,0.38,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: #F9BE59;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 22px 26px 0 0;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #222831;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 32px 16px 36px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: #F9BE59;
  font-family: 'Montserrat', Arial Black, sans-serif;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  padding: 12px 0;
  border-bottom: 1px solid #232831;
  transition: color 0.18s, background 0.18s;
  border-radius: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B7CFDD;
  background: #222b33;
}

/* Hide Desktop Nav on mobile, show hamburger */
@media (max-width: 1000px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1001px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* =======================================================
   Footer
======================================================= */
footer {
  background: #232831;
  color: #B7CFDD;
  margin-top: 70px;
  padding: 0 0 16px 0;
  box-shadow: 0 -2px 10px rgba(41,62,106,0.08);
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 0 0 0;
  margin-bottom: 0;
}
.footer-logo img {
  height: 45px;
  filter: grayscale(15%) drop-shadow(0 1px 2px #21325e);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
  min-width: 190px;
}
.footer-nav a {
  color: #B7CFDD;
  font-family: 'Montserrat', Arial Black, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F9BE59;
}
.footer-contact {
  font-size: 1rem;
  color: #B7CFDD;
  margin-top: 4px;
}
.footer-contact a {
  color: #F9BE59;
  text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* =======================================================
   Hero & Section Styles
======================================================= */
.hero, .ablauf-hero, .kontakt-hero, .thank-you-section {
  background:
    linear-gradient(100deg, #232831 0%, #293E6A 100%);
  background-blend-mode: multiply;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.hero h1, .ablauf-hero h1, .kontakt-hero h1, .thank-you-section h1 {
  color: #F4F6F8;
  font-size: 2.3rem;
  margin-bottom: 18px;
  line-height: 1.18;
  letter-spacing: 0.025em;
}
.subheadline {
  font-size: 1.25rem;
  color: #B7CFDD;
  margin-bottom: 18px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* =======================================================
   Features & Cards Styles
======================================================= */
.features, .feature-grid, .usp, .services-list .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid {
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.feature-card {
  background: #232831;
  color: #E2E5E8;
  border-radius: 14px;
  padding: 34px 25px 26px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  max-width: 330px;
  min-height: 290px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(44, 57, 74, 0.14);
  border-left: 4px solid #F9BE59;
  transition: box-shadow 0.2s, transform 0.21s;
}
.feature-card img {
  height: 48px;
  margin-bottom: 14px;
  filter: grayscale(40%) brightness(1.15);
}
.feature-card h3 {
  color: #F9BE59;
  font-size: 1.13rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: 'Montserrat', Arial Black, sans-serif;
}
.feature-card p {
  color: #B7CFDD;
  font-size: 0.98rem;
}
.feature-card:hover {
  box-shadow: 0 8px 28px rgba(44, 57, 74, 0.18);
  transform: translateY(-3px) scale(1.025);
}

/* Services List */
.service-card {
  display: flex;
  flex-direction: row;
  gap: 26px;
  background: #232831;
  border-radius: 12px;
  align-items: flex-start;
  padding: 24px;
  box-shadow: 0 2px 14px rgba(30,39,59,0.12);
  margin-bottom: 20px;
  border-left: 4px solid #B7CFDD;
  transition: box-shadow 0.17s, background 0.18s, border 0.19s;
  min-width: 240px;
  max-width: 540px;
}
.service-card:hover {
  box-shadow: 0 6px 28px rgba(41,62,106,0.18);
  background: #242d36;
  border-left: 4px solid #F9BE59;
}
.service-card img {
  height: 44px;
  width: 44px;
  filter: grayscale(60%) drop-shadow(0 0 3px #444950);
  flex-shrink: 0;
}
.service-card h2 {
  font-size: 1.15rem;
  color: #F9BE59;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 9px;
}
.service-card p {
  font-size: 0.98rem;
}
.service-card strong {
  color: #B7CFDD;
  font-size: 1.05rem;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #232831;
  border-radius: 10px;
  padding: 20px 22px;
  box-shadow: 0 2px 12px 0 rgba(41,62,106,0.08);
  color: #E2E5E8;
  margin-bottom: 12px;
  border-left: 4px solid #F9BE59;
  position: relative;
  transition: box-shadow 0.15s, background 0.19s;
}
.faq-item h2 {
  font-size: 1.12rem;
  color: #F9BE59;
  margin-bottom: 4px;
  font-family: 'Montserrat', Arial Black, sans-serif;
}
.faq-item p {
  color: #B7CFDD;
  font-size: 1rem;
}
.faq-item:hover {
  background: #282a2e;
  box-shadow: 0 4px 20px rgba(41,62,106,0.13);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #21262d;
  color: #F4F6F8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px 0 rgba(41,62,106,0.07);
}
thead {
  background: #293E6A;
}
thead th {
  color: #F9BE59;
  text-transform: uppercase;
  font-family: 'Montserrat', Arial Black, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 12px;
  border-bottom: 2px solid #B7CFDD;
}
tbody tr {
  border-top: 1px solid #2f3542;
}
tbody td {
  padding: 10px 12px;
  color: #E2E5E8;
  font-size: 1rem;
}
tbody tr:nth-child(even) {
  background: #1e2228;
}

/* Lists */
ul, ol {
  margin-bottom: 8px;
}
li {
  margin-bottom: 6px;
  padding-left: 24px;
  position: relative;
}
li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 11px;
  height: 3px;
  background: #F9BE59;
  border-radius: 2px;
}

.section ul li, .content-wrapper ul li {
  margin-bottom: 8px;
}

/* About & USP */
.about-preview, .about, .usp, .faq-main, .contact-details, .kontakt-form, .privacy-policy, .legal, .cookie-policy, .gdpr-info, .terms {
  background: #21262d;
  color: #E2E5E8;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 2px 12px 0 rgba(30,39,59,0.09);
  padding: 40px 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Call-to-action Banner */
.cta-banner, .info-banner {
  background: linear-gradient(90deg, #293E6A 90%, #B7CFDD 100%);
  color: #F4F6F8;
  border-radius: 16px;
  min-height: 110px;
  box-shadow: 0 4px 24px 0 rgba(41,62,106,0.13);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
}
.cta-banner .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.cta-banner h2 {
  color: #F9BE59;
  margin-bottom: 5px;
}
.cta-banner p {
  color: #B7CFDD;
  font-size: 1.15rem;
}
.cta-banner .cta-btn {
  margin-left: 0;
  margin-top: 16px;
}

/* Thank-you Message */
.success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #F4F6F8;
  color: #1d2233;
  padding: 32px 24px;
  border-radius: 14px;
  box-shadow: 0 4px 32px 0 rgba(49,49,64,0.08);
}
.success-message img {
  height: 62px;
}
.success-message .cta-btn {
  margin-top: 10px;
}

/* =======================================================
   Cookie Consent Banner & Modal (flex only!)
======================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #232831;
  color: #F4F6F8;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 14px 22px 18px;
  box-shadow: 0 -2px 16px 0 rgba(30,39,59,0.19);
  gap: 34px;
  flex-direction: row;
  animation: cookieDrop 0.45s cubic-bezier(.32,1.03,.58,1);
}
@keyframes cookieDrop {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-message {
  font-size: 1rem;
  color: #F4F6F8;
  margin-right: 20px;
}
.cookie-banner .cookie-options {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  background: #293E6A;
  color: #F9BE59;
  padding: 11px 18px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial Black, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid #B7CFDD;
  margin-right: 4px;
  margin-bottom: 0;
  transition: background 0.18s, color 0.18s, border 0.18s, transform 0.16s;
  cursor: pointer;
}
.cookie-btn.cookie-accept {
  background: #F9BE59;
  color: #232831;
  border-color: #F9BE59;
}
.cookie-btn.cookie-accept:hover, .cookie-btn.cookie-accept:focus {
  background: #292f36;
  color: #F9BE59;
}
.cookie-btn.cookie-settings {
  background: #232831;
  color: #F9BE59;
  border-color: #B7CFDD;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #293E6A;
  color: #F9BE59;
}
.cookie-btn.cookie-reject {
  background: #232831;
  color: #B7CFDD;
  border-color: #B7CFDD;
}
.cookie-btn.cookie-reject:hover, .cookie-btn.cookie-reject:focus {
  background: #B7CFDD;
  color: #232831;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.61);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #21262d;
  color: #F4F6F8;
  border-radius: 16px;
  min-width: 340px;
  max-width: 92vw;
  box-shadow: 0 8px 40px 0 rgba(44, 57, 74, 0.22);
  padding: 36px 28px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookiePop .33s cubic-bezier(.52,.87,.71,1);
  position: relative;
}
@keyframes cookiePop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 1.85rem;
  color: #F9BE59;
  background: none;
  border: none;
  border-radius: 7px;
  padding: 4px 7px;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #232831;
}
.cookie-modal h2 {
  font-size: 1.18rem;
  color: #F9BE59;
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 22px;
  display: inline-flex;
  align-items: center;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 44px;
  height: 22px;
  position: absolute;
  left: 0; top: 0;
  z-index: 2;
  cursor: pointer;
  margin: 0;
}
.cookie-toggle .slider {
  background: #B7CFDD;
  border-radius: 14px;
  width: 44px;
  height: 22px;
  transition: background 0.18s;
  position: relative;
  display: block;
}
.cookie-toggle input:checked + .slider {
  background: #F9BE59;
}
.cookie-toggle .slider:before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #232831;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.19s, background 0.19s;
}
.cookie-toggle input:checked + .slider:before {
  left: 24px;
  background: #293E6A;
}
.cookie-category-desc {
  font-size: 0.97rem;
  color: #B7CFDD;
}

/* Essential cookies disabled style */
.cookie-category[data-essential] .cookie-toggle {
  opacity: 0.62;
  pointer-events: none;
}

/* =======================================================
   Responsive & Mobile First
======================================================= */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid, .footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .footer .container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.29rem; }
  h3 { font-size: 1.09rem; }
  .container {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .section, .about-preview, .about, .usp, .faq-main, .privacy-policy, .cookie-policy, .gdpr-info, .terms {
    padding: 24px 8px;
  }
  .feature-card, .testimonial-card, .service-card {
    min-width: unset;
    max-width: 98vw;
    padding: 22px 14px;
  }
  .hero, .ablauf-hero, .kontakt-hero, .thank-you-section {
    min-height: 140px;
    padding: 12px 6px;
  }
  .feature-grid, .feature-item, .service-card, .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .content-wrapper {
    gap: 14px;
  }
  .header .container { min-height: 42px; }
}
@media (max-width: 560px) {
  .container { padding-left: 2vw; padding-right: 2vw; }
  .cta-banner, .info-banner { padding: 18px 7px; }
  .footer-logo img { height: 30px; }
}
.text-image-section {
  flex-direction: row;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* Force proper spacing between cards/sections everywhere */
.card, .feature-card, .service-card, .testimonial-card {
  margin-bottom: 20px;
}
.section, .about-preview, .about, .usp, .faq-main, .privacy-policy, .cookie-policy, .gdpr-info, .terms {
  margin-bottom: 60px;
  padding-bottom: 32px;
}

/* Miscellaneous Industrial Accents */
hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #293E6A 30%, #B0B3B8 100%);
  border-radius: 1px;
  margin: 28px 0;
}

/* Metallic accent (use as utility class or icons etc.) */
.metal-accent {
  color: #B0B3B8;
  text-shadow: 0 1px 4px rgba(176,179,184,0.21);
}

/* Micro-interactions */
button, .card, .cta-btn, .feature-card, .service-card, .testimonial-card, .mobile-menu {
  transition: box-shadow 0.18s, background 0.18s, transform 0.16s, border 0.17s;
}

/* =========================
 End
========================= */
