/* =======================================================
   CSS RESET & NORMALIZATION — using modern_bold style
   ======================================================= */
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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F5F5F5;
  color: #283646;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  direction: ltr;
  position: relative;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #283646;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8AB3C6;
  outline: none;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
h1, h2, h3, h4, h5, h6 {
  color: #283646;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.25;
}
h4 {
  font-size: 1.15rem;
  line-height: 1.3;
}
p, li, small {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #283646;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
small {
  font-size: 0.95rem;
}
button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border-color 0.2s;
}

/* Modern_Bold BASE COLORS (with old fallback if needed) */
:root {
  --primary: #283646;
  --secondary: #8AB3C6;
  --accent: #F5F5F5;
  --white: #fff;
  --black: #000;
  --shadow: rgba(40,54,70,0.06);
  --radius: 20px;
  --danger: #f44336;
}

/* ================== LAYOUT CONTAINERS =================== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ========= HEADER & NAVIGATION ========= */
header {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px -2px rgba(40,54,70,0.06);
  position: relative;
  min-height: 72px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
  position: relative;
}
.logo img {
  width: 160px;
  height: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  padding: 7px 3px;
  position: relative;
  transition: color 0.15s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--secondary);
}
.cta-button {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  border-radius: 40px;
  border: none;
  padding: 14px 38px;
  margin-left: 12px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: var(--primary);
  color: var(--accent);
  box-shadow: 0 4px 18px 0 rgba(40,54,70,0.15);
  outline: none;
}

/* ================ MOBILE NAV TOGGLE ================ */
.mobile-menu-toggle {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 40px;
  padding: 10px 15px;
  margin-left: 10px;
  font-size: 2.2rem;
  display: none;
  z-index: 120;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--accent);
  outline: none;
}

/* =============== MOBILE MENU OVERLAY =============== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: var(--primary);
  transform: translateX(-110%);
  transition: transform 0.44s cubic-bezier(0.83,0,0.17,1);
  z-index: 110;
  padding: 0 35px;
  height: 100vh;
  width: 100vw;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--accent);
  border: none;
  font-size: 2.4rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  align-self: flex-end;
  margin: 30px 0 15px 0;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 10px 0;
  letter-spacing: 0.04em;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.18s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}

/* =============== HERO SECTION ============== */
.hero {
  background: linear-gradient(95deg, var(--secondary) 0%, var(--accent) 80%);
  padding: 70px 0 60px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: stretch;
}
.hero h1 {
  color: var(--primary);
  font-weight: 900;
  font-size: 2.1rem;
  text-shadow: 0 1px 0 var(--white), 0 3px 14px rgba(40,54,70,0.09);
}
.hero .subheadline {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.hero .cta-button {
  margin-top: 18px;
}

/* ================= SECTIONS ================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.features {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 0;
  box-shadow: 0 2px 12px var(--shadow);
}

.about {
  background: var(--accent);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 0;
}

.features > .container,
.about > .container {
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 10px;
}

/* ============= FEATURE CARDS / GRIDS ============= */
.feature-grid, .project-list, .blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 6px;
  justify-content: flex-start;
}
.feature-card {
  flex: 1 1 calc(245px);
  min-width: 220px;
  max-width: 355px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--shadow);
  padding: 28px 18px 24px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.feature-card img {
  width: 46px;
  height: 46px;
}
.feature-card h3 {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 5px;
}
.feature-card p {
  font-size: 1.03rem;
  color: var(--primary);
}
.feature-card:hover, .feature-card:focus-within {
  box-shadow: 0 4px 25px 0 rgba(40,54,70,0.18);
  transform: translateY(-3px) scale(1.025);
  z-index: 2;
}

.project-list, .blog-post-list {
  gap: 28px;
  margin-bottom: 12px;
}
.project-list .text-section, .blog-post-list .text-section {
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 20px 20px 14px 20px;
  min-width: 225px;
  flex: 1 1 270px;
  margin-bottom: 20px;
}

/* =============== HIGHLIGHTED POSTS ================ */
.highlighted-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 5px;
}
.highlighted-posts .text-section {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 16px;
  box-shadow: 0 2px 8px var(--shadow);
  padding: 15px 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}

/* ================== SPACING PATTERNS =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px var(--shadow);
  padding: 26px 20px 22px 20px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ============= TESTIMONIALS ============= */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--shadow);
}

.testimonials h2 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 22px 20px 22px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--accent);
  box-shadow: 0 2px 16px rgba(40,54,70,0.06);
  max-width: 500px;
  width: 100%;
  transition: box-shadow 0.15s, transform 0.15s;
  color: var(--primary);
}
.testimonial-card p {
  color: var(--primary);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
}
.testimonial-card small {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 24px rgba(40,54,70,0.16);
  transform: scale(1.025);
  z-index: 2;
}

/* ============== CTA SECTION =============== */
.cta {
  margin-bottom: 60px;
  padding: 40px 0;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px var(--shadow);
  text-align: center;
}

.navigation-links {
  margin-top: 16px;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.navigation-links a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}
.navigation-links a:hover {
  color: var(--secondary);
}

/*********** FOOTER ***********/
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 0 0 0 0;
  font-size: 1rem;
  margin-top: 40px;
}
footer .container {
  padding: 0 20px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  padding: 45px 0 25px 0;
  border-bottom: 1.5px solid var(--secondary);
}
.footer-top a img {
  width: 120px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info h4 {
  margin-bottom: 4px;
  color: var(--secondary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
}
.contact-info p, .contact-info a {
  color: var(--accent);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 2px;
}
.contact-info a {
  text-decoration: underline;
}
.contact-info a:hover {
  color: var(--secondary);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer-nav a {
  color: var(--accent);
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
  transition: color 0.13s;
}
.footer-nav a:hover {
  color: var(--secondary);
}
.social-links {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 0;
}
.social-links a img {
  width: 34px;
  height: 34px;
  filter: brightness(92%) contrast(110%);
  transition: filter 0.16s, transform 0.15s;
}
.social-links a:hover img {
  filter: brightness(100%) contrast(130%);
  transform: scale(1.13);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--secondary);
  font-size: 0.97rem;
  padding-bottom: 20px;
}
.footer-bottom small {
  color: var(--secondary);
}

/*** GENERIC LISTS FOR BOLD DISPLAY ***/
.features ul, .about ul, .services ul, .content-wrapper ul, .text-section ul {
  margin-left: 0;
  padding: 0 0 0 24px;
  margin-bottom: 0px;
  list-style: disc outside none;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.features ul li, .about ul li, .services ul li, .text-section ul li {
  margin-bottom: 11px;
  line-height: 1.6;
  color: var(--primary);
}
.features ul li strong, .about ul li strong, .services ul li strong {
  font-weight: 800;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ========== FORM ELEMENTS (if present) ============= */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  border: 2.5px solid var(--secondary);
  border-radius: 10px;
  padding: 12px 10px;
  margin-bottom: 16px;
  background: var(--accent);
  outline: none;
  transition: border-color 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
}

/* ============ Responsive Media Queries ============ */
@media (max-width: 1150px) {
  .feature-grid, .project-list, .blog-post-list {
    gap: 16px;
  }
}
@media (max-width: 990px) {
  .main-nav {
    gap: 18px;
  }
  .feature-grid, .project-list, .blog-post-list {
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-top {
    flex-direction: column;
    gap: 38px;
    align-items: flex-start;
  }
}
@media (max-width: 820px) {
  h1 {
    font-size: 2rem;
  }
  .container {
    max-width: 99vw;
  }
  .features, .about, .testimonials, .cta {
    padding: 36px 0;
  }
}
@media (max-width: 768px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .content-wrapper {
    gap: 18px;
  }
  .feature-grid, .project-list, .blog-post-list {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-card, .project-list .text-section, .blog-post-list .text-section {
    min-width: unset;
    max-width: 98vw;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
  }
  .footer-top {
    flex-direction: column;
    gap: 22px;
  }
  .footer-nav {
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.99rem;
  }
  .social-links {
    gap: 14px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.34rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  section, .section, .features, .about, .testimonials {
    padding: 22px 0;
    margin-bottom: 34px;
  }
  .footer-top {
    flex-direction: column;
    gap: 10px;
    padding: 26px 0 15px 0;
  }
  .footer-bottom {
    padding-bottom: 9px;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
}


/******************** COOKIE NOTICE & MODAL ********************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3001;
  background: var(--primary);
  color: var(--accent);
  padding: 22px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  box-shadow: 0 -2px 18px 0 rgba(40,54,70,0.16);
  animation: cookiebanner-appear 0.6s cubic-bezier(0.61,0.01,0.31,1) 1;
}
@keyframes cookiebanner-appear {
  0% { transform: translateY(100%); opacity: 0; }
  98% { transform: translateY(-6px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 0.99rem;
  font-weight: 500;
  flex: 1 1 auto;
  margin-bottom: 0;
}
.cookie-banner .cookie-action {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 30px;
  padding: 8px 24px;
  border: 2px solid var(--secondary);
  background: var(--secondary);
  color: var(--primary);
  margin-left: 0;
  margin-right: 2px;
  transition: background 0.15s, color 0.15s, border 0.12s;
}
.cookie-banner .cookie-btn.cookie-accept {
  background: #85ffc4;
  border-color: #85ffc4;
  color: var(--primary);
}
.cookie-banner .cookie-btn.cookie-settings {
  background: transparent;
  border-color: var(--secondary);
  color: var(--secondary);
}
.cookie-banner .cookie-btn.cookie-reject {
  background: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--secondary);
  outline: none;
}

/******** COOKIE MODAL ********/
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3002;
  background: rgba(40,54,70,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein 0.3s;
}
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--accent);
  color: var(--primary);
  border-radius: 28px;
  box-shadow: 0 8px 42px rgba(40,54,70,0.29);
  border: 3px solid var(--secondary);
  width: 98vw;
  max-width: 480px;
  padding: 38px 26px 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: slideModalUp 0.41s cubic-bezier(.51,1.02,.6,1);
}
@keyframes slideModalUp {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}
.cookie-modal-category label {
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
.cookie-modal-category input[type='checkbox'] {
  accent-color: var(--secondary);
  width: 21px;
  height: 21px;
  margin-right: 6px;
}
.cookie-modal-category input[disabled] {
  opacity: 0.5;
}
.cookie-modal-close {
  background: none;
  color: var(--primary);
  border: none;
  font-size: 2.42rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  position: absolute;
  top: 20px;
  right: 16px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--secondary);
  outline: none;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 6px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 30px;
  border: 2px solid var(--secondary);
  background: var(--secondary);
  color: var(--primary);
  transition: background 0.15s, color 0.15s, border 0.13s;
}
.cookie-modal-actions .cookie-btn.cookie-accept {
  background: #85ffc4;
  border-color: #85ffc4;
  color: var(--primary);
}
.cookie-modal-actions .cookie-btn.cookie-reject {
  background: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}
.cookie-modal-actions .cookie-btn.cookie-cancel {
  background: transparent;
  color: var(--primary);
  border-color: var(--secondary);
}
.cookie-modal-actions .cookie-btn:hover, .cookie-modal-actions .cookie-btn:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--secondary);
  outline: none;
}

/***************** MICRO-ANIMATIONS & UTILITY *****************/
[data-animate],
.fadein {
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}
[data-animate].active,
.fadein.visible {
  opacity: 1 !important;
  transform: none !important;
}

/***************** COLORING/ THEMING TWEAKS *****************/
::-webkit-scrollbar {
  width: 8px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b4d3e2;
}

/************* VISUAL HIERARCHY & GEOMETRIC EFFECTS *************/
section, .section {
  box-shadow: 0 2px 12px var(--shadow);
  border-radius: var(--radius);
}
.hero, .cta {
  box-shadow: 0 4px 22px 0 rgba(40,54,70,0.09)
}
.card, .feature-card, .testimonial-card, .project-list .text-section, .blog-post-list .text-section {
  border-radius: 18px;
}
.card::before, .feature-card::before {
  content: '';
  position: absolute;
  top: -17px;
  left: 22px;
  width: 32px;
  height: 32px;
  background: var(--secondary);
  border-radius: 10px 15px 5px 14px;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

/***** FOCUS STYLES *****/
a:focus, button:focus, .cta-button:focus,
input:focus, textarea:focus, select:focus {
  outline: 2.5px solid var(--secondary);
  outline-offset: 1.5px;
  z-index: 2;
}

/************************************/
/*        END OF STYLES             */
/************************************/
