/* RESET & BASE ------------------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F8F8;
  color: #191C26;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

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

ul, ol {
  padding-left: 1.5em;
  margin-top: 12px;
  margin-bottom: 24px;
  line-height: 1.7;
}

li {
  margin-bottom: 8px;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1F2833;
  font-weight: 800;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.6rem; margin-bottom: 12px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 8px; font-weight: 700;}
h4 { font-size: 1.1rem; }

strong {
  font-weight: 700;
  color: #45A29E;
}
a {
  color: #45A29E;
  text-decoration: none;
  transition: color .2s cubic-bezier(.4,1.4,.6,.9);
}
a:hover, a:focus {
  color: #FFD966;
  text-decoration: underline;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 8px;
  padding-right: 8px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

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

/* HERO SECTION ------------------------------------- */
.hero {
  background: linear-gradient(90deg, #45A29E 0%, #FFD966 70%);
  color: #1F2833;
  min-height: 330px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 10px 36px 0 rgba(31,40,51,0.10);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  flex: 1 0 100%;
}
.hero .content-wrapper {
  align-items: center;
}
.hero h1 {
  color: #1F2833;
  font-size: 2.3rem;
  font-weight: 900;
  text-shadow: 1px 1px 0 #FFD966,0 5px 16px rgba(31,40,51,0.13);
  letter-spacing: 0.03em;
  text-align: center;
}
.hero .subheadline {
  color: #1F2833;
  background: #fffbe9;
  padding: 7px 22px;
  font-size: 1.2rem;
  border-radius: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  text-align: center;
  box-shadow: 0 2px 16px 0 rgba(69,162,158,0.03);
}

/* NAVIGATION ------------------------------------------ */
header {
  background: #1F2833;
  color: #FFD966;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 14px 0 rgba(31,40,51,0.09);
  position: relative;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  min-height: 78px;
}

.logo img {
  height: 44px;
  width: auto;
  transition: transform .18s cubic-bezier(.4,1.5,.6,.9);
}
.logo:hover img { transform: scale(1.06) rotate(-2deg); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFD966;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 8px;
  letter-spacing: 0.04em;
  transition: background .18s, color .18s;
}
.main-nav a.active, .main-nav a:hover, .main-nav a:focus {
  color: #1F2833;
  background: #FFD966;
}

.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FFD966;
  color: #1F2833;
  font-weight: 800;
  border-radius: 24px;
  padding: 12px 32px;
  font-size: 1.16rem;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 16px 0 rgba(31,40,51,.07);
  transition: background .19s, color .19s, box-shadow .23s;
  position: relative;
  cursor: pointer;
  border: solid 2px #FFD966;
  text-transform: uppercase;
}
.cta-btn:hover, .cta-btn:focus {
  background: #45A29E;
  color: #fff;
  border: solid 2px #45A29E;
  box-shadow: 0 6px 36px 0 rgba(255,217,102,0.24);
  transform: translateY(-2px) scale(1.03);
}


/*----------------- BURGER MENU ---------------*/
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: transparent;
  color: #FFD966;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 10px;
  margin-left: 10px;
  z-index: 1031;
  transition: color .16s;
}
.mobile-menu-toggle:focus { outline: 3px dotted #FFD966; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #1F2833;
  color: #FFD966;
  z-index: 1050;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.63,.32,.17,.96);
  display: flex;
  flex-direction: column;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 24px;
  background: none;
  color: #FFD966;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 1100;
  transition: color .16s;
  padding: 6px;
  border-radius: 50%;
}
.mobile-menu-close:focus {
  outline: 3px dotted #FFD966;
  color: #45A29E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 100px;
  align-items: center;
}
.mobile-nav a {
  color: #FFD966;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  padding: 14px 40px;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  transition: background .16s,color .16s;
  min-width: 220px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD966;
  color: #1F2833;
}

/*------- RESPONSIVE MENU -------*/
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 700px) {
  header .container {
    padding-left: 4px;
    padding-right: 4px;
    min-height: 54px;
  }
  .logo img { height: 34px; }
}

/* FOOTER ----------------------------------------- */
footer {
  background: #1F2833;
  color: #FFD966;
  width: 100%;
  padding: 28px 0 10px 0;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -2px 10px 0 rgba(31,40,51,0.06);
  position: relative;
}
footer .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-nav a {
  color: #FFD966;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background .13s, color .13s;
  font-weight: 600;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFD966;
  color: #1F2833;
}
.footer-contact {
  font-size: 0.93rem;
  color: #FFD966;
  opacity: 0.9;
  margin-top: 2px;
  margin-bottom: 2px;
  font-family: 'Roboto', Arial, sans-serif;
}

footer a img {
  height: 30px;
  margin-right: 16px;
}

/* SECTION LAYOUTS & PATTERNS ----------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
  align-items: stretch;
  justify-content: space-between;
}
.feature {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px 0 rgba(31,40,51,0.10);
  padding: 32px 18px 24px 18px;
  min-width: 200px;
  max-width: 275px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  transition: transform .17s, box-shadow .2s;
  border-left: 5px solid #FFD966;
}
.feature img {
  width: 42px; height: 42px;
}
.feature:hover, .feature:focus-within {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 36px 0 rgba(255,217,102,0.18), 0 3px 16px 0 rgba(69,162,158,0.10);
  border-left: 10px solid #45A29E;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 12px 0 rgba(31,40,51,0.09);
  padding: 28px 22px 20px 22px;
  min-width: 220px;
  max-width: 245px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  position: relative;
  border-bottom: 5px solid #45A29E;
  transition: box-shadow .16s, transform .17s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 7px 38px 0 rgba(255,217,102,0.17), 0 4px 18px 0 rgba(69,162,158,0.08);
  transform: translateY(-5px) scale(1.03);
}
.service-card h3 {
  font-size: 1.07rem;
  color: #1F2833;
}
.service-card .price {
  color: #FFD966;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.21rem;
  letter-spacing: 0.02em;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(31,40,51,0.07);
  padding: 28px 20px;
  transition: box-shadow .16s, transform .16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 28px 0 rgba(45,175,200,0.13);
  transform: translateY(-4px) 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;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #222;
  box-shadow: 0 2px 14px rgba(45,175,200,0.08), 0 7px 28px rgba(255,217,102,0.10);
  border-radius: 17px;
  padding: 28px 30px 24px 30px;
  min-width: 240px;
  max-width: 330px;
  margin-bottom: 20px;
  position: relative;
  border-bottom: 4px solid #45A29E;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card p {
  font-size: 1.11rem;
  color: #191C26;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1F2833;
  font-size: 1rem;
  font-weight: 700;
}
.stars {
  color: #FFD966;
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 2px;
}
.rating-summary {
  color: #45A29E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 10px;
}

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

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-details img {
  width: 24px; height: 24px;
}

.info-note {
  background: #FFD966;
  color: #1F2833;
  border-radius: 12px;
  padding: 11px 19px;
  margin-top: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(31,40,51,0.08);
}

/*--- Links as Button (for list) ---*/
.text-section a.cta-btn, .text-section .cta-btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* COOKIES CONSENT BANNER & MODAL ------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1300;
  background: #1F2833;
  color: #FFD966;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 30px 18px 20px;
  box-shadow: 0 -3px 30px 0 rgba(31,40,51,0.19);
  font-size: 1.06rem;
  border-radius: 16px 16px 0 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .42s cubic-bezier(.42,.19,.62,.99);
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner .cookie-buttons {
  display: flex;
  gap: 15px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 23px;
  padding: 10px 28px;
  border: none;
  font-size: 1.07rem;
  cursor: pointer;
  margin-left: 2px;
  letter-spacing: 0.01em;
  transition: background .18s, color .18s;
}
.cookie-banner .cookie-accept {
  background: #FFD966;
  color: #1F2833;
  border: solid 2px #FFD966;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #45A29E;
  color: #fff;
  border-color: #45A29E;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #1F2833;
  border: solid 2px #FFD966;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #FFD966;
  color: #191C26;
}
.cookie-banner .cookie-settings {
  background: #45A29E;
  color: #fff;
  border: solid 2px #FFD966;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #FFD966;
  color: #45A29E;
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(31,40,51,0.68);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  padding: 36px 34px 30px 34px;
  border-radius: 20px;
  min-width: 340px;
  box-shadow: 0 12px 44px 0 rgba(31,40,51,0.24);
  color: #191C26;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #45A29E;
  font-size: 1.32rem;
  font-weight: 900;
}
.cookie-modal-content ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 21px;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: #FFD966;
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #45A29E;
}
.cookie-modal-buttons {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #191C26;
  cursor: pointer;
  padding: 2px;
  transition: color .2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #45A29E; }

/* FORM ELEMENTS -------------------------------------- */
input, textarea, select {
  padding: 9px 13px;
  font-size: 1rem;
  border-radius: 9px;
  border: 1.5px solid #E4E6E9;
  background: #fff;
  color: #191C26;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
  transition: border .15s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #FFD966;
}
button, input[type="submit"] {
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* RESPONSIVE ---------------------------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 900px) {
  .hero h1 { font-size: 2rem; }
  .feature-grid, .service-cards, .testimonial-list {
    gap: 18px;
  }
  section { padding: 32px 9px; }
}
@media (max-width: 768px) {
  .feature-grid, .service-cards, .testimonial-list, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .service-card, .testimonial-card, .card {
    min-width: unset;
    max-width: unset;
    width: 100%;
    margin-bottom: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-wrapper { gap: 18px; }
  .hero {
    min-height: 230px;
    border-radius: 0 0 18px 18px;
    margin-bottom: 30px;
  }
  .hero h1 { font-size: 1.25rem; }
  .hero .subheadline { font-size: 1.04rem; }
  .cta-btn {
    padding: 10px 18px;
    font-size: 1rem;
  }
  .cookie-modal-content {
    min-width: 94vw;
    padding: 22px 8vw 22px 8vw;
  }
  footer .container {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  section { padding: 28px 4px; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 16px 9px 16px 9px;
    font-size: 1rem;
  }
}
@media (max-width: 540px) {
  .hero h1 { font-size: 1.04rem; }
  .cta-btn { font-size: 0.95rem; }
  .footer-contact { font-size: 0.83rem; }
}

/* VIBRANT, ENERGETIC MICRO-INTERACTIONS --------- */
.cta-btn, .main-nav a, .service-card, .feature, .card, .testimonial-card, .footer-nav a, .cookie-banner button, .cookie-modal-content button {
  transition: box-shadow .23s, background .21s, color .20s, border-color .21s, transform .19s;
}
.cta-btn:active, .main-nav a:active {
  transform: scale(0.97);
}
.feature:active, .service-card:active {
  transform: scale(0.97);
}
.card:active, .testimonial-card:active {
  transform: scale(0.97);
}

/* Z-INDEX layering for overlays */
.mobile-menu { z-index: 1050; }
.cookie-modal { z-index: 1400; }
.cookie-banner { z-index: 1300; }
.mobile-menu-toggle { z-index: 1031; }
header { z-index: 999; }

/* Accessibility focus indicator */
a:focus, button:focus, input:focus, .cta-btn:focus {
  outline: 3px dotted #45A29E;
  outline-offset: 2px;
}

/* Utility class for hidden (accessibility) */
.sr-only {
  position: absolute;
  left: -9999px; top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ENDS CSS: Flickering Dawn vibrant energetic */