/* ===================================================================
   RADIANT MASON - Creative Artistic STYLE - Main Stylesheet
   =================================================================== */
/* --------------------- 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 {
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #253858;
  background: #F7F9FB;
  line-height: 1.6;
  font-size: 16px;
  position: relative;
  /* Artistic background accent */
  background-image: url('../assets/bg-artistic.svg');
  background-size: 750px 500px;
  background-repeat: no-repeat;
  background-position: top 0 right 0;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

ul, ol {
  padding-left: 1.5em;
}

a {
  color: #24A19C;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}

a:hover, a:focus {
  color: #253858;
  text-decoration: underline;
}

/* ----------------------- TYPOGRAPHY -------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: #253858;
  letter-spacing: 0.025em;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #253858;
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
}
/* Artistic highlight for headings (pseudo underline) */
h1, h2, h3 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 8px;
  background: #24A19C;
  border-radius: 2px;
  opacity: 0.4;
}
h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 4px;
  background: #24A19C;
  border-radius: 1px;
  opacity: 0.3;
}

blockquote {
  background: #f0fcfa;
  border-left: 5px solid #24A19C;
  padding: 18px 28px;
  margin: 24px 0;
  font-style: italic;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #253858;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(36,161,156,0.025);
}

/* -------------------- LAYOUT CONTAINERS ------------------------ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------- HEADER & NAVIGATION ---------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(36,161,156,0.05);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-top: 0;
  padding-bottom: 0;
}
.brand-logo {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: #253858;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 5px;
  transition: background 0.18s cubic-bezier(.4,0,.2,1), color 0.2s;
  color: #253858;
  background: none;
}
.main-nav a.cta.primary {
  background: #24A19C;
  color: #fff;
  box-shadow: 0 2px 8px 0 rgba(36,161,156,0.15);
  border-radius: 10px;
  font-size: 1.06rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a.cta.primary:hover, 
.main-nav a.cta.primary:focus {
  background: #1b7a74;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(36,161,156,0.18);
}
.main-nav a:hover, 
.main-nav a:focus {
  background: #F0FCFA;
}

.mobile-menu-toggle {
  display: none;
  background: #24A19C;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 12px;
  padding: 4px 14px;
  margin-left: 20px;
  cursor: pointer;
  transition: background 0.3s, color 0.2s;
  z-index: 101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #253858;
  color: #24A19C;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  max-width: 390px;
  background: #253858;
  box-shadow: -6px 0 40px rgba(36,161,156,0.28);
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1);
  padding: 38px 24px 32px 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 28px;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #24A19C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.14rem;
  letter-spacing: 0.02em;
  padding: 12px 0;
  transition: background 0.2s, color 0.2s;
  border-radius: 8px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #24A19C;
  color: #fff;
}

/* Hide main nav, show burger on mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ------------------------- HERO ----------------------------- */
.hero, .product-hero, .services-hero, .support-hero, .contact-hero, .thank-you {
  background: linear-gradient(105deg, #24A19C 0%, #F7F9FB 80%);
  position: relative;
  overflow: hidden;
}
.hero .container, .product-hero .container, .services-hero .container, .support-hero .container, .contact-hero .container, .thank-you .container {
  min-height: 365px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper, .product-hero .content-wrapper, .services-hero .content-wrapper, .support-hero .content-wrapper, .contact-hero .content-wrapper, .thank-you .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
  background: rgba(255,255,255,0.89);
  padding: 36px 32px;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(36,161,156,0.10);
  margin: 56px 0 40px 0;
}
.hero h1, .product-hero h1, .services-hero h1, .support-hero h1, .contact-hero h1, .thank-you h1 {
  color: #253858;
  font-size: 2.7rem;
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero .container, .product-hero .container, .services-hero .container, .support-hero .container, .contact-hero .container, .thank-you .container {
    min-height: 220px;
    padding-top: 36px;
    padding-bottom: 24px;
  }
  .hero .content-wrapper, .product-hero .content-wrapper, .services-hero .content-wrapper, .support-hero .content-wrapper, .contact-hero .content-wrapper, .thank-you .content-wrapper {
    max-width: 98vw;
    padding: 24px 10px;
    margin: 16px 0 8px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.42rem;
  }
}

/* ------------------------ FEATURES ---------------------- */
.features {
  background: #fff;
}
.features .feature-grid, .features ul.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.features .feature-grid li {
  flex: 1 1 230px;
  min-width: 250px;
  background: #F0FCFA;
  border-radius: 16px;
  padding: 26px 24px 22px 24px;
  margin-bottom: 20px;
  box-shadow: 0 3px 14px 0 rgba(36,161,156,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 2px solid transparent;
}
.features .feature-grid li:hover, .features .feature-grid li:focus {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(36,161,156,0.16);
  border-color: #24A19C;
}
.features .feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.features .feature-grid h3 {
  margin-bottom: 4px;
  font-size: 1.3rem;
}

/* --------------------- SERVICE HIGHLIGHTS ----------------------- */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.service-card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(36,161,156,0.09);
  padding: 30px 22px 26px 22px;
  margin-bottom: 20px;
  position: relative;
  border-left: 6px solid #24A19C;
  transition: box-shadow 0.17s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card:hover {
  box-shadow: 0 8px 36px 0 rgba(36,161,156,0.17);
  transform: translateY(-4px) scale(1.02);
  border-left-color: #253858;
}
.service-card .price {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #24A19C;
  color: #fff;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.03em;
}

/* --------------------- TESTIMONIALS --------------------------- */
.testimonials {
  background: #F0FCFA;
  padding: 40px 0;
}
.testimonials .testimonial-card {
  background: #fff;
  color: #253858;
  border-radius: 13px;
  box-shadow: 0 2px 13px 0 rgba(36,161,156,0.08);
  margin-bottom: 22px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 4px solid #24A19C;
  min-width: 0;
  max-width: 640px;
}
.testimonials .testimonial-card p {
  font-size: 1.13rem;
  line-height: 1.60;
  color: #253858;
}
.testimonials .testimonial-card strong {
  color: #24A19C;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Ensure contrast in testimonials */
.testimonials .testimonial-card, .testimonial-card {
  background: #fff;
  color: #253858;
}
/* ------------------- STEP-BY-STEP / FAQ --------------------- */
.step-by-step .steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.step-by-step .steps-list li {
  flex: 1 1 220px;
  min-width: 230px;
  background: #F0FCFA;
  padding: 24px 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(36,161,156,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
}
.step-by-step .steps-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(36,161,156,0.06);
  padding: 22px 24px;
  border-left: 4px solid #24A19C;
}
.faq-item h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
  color: #253858;
}

/* ------------------------ POLICIES (& TEXT) ----------------------- */
.policy-section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0 45px 0;
}
.policy-section .text-section {
  margin-bottom: 20px;
}
.policy-section h2 {
  margin-top: 18px;
}

.text-section {
  margin-bottom: 24px;
}
.text-section ul {
  margin-top: 8px;
  margin-bottom: 16px;
}
.text-section li {
  margin-bottom: 7px;
}

/* ------------------- TABLES (for comparison) ---------------------- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 13px;
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px 0 rgba(36,161,156,0.06);
}
.comparison-table th, .comparison-table td {
  padding: 18px 11px;
  text-align: left;
  border-bottom: 1px solid #e4e8ec;
  font-family: 'Montserrat', Arial, sans-serif;
}
.comparison-table th {
  background: #24A19C;
  color: #fff;
  font-weight: 700;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table td {
  color: #253858;
}

/* ------------------------- CTA SECTION ----------------------- */
.cta-section {
  background: #24A19C;
  color: #fff;
  padding: 50px 0;
  margin: 0;
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cta-section p {
  color: #e5faf9;
  font-size: 1.2rem;
  margin-bottom: 22px;
}

/* ---------------------- BUTTONS, LINKS ---------------------- */
.cta, .cta.primary, .cta.secondary, .cta:visited {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 11px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  display: inline-block;
  box-shadow: 0 2px 14px 0 rgba(36,161,156,0.18);
  margin-top: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  text-align: center;
}
.cta.primary {
  background: #24A19C;
  color: #fff;
  border: 2px solid #24A19C;
}
.cta.primary:hover, .cta.primary:focus {
  background: #253858;
  border-color: #253858;
  color: #fff;
}
.cta.secondary {
  background: transparent;
  color: #24A19C;
  border: 2px solid #24A19C;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #24A19C;
  color: #fff;
}
.link {
  color: #24A19C;
  text-decoration: underline;
  font-weight: 500;
  margin: 0 10px;
  font-size: 1.02rem;
}
.link:hover, .link:focus {
  color: #253858;
}

/* ------------------------ FOOTER ----------------------- */
footer {
  background: #253858;
  color: #fff;
  padding: 0;
  padding-top: 30px;
  padding-bottom: 8px;
  border-top: 6px solid #24A19C;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin: 0;
}
footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}
.footer-brand span {
  color: #fff;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #24A19C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #fff;
  font-size: 0.96rem;
}
.footer-contact a {
  color: #24A19C;
  text-decoration: underline;
  transition: color 0.15s;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-legal {
  width: 100%;
  text-align: right;
  margin-top: 18px;
  color: #7ae3db;
  font-size: 0.93rem;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-legal {
    text-align: left;
    margin-top: 10px;
  }
}

/* -------------------- RESPONSIVE LAYOUTS -------------------- */
@media (max-width: 1140px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width:900px) {
  .container {
    max-width: 90vw;
    padding: 0 2vw;
  }
  .features .feature-grid, .services-grid, .step-by-step .steps-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .features .feature-grid, .services-grid, .step-by-step .steps-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .service-card, .steps-list li {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 550px) {
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .hero .container, .product-hero .container, .services-hero .container, .support-hero .container, .contact-hero .container, .thank-you .container {
    padding: 0 3vw 24px 3vw;
  }
  .service-card {
    padding: 18px 10px 14px 10px;
    font-size: 0.97rem;
  }
  .testimonial-card { padding: 14px 7px; }
}

/* ------------------- COOKIE CONSENT BANNER ------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #253858;
  color: #fff;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9000;
  box-shadow: 0 -3px 20px rgba(36,161,156,0.15);
  animation: bannerIn 0.4s cubic-bezier(.42,0,.58,1);
}
@keyframes bannerIn {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.03rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 2px 0;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.19s, color 0.19s;
}
.cookie-banner .accept {
  background: #24A19C;
  color: #fff;
  font-weight: 700;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #1b7a74;
}
.cookie-banner .reject {
  background: #fff;
  color: #24A19C;
  font-weight: 700;
  border: 2px solid #24A19C;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #24A19C;
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 700;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F0FCFA;
  color: #253858;
}
/* --------- COOKIE MODAL ----------- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(37,56,88,0.76);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  animation: modalPop 0.4s cubic-bezier(.43,0,.7,1);
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(1.1); }
  to   { opacity: 1; transform: scale(1); }
}
.cookie-modal .modal-content {
  background: #fff;
  color: #253858;
  border-radius: 20px;
  max-width: 410px;
  width: 92vw;
  padding: 36px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 6px 44px rgba(36,161,156,0.14);
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 11px 0 13px 0;
}
.cookie-modal .cookie-category input[type=checkbox] {
  accent-color: #24A19C;
  width: 19px; height: 19px;
  margin-right: 7px;
}
.cookie-modal .cookie-category label {
  font-weight: 700;
  font-size: 1rem;
  color: #253858;
}
.cookie-modal .always-on {
  color: #24A19C;
  font-style: italic;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #253858;
  cursor: pointer;
  z-index: 51;
}
.cookie-modal .close-modal:focus, 
.cookie-modal .close-modal:hover {
  color: #24A19C;
}

@media (max-width: 540px){
  .cookie-modal .modal-content {
    padding: 18px 5vw 20px 5vw;
    max-width: 99vw;
  }
}

/* ---------------- ARTSY DECORATIVE SHAPES ------------------- */
.section, .services-grid, .features, .hero, .product-hero, .step-by-step, .faq, .policy-section {
  position: relative;
}
.section::before, .features::before, .services-grid::before, .hero::before, .product-hero::before, .step-by-step::before,
.policy-section::before {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 45% 55% 46% 54% / 57% 36% 64% 43%;
  background: #f0fcfa;
  opacity: 0.58;
  width: 160px;
  height: 100px;
  top: -30px;
  right: -30px;
  transform: rotate(-7deg);
}
.section::after, .features::after, .services-grid::after, .hero::after, .product-hero::after, .policy-section::after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 42% 58% 55% 45% / 57% 44% 56% 43%;
  background: #24A19C;
  opacity: 0.08;
  width: 140px;
  height: 60px;
  bottom: -30px;
  left: -24px;
  transform: rotate(17deg);
}

/* ----------------- THANK-YOU, CONTACT -------------------- */
section.thank-you, section.contact-hero {
  background: linear-gradient(93deg, #F7F9FB 0%, #24A19C 100%);
}
section.thank-you .content-wrapper, section.contact-hero .content-wrapper {
  background: #fff;
}

/* ----------------- MISC UTILS & ANIMATIONS ---------------- */
.fade-in {
  animation: fadeIn 0.7s cubic-bezier(.32,0,.67,1) forwards;
  opacity: 0;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Remove accidental overlap: force minimum spacing */
.section + .section,
.features + .section,
.service-highlight + .section,
.cta-section + .section,
.policy-section + .section {
  margin-top: 24px;
}

.card:not(:last-child),
.service-card:not(:last-child),
.testimonial-card:not(:last-child),
.faq-item:not(:last-child) {
  margin-bottom: 20px;
}

/* Guarantee min 20px separation between all cards/sections */
.card-container > *,
.features .feature-grid > *,
.services-grid > * {
  margin-bottom: 20px;
}

/* ------ FONT FAMILY DECLARATIONS (fallbacks incl. Google Fonts) -- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,700&display=swap');

/* Focus outlines for accessibility */
a:focus,
button:focus,
.cta:focus,
input:focus,
select:focus {
  outline: 2px solid #24A19C;
  outline-offset: 2px;
}

/* Remove number arrows for inputs (if any present in future) */
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}

/* Hide scrollbars for horizontal on mobile nav, show on desktop */
.mobile-menu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* -------- HANDLES ENSURING FLEX-ONLY LAYOUTS! ------------- */
/* All multi-column layouts (including .content-grid, .services-grid, .step-by-step .steps-list, etc.) use flexbox ONLY as per standard above. No grid or columns anywhere. */
