/* ---------------------- 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #FFFFFF;
  color: #23457C;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #E98127;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #C45C00;
}
ul, ol {
  padding-left: 22px;
}
button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
}
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* ------------ BRAND COLORS & CUSTOM PROPERTIES (for fallback) ------------ */
:root {
  --color-primary: #23457C;
  --color-secondary: #D1E1F0;
  --color-accent: #E98127;
  --color-accent-dark: #C45C00;
  --color-bg: #FFFFFF;
  --color-bg-secondary: #F7FAFC;
  --color-border: #D1E1F0;
  --color-error: #D3001F;
  --color-success: #2EB872;
  --header-shadow: rgba(35,69,124,0.08);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --border-radius: 20px;
  --card-radius: 18px;
  --card-shadow: 0 4px 24px 0 rgba(35,69,124,0.10);
}

/* ------------------- TYPE SCALE & FONT STYLES ------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0.01em;
  color: #23457C;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2.1rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
}
p, li, span {
  font-family: var(--font-body);
  color: #23457C;
}
.subheadline {
  font-size: 1.125rem;
  font-family: var(--font-body);
  color: #E98127;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.cta-text {
  font-size: 1.25rem;
  font-family: var(--font-body);
  color: #C45C00;
  margin-bottom: 28px;
  font-weight: 700;
}
strong {
  color: #23457C;
  font-weight: 700;
}

/* ------------- LAYOUT CONTAINERS & SPACING PATTERNS --------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.header-flex, .footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.footer-flex {
  border-top: 1.5px solid #D1E1F0;
  margin-top: 32px;
  gap: 16px;
}
.section,
.policy-section,
.about-section,
.team-section,
.approach-section,
.contact-info-section,
.services-list-section,
.listings-search,
.market-reports,
.faq-section,
.thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-secondary);
  border-radius: var(--border-radius);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---------- FLEX WRAPS & SPACING FOR FEATURE & CARD GRIDS ---------- */
.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  margin-bottom: 4px;
}
.feature-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFFFFF;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 24px 20px 24px 20px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 250px;
  position: relative;
  transition: transform 0.18s cubic-bezier(.62,.14,.34,1.11),box-shadow 0.18s;
}
.feature-item img, .service-item img {
  height: 56px;
  width: 56px;
  filter: drop-shadow(0 4px 10px rgba(233,129,39,0.10));
  background: #FFF4E9;
  padding: 8px;
  border-radius: 16px;
}
.feature-item:hover, .service-item:hover {
  transform: translateY(-7px) scale(1.027);
  box-shadow: 0 8px 36px 0 rgba(233,129,39,0.13);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 12px 0 22px 0;
  list-style: none;
}
.services-list li {
  background: #FFF4E9;
  color: #C45C00;
  border-radius: 16px;
  padding: 7px 19px;
  font-size: 1.0625rem;
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  transition: background 0.24s;
}
.services-list li:hover {
  background: #E98127;
  color: #fff;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFFFFF;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 30px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  transform: translateY(-5px) scale(1.016);
  box-shadow: 0 8px 38px 0 rgba(35,69,124,0.13);
}

.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;
  margin-bottom: 32px;
}

/***** TESTIMONIAL CARDS *****/
.testimonials {
  background: #FFFFFF;
  border-radius: var(--border-radius);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #FFF4E9;
  color: #23457C;
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(35,69,124,0.06);
  min-width: 240px;
  max-width: 520px;
  font-family: var(--font-body);
  font-size: 1.125rem;
  position: relative;
  transition: box-shadow 0.15s, transform 0.16s;
}
.testimonial-card span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: #E98127;
  letter-spacing: 0.025em;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px 0 rgba(35,69,124,0.11);
  transform: translateY(-6px) scale(1.022);
}

/***** REPORTS, LISTINGS, FAQ, BLOCKS *****/
.report-block, .insight-block, .listing-summary-block, .faq-item {
  background: #D1E1F0;
  border-radius: 16px;
  padding: 18px 20px;
  margin: 16px 0 28px 0;
  box-shadow: 0 1px 5px 0 rgba(35,69,124,0.07);
}
.listing-summary-block .text-section, .contact-info-section .text-section {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item h3 {
  color: #E98127;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.contact-prompt {
  margin-top: 30px;
  color: #23457C;
  font-size: 1.12rem;
}
.contact-prompt a {
  display: inline-block;
  color: #23457C;
  font-weight: 600;
  border-bottom: 2px dashed #E98127;
  transition: color 0.18s, border-color 0.17s;
}
.contact-prompt a:hover {
  color: #E98127;
  border-color: #C45C00;
}
.map-placeholder {
  background: #f5ffea;
  border: 1.5px dashed #D1E1F0;
  color: #6CAF37;
  border-radius: 15px;
  padding: 18px;
  font-size: 1.07rem;
  margin: 26px 0 2px 0;
  display: flex;
  align-items: center;
}

/***** POLICIES & LEGAL TEXT *****/
.policy-section .content-wrapper, .policy-section .text-section {
  gap: 18px;
}
.policy-section h2 {
  color: #E98127;
  margin-top: 20px;
}

/***** HERO SECTIONS *****/
.hero {
  background: linear-gradient(90deg, #D1E1F0 0%, #FFF4E9 100%);
  padding: 64px 0 60px 0;
  border-radius: 0 0 42px 42px;
  margin-bottom: 56px;
  box-shadow: 0 8px 30px 0 rgba(35,69,124,0.08);
  animation: slide-in-top 0.82s cubic-bezier(.72,1.5,.46,.98) 80ms both;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
}

@keyframes slide-in-top {
  0% { opacity:0; transform: translateY(-60px) scale(0.98); }
  100% { opacity:1; transform: translateY(0) scale(1); }
}

/***** CALL TO ACTION FINAL SECTION *****/
.cta-final {
  background: #E98127;
  color: #FFFFFF;
  border-radius: var(--border-radius);
  padding: 44px 20px;
  margin-bottom: 46px;
  text-align: center;
  box-shadow: 0 8px 24px 0 rgba(35,69,124,0.11);
  animation: pop-bounce 0.61s cubic-bezier(.87, -.41, 0.19, 1.48) 90ms both;
}
.cta-final h2, .cta-final .cta-text{
  color: #fff;
  letter-spacing: 0.02em;
}

@keyframes pop-bounce {
  0% { transform: scale(0.92); }
  80% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
/***** BUTTONS & INTERACTIVE LINKS *****/
.cta-btn, .cta-btn.primary {
  display: inline-block;
  padding: 13px 36px;
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 700;
  background: var(--color-accent);
  color: #fff;
  border-radius: 32px;
  border: none;
  box-shadow: 0 3px 12px 0 rgba(233,129,39,0.11);
  margin-top: 8px;
  letter-spacing: 0.015em;
  transition: background 0.17s, transform 0.18s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.cta-btn.primary {
  background: var(--color-primary);
  color: #fff;
}
.cta-btn:hover, .cta-btn:focus {
  background: #C45C00;
  color: #fff;
  transform: scale(1.05) translateY(-1px);
  box-shadow: 0 8px 32px 0 rgba(233,129,39,0.15);
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #E98127;
  color: #fff;
}

/***** TABLES *****/
table {
  width: 100%;
  margin-bottom: 18px;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
th, td {
  border: 1px solid #D1E1F0;
  padding: 12px 16px;
}
th {
  background-color: #23457C;
  color: #fff;
  font-family: var(--font-display);
}

/***** HEADER & NAVIGATION *****/
header {
  background: #fff;
  box-shadow: 0 3px 18px 0 var(--header-shadow);
  min-height: 56px;
  position: sticky;
  top: 0;
  z-index: 60;
  border-radius: 0 0 20px 20px;
}
.logo-link img {
  height: 54px;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 1.5px 8px 0 rgba(35,69,124,0.07);
  background: #fff;
}
.desktop-nav {
  display: flex;
  gap: 22px;
}
.desktop-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #23457C;
  padding: 7px 13px;
  border-radius: 16px;
  letter-spacing: 0.01em;
  transition: background 0.14s, color 0.13s;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  background: #D1E1F0;
  color: #E98127;
}

/***** MOBILE MENU & BURGER BUTTON *****/
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  font-size: 2.4rem;
  border-radius: 17px;
  padding: 4px 15px 4px 14px;
  margin-left: 10px;
  line-height: 1;
  transition: background 0.18s, color 0.2s, transform 0.17s;
  box-shadow: 0 3px 12px 0 rgba(233,129,39,0.15);
  border: none;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #E98127;
}
.mobile-menu-toggle:hover {
  background: #C45C00;
  color: #FFF4E9;
  transform: scale(1.12);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 92vw;
  max-width: 340px;
  background: #D1E1F0;
  z-index: 1000;
  transform: translateX(110vw);
  transition: transform 0.31s cubic-bezier(.62,.2,.49,.84);
  box-shadow: -1px 0 25px 0 rgba(35,69,124,0.18);
  padding: 36px 22px 24px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  color: #C45C00;
  background: none;
  margin-bottom: 24px;
  border: none;
  cursor: pointer;
  border-radius: 14px;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #E98127;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  color: #23457C;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  padding: 11px 10px;
  margin-left: 0;
  border-radius: 13px;
  transition: background 0.14s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #E98127;
  color: #fff;
}

@media (max-width: 1024px) {
  .header-flex, .footer-flex {
    flex-direction: row;
    gap: 12px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .service-item {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-flex {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .section,
  .policy-section,
  .about-section,
  .team-section,
  .approach-section,
  .contact-info-section,
  .services-list-section,
  .listings-search,
  .market-reports,
  .faq-section,
  .thank-you-section {
    padding: 28px 7px;
    margin-bottom: 34px;
  }
  .hero {
    padding: 40px 0 34px 0;
    border-radius: 0 0 28px 28px;
    margin-bottom: 28px;
  }
  .cta-final {
    padding: 38px 8px;
    margin-bottom: 32px;
    border-radius: 21px;
  }
  .feature-grid, .service-grid {
    flex-direction: column;
    gap: 12px;
  }
  .feature-item, .service-item {
    max-width: 100%;
    min-width: 0;
  }
  .content-wrapper {
    gap: 10px;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
}
/***** FOOTER STYLES *****/
footer {
  background: #F7FAFC;
  border-radius: 20px 20px 0 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
}
.footer-brand img {
  height: 38px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  font-size: 1rem;
  color: #E98127;
  transition: color 0.12s, text-decoration 0.13s;
}
.footer-nav a:hover {
  color: #C45C00;
  text-decoration: underline;
}

/* ------------------- FILTERS AND FORMS ------------------- */
.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 21px;
  padding: 16px 22px;
  background: #F7FAFC;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px 0 rgba(35,69,124,0.042);
}
.filter-form label {
  font-weight: 700;
  color: #23457C;
  font-family: var(--font-display);
  font-size: 1rem;
}
.filter-form select {
  font-size: 1rem;
  background: #fff;
  color: #23457C;
  border: 1.5px solid #D1E1F0;
  border-radius: 9px;
  padding: 5px 9px;
  margin-left: 7px;
  margin-right: 16px;
  min-width: 110px;
  transition: border 0.17s;
}
.filter-form select:focus {
  border: 1.5px solid #C45C00;
  outline: none;
}
@media (max-width: 500px) {
  .filter-form {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 12px 6px;
  }
  .footer-flex {
    padding-top: 7px;
    padding-bottom: 8px;
    gap: 5px;
  }
}

/***** PRICE TEXT IN SERVICES *****/
.price {
  color: #E98127;
  font-weight: 700;
  font-size: 1.06rem;
  margin-top: 12px;
  letter-spacing: 0.015em;
}

/***** ANIMATIONS FOR CARDS & ELEMENTS *****/
.feature-item, .service-item, .testimonial-card, .card, .listing-summary-block, .report-block, .faq-item {
  animation: fade-in-card 1.3s cubic-bezier(.36, 1.48, .47, 1) backwards;
}
@keyframes fade-in-card {
  0% {opacity:0; transform: translateY(35px) scale(0.985);}
  98%{opacity:.99;}
  100% {opacity:1; transform: none;}
}

/***** THANK YOU SECTION *****/
.thank-you-section {
  text-align: center;
  background: #fffbe9;
  border: 2.5px dashed #E98127;
  box-shadow: 0 2px 16px 0 rgba(35,69,124,0.06);
  border-radius: 22px;
}
.thank-you-section .cta-btn.primary {
  margin-top: 34px;
}

/***** COOKIE CONSENT BANNER & MODAL *****/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #23457C;
  color: #fff;
  z-index: 2100;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 18px 22px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  box-shadow: 0 -3px 24px 0 rgba(35,69,124,0.18);
  animation: slide-in-cookies 0.51s cubic-bezier(.58,1.4,0.27,1) both;
}
@keyframes slide-in-cookies {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-btn {
  margin: 0 0 0 16px;
  padding: 9px 22px;
  border-radius: 18px;
  background: #E98127;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 2.5px 10px 0 rgba(233,129,39,0.13);
  transition: background 0.13s, color 0.13s, transform 0.14s;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #23457C;
  border: 2px solid #E98127;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #C45C00;
  color: #fff;
  transform: scale(1.04);
}
.cookie-banner .cookie-btn.settings:hover {
  background: #E98127;
  color: #fff;
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2200;
  background: rgba(35,69,124,0.31);
  justify-content: center;
  align-items: center;
  animation: fade-in-modal-bg 0.28s cubic-bezier(.61,1.32,0.32,1) both;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fade-in-modal-bg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #23457C;
  border-radius: 23px;
  box-shadow: 0 9px 48px 0 rgba(35,69,124,0.21);
  width: 94vw;
  max-width: 420px;
  padding: 34px 27px 32px 27px;
  position: relative;
  animation: pop-in-modal 0.32s cubic-bezier(.64,1.5,0.34,.93) both;
}
@keyframes pop-in-modal {
  from { opacity: 0; transform: scale(0.89); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  color: #E98127;
  font-size: 1.38rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.cookie-modal form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1.03rem;
  cursor: pointer;
  margin-bottom: 7px;
}
.cookie-modal input[type='checkbox'], .cookie-modal input[type='radio'] {
  accent-color: #E98127;
  width: 17px;
  height: 17px;
  margin: 0;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 6px;
}
.cookie-modal .cookie-btn {
  margin: 0;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 19px;
  font-size: 1.2rem;
  color: #C45C00;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 14px;
}
.cookie-modal .modal-close:hover { color: #E98127; background: #FFF4E9; }

/***** UTILS: COLOR & DECORATIVE CLASSES *****/
.bg-primary { background: #23457C !important; color: #fff !important; }
.bg-accent { background: #E98127 !important; color: #fff !important; }
.bg-secondary { background: #D1E1F0 !important; color: #23457C !important; }
.bg-white { background: #fff !important; color: #23457C !important; }
.gradient-underline {
  border-bottom: 3px solid #E98127;
  padding-bottom: 3px;
}
.hr-accent {
  border: 0;
  border-top: 3px dashed #E98127;
  margin: 30px 0;
}

/***** PLAYFUL DYNAMIC ACCENTS *****/
.hero h1, .cta-final h2, .about-section h1, .thank-you-section h1 {
  font-family: 'Montserrat', var(--font-display), sans-serif;
  font-weight: 900;
  color: #23457C;
  letter-spacing: 0.02em;
  text-shadow: 1.5px 5px 0 #D1E1F0, 0 1px 0 #FFF4E9;
}
h2, h3 {
  text-shadow: 0.5px 2.5px 0 #D1E1F0;
  letter-spacing: 0.012em;
}
.cta-final, .footer-brand span, .cookie-banner {
  font-family: 'Montserrat', var(--font-display), sans-serif;
}
/***** DECORATIVE BUBBLE FOR PLAYFUL DYNAMIC FEEL *****/
@media (min-width: 900px) {
  .hero .container::before {
    content: '';
    position: absolute;
    left: -134px;
    top: 16px;
    width: 190px;
    height: 190px;
    background: #E98127;
    border-radius: 90% 49% 77% 53%/60% 63% 57% 77%;
    opacity: 0.11;
    z-index: 0;
    filter: blur(22px);
    pointer-events: none;
  }
}

/***** FOCUS STATES FOR ACCESSIBILITY *****/
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #E98127;
  outline-offset: 2.5px;
}

/* ------------------- END OF STYLE.CSS ------------------- */