/* =========== 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: #f5f7fa;
  color: #18304e;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #24537D;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #F2D17C;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 10px;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  border-bottom: 1px solid #eaeaea;
  text-align: left;
}
th {
  background: #A6B2C5;
  color: #18304e;
  font-weight: 700;
}
button {
  font-family: inherit;
}

/* ======== FONT @IMPORTS (for Google Fonts) ======== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

/* ======== COLOR PALETTE: Brand, Artistic Variants ======== */
:root {
  --primary: #24537D;
  --secondary: #A6B2C5;
  --accent: #F2D17C;
  --background: #f5f7fa;
  --white: #fff;
  --black: #181818;
  --gray: #edf0f4;
  --creative-pink: #F27CA6;
  --creative-green: #8DDC9E;
  --creative-lavender: #a190f2;
}

/* ========== TYPOGRAPHY & ARTISTIC HEADINGS ========== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.02em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 3px 8px var(--secondary);
  position: relative;
}
h1:after {
  content: '';
  display: block;
  width: 63px;
  height: 5px;
  background: var(--accent);
  border-radius: 6px;
  margin-top: 14px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--creative-pink);
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--primary);
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  h3 {
    font-size: 1rem;
  }
}
.text-section p, .text-section ul {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #18304e;
  margin-bottom: 14px;
}

/* ========= LAYOUT: Container & Section Spacing ========= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 36px;
  box-shadow: 0 6px 24px 0 rgba(36,83,125,0.07);
  position: relative;
}
@media (max-width: 900px) {
  .section {
    padding: 22px 5px;
    border-radius: 20px;
  }
}

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

/* ========== HEADER: Artistic and Nav ========== */
header {
  background: linear-gradient(90deg, var(--secondary) 0% 25%, var(--white) 80%);
  padding: 0;
  box-shadow: 0 4px 20px 0 rgba(36,83,125,0.05);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  margin: 0 3px;
  letter-spacing: 0.03em;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .2s, color .2s;
  position: relative;
}
.main-nav a.btn-primary {
  margin-left: 10px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--creative-lavender);
  color: #fff;
}
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 22px;
  padding: 12px 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(242,209,124,0.16);
  transition: background 0.3s, color 0.2s, transform 0.12s;
  margin-top: 10px;
  margin-bottom: 10px;
  text-shadow: 1px 1px 0 #ffffff, 2px 2px 5px #ebc25a44;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.05) rotate(-2deg);
}

/* ========== BURGER MENU ========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  padding: 6px 12px;
  color: var(--primary);
  cursor: pointer;
  z-index: 111;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--creative-pink);
  border-radius: 8px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(36,83,125,0.99);
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.57,.01,.49,.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 1200;
  padding: 40px 30px 20px 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--accent);
  border: none;
  font-size: 2.2rem;
  margin-bottom: 26px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--creative-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--accent);
  padding: 10px 0 10px 18px;
  border-left: 5px solid var(--creative-pink);
  border-radius: 0 12px 12px 0;
  background: transparent;
  transition: background .18s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: var(--creative-lavender);
  border-left-color: var(--accent);
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 567px) {
  .mobile-menu {
    padding: 30px 8px 12px 10px;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 320px;
  background: linear-gradient(110deg, var(--accent) 0%, var(--secondary) 35%, var(--background) 90%);
  border-radius: 0 0 42px 42px;
  margin-bottom: 60px;
  padding: 62px 0 36px 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  background: rgba(255,255,255,0.83);
  border-radius: 32px;
  padding: 48px 30px 32px 30px;
  max-width: 750px;
  margin: 0 auto;
  box-shadow: 0 16px 64px 0 rgba(164,137,241,0.19);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.hero h1 {
  color: var(--primary);
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.15rem;
  color: #30384a;
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .hero {
    border-radius: 0 0 20px 20px;
    padding: 32px 0 18px 0;
  }
  .hero .content-wrapper {
    padding: 22px 10px 16px 10px;
    border-radius: 16px;
  }
}

/* ========== FEATURES GRID ========== */
.features {
  background: var(--gray);
  border-radius: 28px;
  box-shadow: 0 1px 4px 0 rgba(36,83,125,0.03);
  margin-bottom: 60px;
  padding: 40px 0;
}
.features .content-wrapper {
  gap: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
  margin-bottom: 10px;
}
.feature {
  flex: 1 1 215px;
  min-width: 200px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 7px 24px 0 rgba(36,83,125,0.09);
  padding: 30px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  border-left: 7px solid var(--creative-pink);
  transition: box-shadow 0.22s, border-left 0.17s, transform 0.13s;
}
.feature:hover, .feature:focus {
  box-shadow: 0 14px 36px 4px rgba(36,83,125,0.17);
  border-left: 7px solid var(--accent);
  transform: translateY(-4px) scale(1.03) rotate(-1.5deg);
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 5px;
}
.feature h3 {
  color: var(--creative-pink);
  font-size: 1.15rem;
}
.feature p {
  font-size: 1rem;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature {
    width: 100%;
    min-width: unset;
  }
}

/* ========== CARDS, GENERAL ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 7px 24px 0 rgba(242,209,124,0.11);
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.15s, transform 0.12s;
}
.card:hover, .card:focus {
  box-shadow: 0 14px 34px 2px rgba(164,137,241,0.12);
  transform: translateY(-3px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 0 0 12px 0;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--creative-green);
  color: #223650;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 4px 18px 0px rgba(36,83,125,0.11);
  border-left: 6px solid var(--creative-pink);
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #18304e;
  margin-bottom: 2px;
}
.testimonial-meta {
  display: flex;
  gap: 16px;
  font-size: 0.96rem;
  color: #363942;
  font-style: italic;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
}

.average-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--creative-lavender);
  color: var(--primary);
  border-radius: 16px;
  padding: 16px 18px;
  margin: 20px 0 16px 0;
  font-size: 1.1rem;
  box-shadow: 0 3px 10px 0 rgba(164,137,241,0.10);
}
.average-rating h3 span {
  color: var(--accent);
  font-size: 1.23em;
  font-weight: bold;
}

/* ========== ABOUT PAGE & VALUES ========== */
.about, .values {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.values ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px 0;
}
.values li {
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: 1.06rem;
  margin-bottom: 13px;
  background: #ecf7f1;
  padding: 10px 18px;
  border-radius: 13px;
  box-shadow: 0 2px 5px 0 rgba(141,220,158,0.08);
}
.values li img {
  width: 30px;
  height: 30px;
}

/* ========== SERVICES/PROJECTS/CONTACT CARDS ========== */
.service-grid, .project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.service, .reference {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 3px 16px 2px rgba(245, 209, 124, 0.07);
  padding: 27px 15px 18px 15px;
  flex: 1 1 220px;
  min-width: 185px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, transform 0.13s;
  border-top: 6px solid var(--creative-lavender);
  position: relative;
}
.service:hover, .reference:hover {
  box-shadow: 0 12px 38px 2px rgba(245, 209, 124, 0.14);
  transform: translateY(-3px) scale(1.02) rotate(1deg);
  border-top: 6px solid var(--creative-green);
}
.service img, .reference img {
  width: 37px;
  height: 37px;
  margin-bottom: 7px;
}
.service h3, .reference h3 {
  color: var(--creative-lavender);
}
.project-list {
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .service-grid, .project-list {
    flex-direction: column;
    gap: 18px;
  }
  .service, .reference {
    width: 100%;
    min-width: unset;
  }
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.business-hours {
  background: var(--secondary);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 1.02rem;
  color: #24537D;
}

.contact-short, .contact-short-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin: 14px 0;
}
.contact-short div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.03rem;
}
.contact-short-info img, .contact-short div img {
  width: 27px;
  height: 27px;
}
.map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(36,83,125,0.08);
  margin: 24px 0 0 0;
}
.map img {
  border-radius: 12px;
}

/* ========== PRICING TABLE =========== */
.pricing-table {
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 16px 1px rgba(164,137,241,0.08);
  margin-bottom: 24px;
}
.pricing-table tr:nth-child(even) {
  background: #F1F5FB;
}
.pricing-table th {
  color: #fff;
  background: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table td {
  color: var(--primary);
  font-size: 1rem;
}

/* ========== FAQ ACCORDION ========== */
.faq-accordion h3 {
  margin-bottom: 4px;
  font-size: 1.08rem;
  color: var(--creative-pink);
  cursor: pointer;
  position: relative;
  padding-left: 10px;
  transition: color .17s;
}
.faq-accordion h3:before {
  content: '+';
  margin-right:10px;
  color: var(--primary);
  font-weight: bold;
}
.faq-accordion h3.open:before {
  content: '-';
}
.faq-accordion .text-section {
  display: none;
  margin-bottom: 18px;
}
.faq-accordion h3.open + .text-section {
  display: block;
  animation: faqfadein .65s ease;
}
@keyframes faqfadein {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: none; }
}

/* ========== TEXT-SECTION WITH ARTISTIC ACCENT ========== */
.text-section {
  background: linear-gradient(97deg, #fff 50%, #f2d17c21 100%);
  border-left: 9px solid var(--creative-green);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px 0 rgba(245, 209, 124, 0.06);
}
@media (max-width: 540px) {
  .text-section {
    padding: 10px 9px;
    border-radius: 8px;
  }
}


/* ========== FOOTER ========== */
footer {
  background: linear-gradient(90deg, var(--secondary) 20%, var(--creative-green) 100%);
  color: #233d65;
  padding: 38px 0 0 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -3px 16px 0 rgba(36,83,125,0.06);
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dde6ef;
}
.footer-logo {
  flex: 1 1 105px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 170px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1.05rem;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: var(--creative-pink);
}
.footer-contact {
  flex: 2 1 340px;
  font-size: 0.96rem;
  color: #21394b;
  margin-bottom: 10px;
}
.footer-copy {
  width: 100%;
  font-size: 0.93rem;
  color: #7d849a;
  text-align: right;
  padding: 9px 0;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
  }
  .footer-copy {
    text-align: left;
  }
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--primary);
  color: #fff;
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 38px 20px 28px;
  box-shadow: 0 -7px 20px 0 rgba(36,83,125,0.13);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.7s;
  transform: translateY(180px);
}
.cookie-banner.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.cookie-banner-message {
  flex: 1 1 420px;
  margin-right: 12px;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-btn {
  border: none;
  outline: none;
  padding: 10px 22px;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.13s;
  margin-left: 0;
  margin-right: 3px;
  box-shadow: 0 2px 6px 0 rgba(242,209,124,0.05);
}
.cookie-btn.accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btn.accept:hover,.cookie-btn.accept:focus {
  background: var(--creative-green);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--creative-pink);
  color: #fff;
}
.cookie-btn.reject:hover,.cookie-btn.reject:focus {
  background: #d33b8b;
}
.cookie-btn.settings {
  background: var(--creative-lavender);
  color: var(--primary);
}
.cookie-btn.settings:hover,.cookie-btn.settings:focus {
  background: var(--secondary);
  color: var(--accent);
}

@media (max-width: 670px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 6px 14px 10px;
    font-size: 0.96rem;
  }
  .cookie-banner-message {
    margin-bottom: 2px;
  }
}

/* ========== COOKIE MODAL POPUP ========== */
.cookie-modal {
  position: fixed;
  left: 0;
  right:0;
  top: 0;
  bottom:0;
  z-index: 1700;
  background: rgba(14,22,36,0.73);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: var(--white);
  border-radius: 32px;
  padding: 46px 34px 34px 34px;
  max-width: 435px;
  width: 98vw;
  box-shadow: 0 8px 34px 2px rgba(36,83,125,0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.17s;
}
.cookie-modal-close:hover {
  background: var(--creative-pink);
  color: #fff;
}
.cookie-modal-content h2 {
  margin-top: 0;
  color: var(--primary);
  font-size: 1.25rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  margin-top: 6px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
}
.cookie-toggle {
  appearance: none;
  -webkit-appearance: none;
  width: 47px;
  height: 25px;
  border-radius: 12.5px;
  background: var(--secondary);
  position: relative;
  transition: background 0.2s;
  outline: none;
  cursor: pointer;
  margin-right: 6px;
}
.cookie-toggle:checked {
  background: var(--creative-green);
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(36,83,125,0.12);
  transition: left 0.22s;
}
.cookie-toggle:checked::after {
  left: 25px;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
}
.cookie-category .cookie-category-desc {
  font-size: .96em;
  color: #696b79;
  font-weight: 400;
  margin-left: 6px;
}
.cookie-category.essential label {
  color: var(--primary);
}
.cookie-category.essential .cookie-toggle {
  background: #e2dcd4;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top:8px;
  width: 100%;
}

@media (max-width: 500px) {
  .cookie-modal-content {
    padding: 16px 4px 16px 14px;
    border-radius: 16px;
  }
}

/* ========== RESPONSIVE: Layout, Table, Spacing ========== */
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  .section, .features, .about, .values {
    padding: 20px 4px;
    border-radius: 11px;
  }
  .main-nav {
    gap: 10px;
  }
  .footer-nav {
    gap: 3px;
    font-size: 0.94rem;
  }
}
@media (max-width: 570px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1rem; }
  .container { padding: 0 2px; }
  .footer-logo img { height: 37px; }
}
@media (max-width:400px) {
  .section, .features, .about, .values { padding: 8px 2px; }
}

/* ========== MICRO-INTERACTIONS & ARTISTIC TOUCHES ========== */
.btn-primary,
.main-nav a,
.card,
.feature,
.service,
.reference,
.testimonial-card,
.cookie-btn {
  transition: box-shadow 0.16s, background 0.16s, color 0.16s, transform 0.15s;
}

.btn-primary:active {
  background: var(--creative-pink);
  color: #fff;
  transform: scale(0.97) rotateX(3deg);
}
.card:active, .feature:active, .service:active, .reference:active {
  transform: scale(0.97);
}

/* ========== THANK YOU PAGE ========== */
.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
  padding: 50px 18px;
  background: linear-gradient(120deg, var(--creative-lavender) 25%, var(--creative-green) 100%, #fff 150%);
  border-radius: 28px;
  box-shadow: 0 7px 35px 2px rgba(164,137,241,0.09);
}
.thank-you h1 {
  color: var(--primary);
  margin-bottom: 18px;
}
.thank-you .text-section {
  background: var(--white);
  border-left: 6px solid var(--creative-green);
  border-radius: 10px;
  box-shadow: 0 0 16px 4px rgba(164,137,241,0.06);
  margin-bottom: 16px;
}

/* ========== MISC ========== */
::-webkit-scrollbar {
  width: 11px;
  background: var(--secondary);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--creative-pink);
}

::selection {
  background: var(--creative-lavender);
  color: #fff;
}

/* ========== END OF CSS ========== */
