/* ==== CSS RESET & NORMALIZATION ==== */
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, main, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
}
ol, ul {
  list-style: none;
}
blockquote, q { quotes: none }
blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0 }
img { max-width: 100%; display: block; height: auto }

/* ==== BRAND FONTS IMPORT ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --color-primary: #14213D;
  --color-secondary: #FCA311;
  --color-accent: #E5E5E5;
  --color-white: #fff;
  --color-black: #040404;
  --color-grey: #6D7A80;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  --shadow-card: 0 4px 24px rgba(20,33,61,.11), 0 1.5px 8px rgba(252,163,17,0.06);
  --radius: 20px;
}

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-accent);
  font-size: 16px;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.15;
}
h2 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
}
h4, h5, h6 {
  color: var(--color-primary);
  margin-bottom: 10px;
}
p {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

/* ====== CONTAINER AND LAYOUTS ====== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 1.5px 12px rgba(20,33,61,0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  min-width: 260px;
  transition: var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(20,33,61,0.14), 0 2.5px 14px rgba(252,163,17,0.10);
  transform: translateY(-3px) scale(1.02);
}
.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;
}
.testimonials {
  background: var(--color-accent);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-white);
  border-radius: 18px;
  min-width: 290px;
  flex: 1 1 0px;
  box-shadow: 0 2px 12px rgba(20,33,61,0.08);
  transition: var(--transition);
  border: 2px solid #f4f4f4;
}
.testimonial-card p {
  color: var(--color-primary);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-card span {
  color: var(--color-grey);
  font-size: 1rem;
  font-style: normal;
  margin-top: 8px;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(20,33,61,0.14);
  border-color: var(--color-secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ====== HEADER & NAVIGATION ====== */
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 2px 24px rgba(20,33,61,0.06);
  position: relative;
  z-index: 80;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  position: relative;
  padding: 6px 2px;
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-secondary);
}
.btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  padding: 12px 28px;
  border-radius: 24px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 1.5px 8px rgba(252,163,17,0.08);
  border: none;
  cursor: pointer;
  letter-spacing: 0.025em;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 5px 32px rgba(20,33,61,0.15);
  outline: none;
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0 40px 0;
  margin-bottom: 40px;
  background: linear-gradient(120deg, var(--color-secondary) 0%, var(--color-accent) 75%);
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 36px;
  box-shadow: 0 6px 38px -12px rgba(20,33,61,0.11);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 32px;
  background: rgba(255,255,255,0.90);
  border-radius: 32px;
  padding: 32px 28px;
  box-shadow: 0 3px 18px rgba(252,163,17,0.14);
}
.hero h1 { color: var(--color-primary); }
.hero p { color: var(--color-primary); font-size: 1.15rem; }

/* ===== LISTS, ICONS, FEATURES ===== */
ul, ol {
  margin-bottom: 24px;
}
ul li, ol li {
  font-size: 1.06rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 13px;
}
ul li img, ol li img {
  width: 28px;
  height: 28px;
  margin-right: 7px;
}

ol {
  counter-reset: custom-count;
}
ol li {
  counter-increment: custom-count;
  position: relative;
  padding-left: 26px;
}
ol li:before {
  content: counter(custom-count) '.';
  position: absolute;
  left: 0;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-secondary);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.category-list li {
  background: var(--color-accent);
  border-radius: 12px;
  padding: 7px 18px;
  font-size: 1.02rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}
.tag-cloud span {
  display: inline-block;
  background: var(--color-secondary);
  border-radius: 12px;
  padding: 6px 14px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

/* ====== SERVICE GRIDS & TEASERS ====== */
.service-teasers, .service-list-grid, .post-teasers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 24px 0;
  justify-content: flex-start;
}
.service-teasers > div, .service-list-grid > div, .post-teasers-grid > div {
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 26px 20px;
  min-width: 230px;
  flex: 1 1 230px;
  margin-bottom: 0;
  position: relative;
  transition: var(--transition);
  border: 2px solid #f7f7f7;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list-grid > div img {
  width: 34px;
  height: 34px;
  margin-bottom: 15px;
}
.service-teasers > div:hover, .service-list-grid > div:hover, .post-teasers-grid > div:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 6px 32px rgba(252,163,17,0.13);
  transform: translateY(-2px) scale(1.02);
}

/* ===== TABLES ===== */
table {
  width: 100%;
  background: var(--color-white);
  border-radius: 18px;
  overflow: hidden;
  margin: 20px 0;
  box-shadow: 0 1.5px 10px rgba(20,33,61,0.07);
}
th, td {
  padding: 15px 15px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
  font-size: 1.02rem;
}
th {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
}
td {
  color: var(--color-primary);
}
tr:last-child td {
  border-bottom: none;
}

/* ====== CTA SECTIONS ====== */
.cta {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 28px;
  padding: 46px 30px;
  margin-bottom: 80px;
  box-shadow: 0 3px 18px rgba(20,33,61,0.13);
}
.cta .content-wrapper {
  align-items: center;
  gap: 22px;
}
.cta h2, .cta p {
  color: var(--color-white);
}
.cta .btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cta .btn-primary:hover {
  background: #ffbb3a;
}

/* ====== FORMS ====== */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 520px;
  background: var(--color-white);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: var(--shadow-card);
}
label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}
input[type="email"], input[type="text"], textarea {
  border: 1.5px solid #DBEAFE;
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 1.03rem;
  font-family: var(--font-body);
  margin-bottom: 8px;
  background: var(--color-accent);
  color: var(--color-primary);
  transition: border .15s;
}
input[type="email"]:focus, input[type="text"]:focus, textarea:focus {
  border-color: var(--color-secondary);
  outline: none;
}
textarea {
  min-height: 90px;
  resize: vertical;
}
button[type="submit"] {
  align-self: flex-start;
}

/* ========== FOOTER ========== */
footer {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 60px 0 32px 0;
  border-top-left-radius: 48px;
  border-top-right-radius: 18px;
  box-shadow: 0 -3px 16px -6px rgba(20,33,61,0.09);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  transition: color 0.16s;
}
.footer-links a:hover { color: #ffd75f; }
.footer-contact p, .footer-brand-info p {
  margin-bottom: 4px;
  color: var(--color-accent);
  font-size: 0.97rem;
}
.footer-contact a {
  color: var(--color-secondary);
  text-decoration: underline;
  font-size: 0.96rem;
}
.footer-brand-info {
  margin-top: 12px;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.07rem;
}
footer .logo img {
  background: var(--color-white);
  border-radius: 50%;
  padding: 8px;
  height: 36px;
  width: 36px;
}

/* ======= MOBILE BURGER MENU ======= */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  padding: 8px 16px;
  margin-left: 8px;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
  z-index: 200;
}
.mobile-menu-toggle:focus { outline: 2px solid var(--color-primary); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,33,61,0.96);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.76,0.03,0.23,1.02);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 4px 0;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  padding: 5px 16px;
  cursor: pointer;
  transition: background .13s;
  z-index: 1002;
}
.mobile-menu-close:focus { outline: 2px solid var(--color-secondary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 10vh 6vw;
  width: 100vw;
}
.mobile-nav a {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.65rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.015em;
  padding: 14px 6px;
  border-radius: 17px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* ======= RESPONSIVE LAYOUT ======= */
@media (max-width: 1080px) {
  .service-list-grid, .service-teasers, .post-teasers-grid {
    flex: 1 1 100%;
    gap: 16px;
  }
  .content-wrapper, .footer .content-wrapper {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 780px) {
  header .container {
    flex-direction: row;
    gap: 12px;
    min-height: 54px;
  }

  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .logo img {
    height: 34px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .content-wrapper, .card-container, .content-grid, .service-teasers, .service-list-grid, .post-teasers-grid, .testimonial-slider, .footer .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .section, .testimonials {
    padding: 26px 8px;
    margin-bottom: 42px;
  }
  .hero {
    padding: 36px 0 20px 0;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 10px;
  }
  .hero .content-wrapper {
    padding: 18px 8px;
    border-radius: 21px;
  }
  .cta {
    padding: 24px 8px;
    border-radius: 19px;
    margin-bottom: 42px;
  }
  .category-list, .tag-cloud {
    gap: 6px;
  }
  .content-wrapper.text-section {
    padding: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .footer .container {
    padding: 0 6px;
  }
}
@media (max-width: 460px) {
  h1 { font-size: 1.34rem; }
  h2 { font-size: 1.1rem; }
  .btn-primary {
    font-size: 1rem;
    padding: 10px 15px;
  }
  .cta, .section {
    padding: 10px 2px;
  }
  .footer-links, .category-list, .tag-cloud {
    gap: 3px;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  background: var(--color-secondary);
  color: var(--color-primary);
  width: 100vw;
  min-height: 62px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px 18px 20px;
  box-shadow: 0 -2px 12px rgba(20,33,61,0.18);
  font-size: 1.05rem;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.44s cubic-bezier(0.7,0,0.33,1), opacity 0.24s;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner-content {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  flex: 1 1 0px;
}
.cookie-banner .cookie-btn {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-radius: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 18px;
  margin-left: 8px;
  margin-right: 4px;
  border: none;
  transition: background 0.13s, color 0.13s;
  cursor: pointer;
}
.cookie-banner .cookie-btn.secondary {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus { background: #0f1931; outline: none; color: #fff; }

/* ===== COOKIE MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,33,61,0.60);
  transition: opacity 0.19s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 38px 20px 24px 20px;
  box-shadow: 0 9px 44px rgba(20,33,61,0.18);
  width: 95vw;
  max-width: 410px;
  margin: 18vh auto 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(70px) scale(0.96);
  transition: opacity 0.22s, transform 0.30s;
  pointer-events: none;
}
.cookie-modal-overlay.active .cookie-modal {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 1.2rem;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  box-shadow: 0 1.5px 7px rgba(252,163,17,0.10);
  transition: background .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: #ffd75f; }
.cookie-modal h3 {
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 0;
}
.cookie-category .toggle-switch {
  width: 41px;
  height: 22px;
  position: relative;
  margin-right: 7px;
}
.cookie-category .toggle-switch input { display: none; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-accent);
  border-radius: 12px;
  transition: background 0.13s;
}
.toggle-slider:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  bottom: 2px;
  background: var(--color-secondary);
  border-radius: 50%;
  transition: transform 0.23s, background 0.13s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--color-secondary);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(19px);
  background: var(--color-primary);
}
.cookie-modal .cookie-btn {
  margin-top: 13px;
  width: 100%;
}

/* ===== SCROLLBAR ====== */
body::-webkit-scrollbar {
  width: 10px;
  background: var(--color-accent);
}
body::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 8px;
}

/* ===== CREATIVE/ARTISTIC TOUCHES ===== */
h1, h2, h3, .btn-primary, .main-nav a, .mobile-nav a {
  text-shadow: 0 2px 8px rgba(252,163,17,0.05);
}
.hero, .cta, .section, .card, .testimonial-card, .footer {
  position: relative;
}
.hero:before, .section:not(.hero):before, .cta:before {
  content: '';
  position: absolute;
  z-index: 0;
  border-radius: 48% 52% 64% 36% / 40% 52% 47% 61%;
  width: 160px;
  height: 110px;
  background: rgba(252,163,17, 0.07);
  top: -36px;
  left: -42px;
  pointer-events: none;
  filter: blur(2px);
}
.section:not(.hero):before {
  top: unset; left: unset; bottom: -26px; right: -52px;
  width: 170px; height: 110px;
  background: rgba(20,33,61,0.10);
}
.cta:before {
  left: -10px;
  bottom: -38px;
  width: 110px; height: 80px;
  background: rgba(20,33,61,0.08);
}
.section:after, .hero:after, .cta:after {
  content: '';
  position: absolute;
  border-radius: 55% 37% 71% 29% / 68% 55% 31% 59%;
  width: 110px;
  height: 70px;
  background: rgba(252,163,17, 0.08);
  bottom: -12px;
  right: -28px;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
}

@media (max-width: 768px) {
  .hero:before, .section:before, .cta:before, .section:after, .hero:after, .cta:after {
    display: none!important;
  }
}

/* ===== UTILITY CLASSES (helper) ===== */
.text-center { text-align: center! important; }
.text-section { padding: 0 8px; }

/* ===== ANIMATIONS ===== */
@keyframes subtle-fade {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: none; }
}
.section, .hero, .cta, .card, .testimonial-card, .service-teasers > div, .service-list-grid > div, .post-teasers-grid > div {
  animation: subtle-fade 0.7s cubic-bezier(0.41,0.09,0.25,1.0);
}

/* ============= END ============= */
