/* ==== 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F8F8FA;
  font-family: 'Roboto', Arial, sans-serif;
  color: #272D32;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #1DBF94;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #24e1b6;
}
ul, ol {
  padding-left: 1.2em;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid #ececec;
}

/* ==== VARIABLES ==== */
:root {
  --primary: #272D32;
  --secondary: #1DBF94;
  --accent: #F8F8FA;
  --display-font: 'Montserrat', 'Arial Rounded MT', Arial, sans-serif;
  --body-font: 'Roboto', Arial, sans-serif;
  --section-radius: 28px;
  --card-radius: 22px;
  --shadow-main: 0 4px 28px 0 rgba(32,32,55,0.09);
  --shadow-hover: 0 6px 36px 0 rgba(32,32,55,0.16);
  --brand-gradient: linear-gradient(90deg,#1DBF94 0%,#38e3cc 70%,#7c7ff7 100%);
}

/* ==== CONTAINER LAYOUT ==== */
.container {
  max-width: 1124px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--primary);
  margin-bottom: 12px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-top: 0;
}
h2 {
  font-size: 2rem;
  line-height: 1.24;
  margin-top: 0;
}
h3 {
  font-size: 1.375rem;
  line-height: 1.32;
}
.subtitle {
  color: #595f6b;
  font-size: 1.25rem;
  font-family: var(--display-font);
  margin-bottom: 16px;
  font-style: italic;
  letter-spacing: .4px;
}
p, ul, ol, table, blockquote {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.68;
  margin-bottom: 12px;
}
b, strong {
  font-weight: 700;
  color: #16181a;
}
small {
  color: #838493;
  font-size: .938em;
}

/* ==== GLOBAL SPACING PATTERNS ==== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--section-radius);
  background: #fff;
  box-shadow: var(--shadow-main);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 16px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-main);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 100%;
  transition: box-shadow .22s, transform .16s;
  padding: 28px 20px;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px) scale(1.025);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f4fefb;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(32, 171, 140,0.12);
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  max-width: 540px;
  color: #1a1c20;
  font-size: 1.07rem;
  transition: box-shadow .16s;
}
.testimonial-card b {
  font-size: 1.05em;
  text-align: right;
}
@media (max-width: 600px) {
  .testimonial-card {
    font-size: 0.98rem;
    gap: 13px;
    padding: 13px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ==== HEADER STYLES ==== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 28px 0 rgba(32, 45, 50, 0.11);
  position: sticky;
  top: 0; left: 0;
  z-index: 101;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  min-height: 80px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
nav.main-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .2px;
  color: #252c3d;
  position: relative;
  padding: 6px 2px 7px 2px;
  transition: color .16s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--secondary);
}
.cta-btn {
  display: inline-block;
  font-family: var(--display-font);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: var(--secondary);
  color: #fff;
  border-radius: 27px;
  padding: 13px 34px;
  box-shadow: 0 3px 16px 0 rgba(29,191,148,0.11);
  border: none;
  cursor: pointer;
  outline: 0;
  transition: background .22s, box-shadow .21s, transform .13s;
  margin-left: 16px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #13a77c;
  box-shadow: 0 6px 30px -2px rgba(36, 203, 149, 0.24);
  transform: translateY(-2px) scale(1.035);
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  margin-left: 18px;
  z-index: 201;
  outline: 0;
  transition: color .14s, transform .17s;
}
.mobile-menu-toggle:active {
  transform: scale(1.15);
  color: var(--secondary);
}
@media (max-width: 1024px) {
  nav.main-nav,.cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 300;
  transform: translateX(-110vw);
  transition: transform .34s cubic-bezier(.65,.05,.36,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 0 2px 24px 2px rgba(27,191,148,0.11);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--secondary);
  align-self: flex-end;
  margin: 16px 20px 4px 0;
  cursor: pointer;
  z-index: 305;
  transition: color .16s, transform .13s;
}
.mobile-menu-close:active {
  transform: scale(1.12);
  color: #12a76d;
}
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 16px;
  gap: 8px;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  font-size: 1.14rem;
  font-family: var(--display-font);
  font-weight: 600;
  color: var(--primary);
  line-height: 2.5;
  padding: 5px 0;
  width: 100%;
  border-bottom: 1px solid #f2f4f7;
  transition: color .12s, background .13s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f0fdfa;
  color: var(--secondary);
}

/* ==== HERO & FEATURE STYLES ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: rgba(29,191,148,0.095);
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(29,191,148,0.08);
  padding: 24px 18px 16px 18px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 200px;
  max-width: 330px;
  transition: box-shadow .18s, transform .15s;
  position: relative;
  margin-bottom: 20px;
}
.feature-grid img {
  width: 56px;
  height: 56px;
  margin-bottom: 4px;
  filter: drop-shadow(0 3px 12px #1dbf9444);
}
.feature-grid > div:hover {
  box-shadow: 0 9px 36px 0 rgba(29, 191, 148, 0.19);
  transform: translateY(-3px) scale(1.04);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 12px;
}
.service-grid > div {
  background: #fff;
  border-radius: 19px;
  box-shadow: var(--shadow-main);
  padding: 21px 16px 19px 16px;
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  transition: box-shadow .19s, border-color .13s;
  border: 2px solid #f1f8f5;
}
.service-grid > div:hover {
  box-shadow: var(--shadow-hover);
  border-color: #1dbf94;
}
.price {
  font-size: 1.13rem;
  color: #fff;
  background: #1dbf94;
  border-radius: 9px;
  padding: 3px 16px;
  font-family: var(--display-font);
  margin-top: 9px;
  font-weight: 700;
  letter-spacing: .2px;
  align-self: flex-end;
}

ul.service-list, ul.contact-info {
  font-weight: 500;
  margin-bottom: 20px;
  color: #21242b;
}
ul.service-list li {
  padding-left: 6px;
  margin-bottom: 10px;
}

/* ==== TEXT SECTION & LIST ==== */
.text-section {
  margin-bottom: 18px;
}
.text-section ul {
  list-style: disc inside;
}
.text-section h3 {
  font-size: 1.17rem;
  margin: 11px 0 6px 0;
  color: #24bb9d;
}

/* ==== TABLES ==== */
table {
  border-radius: 12px;
  box-shadow: 0 2px 24px 0 rgba(29,191,148,0.10);
  background: #fff;
  overflow: hidden;
  margin-bottom: 32px;
}
thead {
  background: #1dbf94;
  color: #fff;
  font-family: var(--display-font);
}
th {
  font-size: 1.07rem;
  font-weight: 700;
  padding-top: 13px;
  padding-bottom: 13px;
}
tbody tr:nth-child(even) {
  background: #f7faf9;
}
tbody th, tbody td {
  font-family: var(--body-font);
}

/* ==== FOOTER ==== */
footer {
  width: 100%;
  background: #171c1f;
  color: #f8f8fa;
  margin-top: 50px;
  padding: 44px 0 19px 0;
  font-size: 1rem;
  border-radius: 36px 36px 0 0;
}
footer .container { 
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
}
.logo-footer img {
  width: 56px;
  height: auto;
  margin-top: -12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #1dbf94;
  font-family: var(--display-font);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: .07px;
  transition: color .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #32e1c9;
}
.footer-contact {
  color: #b6fff1;
  font-size: .96rem;
}
.footer-contact p {
  margin-bottom: 0;
  line-height: 1.7;
  font-family: var(--body-font);
  color: #e6f7f3;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 8px;
  }
  footer {
    padding: 30px 0 10px 0;
  }
}

/* ==== BUTTONS & INTERACTIVES ==== */
button, input[type=button], input[type=submit] {
  font-family: var(--display-font);
  font-size: 1rem;
}
button {
  cursor: pointer;
  border: none;
}

/* ==== ANIMATED SCHEMATIC ELEMENTS & ARTISTIC FLOURISHES ==== */
h1, h2 {
  background: var(--brand-gradient);
  background-clip: text;
  color: #12a76d;
  -webkit-background-clip: text;
}
h1 {
  text-shadow: 0 3px 16px #1dbf9440, 0 2px 0px #fff;
}
.section {
  border-left: 9px solid #1dbf94;
  border-right: 4px solid #7c7ff7;
  position: relative;
  overflow: hidden;
}
.section::before {
  content: '';
  position: absolute;
  left: -15px;
  top: -36px;
  width: 60px;
  height: 120px;
  background: #7c7ff7;
  border-radius: 60px 60px 20px 20px;
  opacity: 0.07;
  pointer-events: none;
}
.section::after {
  content: '';
  position: absolute;
  right: -12px;
  bottom: -14px;
  width: 36px;
  height: 70px;
  background: #1dbf94;
  border-radius: 20px 20px 32px 32px;
  opacity: 0.09;
  pointer-events: none;
}

/* ==== ARTISTIC FONTS FOR HERO ==== */
.hero-title, h1, h2, h3 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
}

/* ==== FORMATTING ENHANCEMENT FOR OL/UL/LISTS ==== */
ol {
  list-style-type: decimal;
  margin-left: 1.35em;
  margin-bottom: 12px;
}
ul {
  list-style-type: disc;
  margin-left: 1em;
  margin-bottom: 11px;
}

/* ==== RESPONSIVE BEHAVIOR ==== */
@media (max-width: 992px) {
  .service-grid, .feature-grid, .card-container, .content-grid {
    gap: 16px;
    justify-content: flex-start;
  }
  .card, .feature-grid > div, .service-grid > div {
    min-width: 220px;
    max-width: 100%;
    flex: 1 1 220px;
  }
  nav.main-nav {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.53rem;
  }
  h2 {
    font-size: 1.21rem;
  }
  .container,.content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #23272d;
  color: #fff;
  z-index: 400;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 21px 24px;
  box-shadow: 0 0 32px 3px rgba(40,40,60,0.21);
  font-family: var(--body-font);
  font-size: 1rem;
  gap: 16px;
  animation: fadeInCookie .7s;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 7px;
    gap: 9px;
    font-size: .89rem;
  }
}
.cookie-banner button {
  margin: 0 8px 0 0;
  font-size: 1rem;
  border-radius: 20px;
  padding: 8px 22px;
  font-family: var(--display-font);
  font-weight: 700;
  border: none;
  outline: none;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(29,191,148,0.13);
  cursor: pointer;
  transition: background .18s, box-shadow .11s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #15a77c;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  font-weight: 600;
  margin-left: 8px;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #e7faf4;
  border-color: #1dbf94;
  color: #13a77c;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 402;
  background: rgba(0,0,0,0.42);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInCookie .5s;
}
.cookie-modal-inner {
  background: #fff;
  border-radius: 18px;
  padding: 34px 25px;
  width: 96%;
  max-width: 410px;
  color: #181c26;
  box-shadow: 0 8px 48px 0 rgba(32,45,50,.17);
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal-inner h3 {
  font-family: var(--display-font);
  color: var(--primary);
  font-size: 1.18rem;
  margin-bottom: .4em;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--secondary);
  width: 18px; height: 18px;
  cursor: pointer;
}
.cookie-category .locked {
  color: #1dbf94;
  font-size: 1em;
  margin-left: 4px;
}
.cookie-modal-inner .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 8px;
}

@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==== UTILITY / ARTISTIC ==== */
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 12px;
}
::-webkit-scrollbar {
  background: #ececec; width: 12px;
}
::-webkit-selection {
  background: #81e7c8;
  color: #222;
}

/* ==== FOCUS & ACCESSIBILITY ==== */
a, button, .cta-btn, input, select, textarea {
  outline: none;
  box-shadow: none;
  transition: outline-color .14s;
}
a:focus-visible, button:focus-visible, .cta-btn:focus-visible {
  outline: 3px solid #7c7ff7 !important;
  outline-offset: 2px;
}

/* ==== MICROS, INTERACTIONS & EFFECTS ==== */
.cta-btn, .service-grid > div, .feature-grid > div, .card, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: box-shadow .13s, background .22s, color .15s, transform .11s;
}
.card:active,
.feature-grid > div:active,
.service-grid > div:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(44,90,70,0.09);
}

/* ==== ARTISTIC ACCENTS ==== */
.feature-grid > div h3 {
  color: #23a683;
  font-family: var(--display-font);
  letter-spacing: 1.8px;
  text-shadow: 0 1px 0px #fff, 0 2px 7px #c8fff0ee;
}
.feature-grid > div p {
  color: #272d32;
}

/* ==== PAGE-SPECIFIC ==== */
.quick-facts ul {
  font-size: 1.09em;
  color: #363d47;
}
.quick-facts ul li::before {
  content: '•';
  color: #1dbf94;
  font-size: 1.5em;
  margin-right: 7px;
}

/* ==== THANK YOU PAGE ==== */
.thank-you .cta-btn {
  background: #7c7ff7;
  color: #fff;
  margin-top: 26px;
}
.thank-you .cta-btn:hover {
  background: #4d4faa;
}

/* ==== HIDE SCROLLING ON MOBILE MENU OPEN ==== */
body.mobile-open {
  overflow: hidden;
}

/* ==== PRINT STYLES ==== */
@media print {
  header,footer,.mobile-menu,.cookie-banner,.cookie-modal {
    display: none !important;
  }
  .section {
    border: none;
    box-shadow: none;
    background: #fff !important;
  }
}
