/* =============================
   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;
  background: none;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #edf1f6;
  color: #384355;
  font-size: 16px;
  line-height: 1.6;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul,
ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  background: none;
  border: none;
  color: inherit;
  margin: 0;
  padding: 0;
}

/* =============================
   BRAND COLORS & FONTS
============================= */
:root {
  --primary: #384355;
  --secondary: #EDF1F6;
  --accent: #7CAB43;
  --accent-neon: #8BB763;
  --dark: #232938;
  --light: #ffffff;
  --nav-bg: #232938cc;
  --card-bg: #FFFFFFF2;
  --card-border: #dbe2ef;
  --shadow: 0 4px 16px 0 rgba(56,67,85,0.10);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* =============================
   TYPOGRAPHY
============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h1 { font-size: 2.7rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 14px;
}
strong, b { font-weight: 600; }

.text-section ul, 
.text-section ol,
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 16px;
  list-style: disc;
}
.text-section ul li, ul li {
  margin-bottom: 8px;
}

.text-section {
  font-family: var(--font-body);
  color: #394355;
  margin-bottom: 18px;
  font-size: 1.04rem;
}

/* =============================
   GENERAL LAYOUT CONTAINERS
============================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--card-border);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 2px 16px rgba(44,71,122,0.1);
  border: 1px solid #e6e9f2;
  color: #222f43;
  max-width: 430px;
  min-width: 250px;
  transition: transform 0.21s, box-shadow 0.21s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(8,30,54,0.14);
  transform: translateY(-5px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================
   NAVIGATION & HEADER
============================= */
header {
  background: var(--nav-bg);
  backdrop-filter: blur(9px);
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  box-shadow: 0 2px 12px rgba(36,46,71,0.09);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 13px 0;
}
.main-nav > a img {
  height: 48px;
}
.main-nav ul {
  display: flex;
  margin-left: 20px;
  gap: 24px;
}
.main-nav ul li a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.07rem;
  color: var(--light);
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 9px;
  position: relative;
  transition: background 0.16s, color 0.16s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--accent);
  color: var(--primary);
}

.main-nav .cta.primary {
  margin-left: auto;
}

/* Mobile navigation (burger) */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 18px;
  z-index: 52;
  box-shadow: 0 2px 8px rgba(61,79,124,0.09);
  transition: background 0.19s, color 0.18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--accent);
}

.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #323e53ef;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 44px;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.5rem;
  position: absolute;
  top: 18px;
  right: 22px;
  border: none;
  z-index: 1002;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--accent-neon);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: center;
  margin-top: 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  padding: 14px 12px;
  border-radius: 12px;
  width: 90vw;
  max-width: 340px;
  text-align: center;
  margin: 0 auto;
  background: rgba(56,67,85,0.12);
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent-neon);
  color: var(--primary);
}

/* =============================
   MAIN: HERO, FEATURES, CARDS
============================= */
.hero {
  padding: 64px 0 60px 0;
  background: linear-gradient(122deg, #384355 65%, #a3e2cf 100%);
  background-color: #384355;
  color: #fff;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.hero p {
  font-size: 1.22rem;
  margin-bottom: 28px;
  color: #edf1f6;
}
.hero .cta.primary {
  font-size: 1.18rem;
  padding: 15px 36px;
}

.features {
  background: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: -34px;
  box-shadow: 0 -4px 24px 0 rgba(56,67,85,0.08);
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 4px;
  justify-content: space-between;
}
.features .feature-grid > div {
  flex: 1 1 220px;
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 10px rgba(18,22,33,0.04);
  min-width: 212px;
  max-width: 300px;
  position: relative;
  border: 1px solid #e9ebf2;
  transition: box-shadow 0.14s, transform 0.13s;
}
.features .feature-grid > div:hover {
  box-shadow: 0 6px 28px 0 #8bb76344;
  transform: translateY(-4px) scale(1.01);
  border-color: var(--accent);
}
.features .feature-grid img {
  height: 48px;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 3px var(--accent-neon));
}
.features .feature-grid h3 {
  margin-bottom: 8px;
  color: var(--primary);
}
.features .feature-grid p {
  color: #434d5c;
  font-size: 1rem;
}

/* Service cards */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.service-cards > div {
  flex: 1 1 240px;
  padding: 26px 20px 22px 20px;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid #e2e6ee;
  position: relative;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.15s, border 0.17s;
}
.service-cards > div span {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-neon));
  color: #fff;
  font-weight: 700;
  border-radius: 32px;
  margin-top: 12px;
  padding: 7px 12px 6px 12px;
  font-size: 1.1rem;
  box-shadow: 0 1px 6px 0 #7cab4360;
  letter-spacing: 0.02em;
  border: 1px solid var(--accent-neon);
}
.service-cards > div:hover, .service-cards > div:focus-within {
  box-shadow: 0 4px 28px #64f6ad36;
  border-color: var(--accent-neon);
  transform: translateY(-4px) scale(1.015);
}
.service-cards h3 {
  color: var(--primary);
  margin-bottom: 10px;
}
.service-cards p {
  color: #49536f;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 24px;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 #3843551a;
  margin-bottom: 20px;
}
.pricing-table th, .pricing-table td {
  font-family: var(--font-body);
  padding: 16px 14px;
  font-size: 1.07rem;
  border-bottom: 1px solid #e9ecf2;
  color: #394355;
  text-align: left;
}
.pricing-table th {
  background: var(--secondary);
  color: var(--primary);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* Highlight box */
.highlight-box {
  background: linear-gradient(93deg, #edf1f6 60%, #dff7ed 100%);
  border-left: 5px solid var(--accent-neon);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  margin-top: 12px;
  font-size: 1.04rem;
  color: #40464e;
  box-shadow: 0 2px 10px 0 #8bb7631a;
}

/* Cards container + section spacing (default; can override for dense panels) */
.article-list, .feature-grid, .service-cards, .content-grid {
  margin-bottom: 24px;
}

/* Testimonials */
.testimonials {
  background: #fafdff;
  padding: 50px 0 54px 0;
  border-radius: var(--radius-lg);
  margin: 64px 0 40px 0;
  box-shadow: 0 -2px 18px 0 #38435513;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  justify-content: space-between;
}
.testimonial-card p {
  font-style: italic;
  font-family: var(--font-body);
  color: #253140;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--accent);
  align-self: flex-end;
}

/* About & Philosophy, etc. */
.about-section, .team-section,
.philosophy, .legal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px 0 #708ab81a;
  margin-bottom: 60px;
  padding: 40px 20px;
}

.team-section {
  background: #f0f4fa;
}

.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 80px 0;
}

.case-studies .text-section > div {
  background: #f8fbfc;
  padding: 28px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 26px;
  border: 1px solid #e3ebf5;
  box-shadow: 0 2px 8px 0 #b6bdf322;
}

.article-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.article-list > div {
  background: #f8fcfa;
  border-radius: var(--radius-sm);
  padding: 24px 20px 20px 20px;
  box-shadow: 0 2px 8px 0 #96b07820;
  min-width: 230px;
  max-width: 370px;
  flex: 1 1 230px;
  transition: box-shadow .16s, transform .16s;
  margin-bottom: 20px;
}
.article-list > div:hover {
  box-shadow: 0 6px 24px 0 #8bb76338;
  transform: translateY(-4px) scale(1.01);
}

.faq-shortlist {
  background: #fafdff;
  border-left: 3px solid var(--accent-neon);
  padding: 18px 18px;
  border-radius: var(--radius-sm);
}

.map-snippet {
  background: #f4f8fe;
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 6px 0 #d2ebd219;
  padding: 18px 18px 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.map-snippet img {
  height: 60px;
}

/* =============================
   CTA / BUTTONS / LINKS
============================= */
.cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--accent-neon);
  color: #fff;
  border-radius: 30px;
  padding: 13px 32px;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 #7cab4355;
  border: 1.5px solid var(--accent-neon);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 12px;
  text-shadow: 0 1px 2px #657c3850;
  transition: background 0.16s, color 0.16s, box-shadow 0.19s, border 0.14s, transform 0.12s;
}
.cta.primary {
  background: linear-gradient(93deg, var(--accent), var(--accent-neon));
  border: 1.5px solid var(--accent);
  color: #fff;
}
.cta:hover, .cta:focus {
  background: #232938;
  color: #8BB763;
  border-color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 26px 0 #38435536;
  outline: none;
  text-shadow: none;
}

button.cta, a.cta {
  outline: none;
  appearance: none;
}

/* =============================
   FOOTER
============================= */
footer {
  background: var(--primary);
  color: #f4ffe0;
  padding: 0px 0 0 0;
  margin-top: 60px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 22px;
  justify-content: space-between;
  padding: 44px 14px 28px 14px;
}
.footer-grid > div {
  min-width: 220px;
  flex: 1 0 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid img {
  height: 40px;
  filter: drop-shadow(0 0 3px var(--accent));
}
.footer-grid p {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: #def0cf;
  margin-bottom: 8px;
}
.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-grid nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 0;
  margin-bottom: 7px;
}
.footer-grid nav ul li a {
  color: #dff7ed;
  font-size: 0.96rem;
  border-radius: 7px;
  padding: 5px 10px;
  transition: background 0.12s, color 0.12s;
}
.footer-grid nav ul li a:hover, .footer-grid nav ul li a:focus {
  background: var(--accent);
  color: var(--primary);
}
.footer-grid .cta.primary {
  background: var(--accent);
  color: #fff;
  margin-top: 10px;
  margin-bottom: 0;
  border: none;
  box-shadow: 0 2px 12px #7cab4322;
}
.footer-grid .cta.primary:hover, .footer-grid .cta.primary:focus {
  background: #fff;
  color: var(--primary);
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 5px;
}
.social-links a img {
  height: 28px;
  transition: filter 0.13s, transform 0.14s;
}
.social-links a:hover img, .social-links a:focus img {
  filter: drop-shadow(0px 0px 8px var(--accent));
  transform: scale(1.1);
}
.footer-grid .text-section {
  color: #e2edcb;
}
.footer-grid .text-section h3 {
  color: #fafdff;
  margin-bottom: 6px;
  font-size: 1.12rem;
}

/* =============================
   COOKIE CONSENT BANNER
============================= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #253140;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  padding: 22px 18px;
  box-shadow: 0 -3px 12px 0 #38435550;
  font-size: 1rem;
  font-family: var(--font-body);
  opacity: 0;
  transform: translateY(90px);
  pointer-events: none;
  transition: opacity 0.24s cubic-bezier(.77,0,.18,1), transform 0.29s cubic-bezier(.77,0,.18,1);
}
.cookie-banner.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 0.97rem;
  border-radius: 22px;
  padding: 9px 20px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  border: none;
  margin-left: 0;
  margin-bottom: 0;
  transition: background 0.15s, color 0.13s, border 0.13s;
}
.cookie-banner .accept {
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: var(--accent);
}
.cookie-banner .reject {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid #f35485;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #f35485;
  color: #fff;
}
.cookie-banner .settings {
  background: #242b34;
  color: #fff;
  border: 1.5px solid var(--primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--accent-neon);
  color: var(--primary);
}

/* Cookie Modal Popup */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(44,47,65, 0.92);
  z-index: 12000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.77,0,.34,1);
}
.cookie-modal.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal .cookie-content {
  background: #fff;
  padding: 38px 26px 32px 26px;
  border-radius: var(--radius);
  box-shadow: 0 6px 40px #25314050;
  max-width: 400px;
  width: 92vw;
  color: var(--primary);
  font-family: var(--font-body);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal h2 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}
.cookie-modal .cookie-category .locked {
  color: #ccc;
  font-size: 0.98em;
  font-style: italic;
  margin-left: 8px;
}
.cookie-modal .cookie-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 17px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--accent);
}

/* =============================
   MEDIA QUERIES (Mobile First)
============================= */
@media (max-width: 1024px) {
  .container {
    max-width: 940px;
  }
  .features .feature-grid, .service-cards, .article-list, .testimonial-slider, .footer-grid {
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-grid > div {
    min-width: 170px;
  }
}
@media (max-width: 868px) {
  .main-nav {
    padding-left: 0;
    padding-right: 0;
    gap: 0;
  }
  .footer-grid {
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
  }
  .footer-grid > div {
    min-width: 100px;
    max-width: 100%;
  }
  .pricing-table th, .pricing-table td {
    font-size: 0.99rem;
    padding: 12px 7px;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 36px 5vw 28px 5vw;
  }
  .section, .content-wrapper, .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero {
    padding: 44px 0 36px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .features .feature-grid,
  .service-cards,
  .article-list,
  .testimonial-slider {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .feature-grid > div, .service-cards > div, .article-list > div {
    min-width: 95vw;
    max-width: 100%;
  }
  .testimonial-slider {
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .highlight-box {
    padding: 16px 11px;
  }
  .cookie-modal .cookie-content {
    max-width: 95vw;
    padding: 22px 11px 18px 11px;
  }
}
@media (max-width: 500px) {
  body {
    font-size: 15px;
  }
  h1 {
    font-size: 1.21rem;
  }
  h2 {
    font-size: 1.12rem;
  }
  .footer-grid {
    padding: 24px 1vw 20px 1vw;
  }
  .footer-grid img {
    height: 28px;
  }
}

/* =============================
   MICRO-ANIMATIONS
============================= */
.cta, .feature-grid > div, .service-cards > div, .testimonial-card, .article-list > div {
  transition: box-shadow 0.18s, background 0.16s, border 0.16s, color 0.15s, transform 0.14s;
}

/* =============================
   UTILITIES
============================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0px !important; }
.mb-0 { margin-bottom: 0px !important; }
.mt-1 { margin-top: 8px; }
.mb-1 { margin-bottom: 8px; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }

/* =============================
   END OF CSS
============================= */
