/* 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, main, 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 {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #252B33;
  background: #FCFAF4;
  font-size: 16px;
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #78898A;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #252B33;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 12px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #252B33;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.15rem;
}
.subtitle {
  color: #78898A;
  font-size: 1.25rem;
  margin-bottom: 28px;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: italic;
}
strong, b {
  color: #252B33;
  font-weight: 700;
}

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

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(79, 101, 124, 0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 26px 26px 26px;
  flex: 1 1 320px;
  transition: box-shadow .25s, transform .22s;
  border: 2px solid #E3D9CB;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(79, 101, 124, 0.16);
  transform: translateY(-6px);
  border-color: #ffd13d;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1.5px solid #E3D9CB;
  border-radius: 18px;
  padding: 20px 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 22px rgba(79,101,124, .08);
  color: #252B33;
  max-width: 520px;
  transition: box-shadow .18s, border-color .18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(124,96,52,0.06);
  border-color: #ffd13d;
}
.testimonial-card p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  color: #252B33;
  margin-bottom: 8px;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #78898A;
  font-style: italic;
}

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

/* BRAND & ARTISTIC COLORS */
:root {
  --primary: #252B33;
  --secondary: #78898A;
  --accent: #E3D9CB;
  --vivid1: #ffd13d;
  --vivid2: #5ad1b7;
  --vivid3: #e35384;
  --vivid4: #468dec;
  --vivid5: #e1594c;
}

/* HEADERS & NAVIGATION */
header {
  background: #fff;
  width: 100%;
  box-shadow: 0 1px 14px 0 rgba(150,150,150,.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  position: relative;
  padding: 5px 0;
  color: #252B33;
  font-weight: 600;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--vivid3);
  border-radius: 1px;
  opacity: 0;
  transition: opacity .22s, transform .22s;
  transform: scaleX(0.65);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  opacity: .9;
  transform: scaleX(1);
}

.cta-button, .cta-button.primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.05rem;
  background: linear-gradient(90deg, var(--vivid1) 75%, var(--vivid3) 100%);
  color: #252B33;
  border: none;
  border-radius: 32px 32px 20px 32px;
  padding: 13px 34px 13px 26px;
  cursor: pointer;
  margin-left: 18px;
  box-shadow: 0 2px 18px rgba(97,80,0,0.08);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 #FFC;
  transition: background .20s, color .20s, transform .16s, box-shadow .18s;
  outline: none;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--vivid3) 65%, var(--vivid1) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(240,50,120,.11);
  transform: translateY(-2px) scale(1.03);
}
.cta-button.primary {
  box-shadow: 0 3px 18px rgba(255, 186, 80, 0.11);
}

/* HERO BANNER */
.hero {
  background: linear-gradient(135deg, var(--vivid1) 0%, var(--accent) 90%);
  padding: 64px 0 48px 0;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.7rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-shadow: 0 3px 14px #f9d68a22, 0 1px 2px #FFF;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.hero .subtitle {
  color: var(--vivid3);
  font-weight: 500;
  margin-bottom: 28px;
  font-size: 1.15rem;
}
.hero .cta-button {
  margin-top: 12px;
}

/* FEATURE GRID (also .feature-grid in HTML) */
.feature-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  list-style: none;
  padding-left: 0;
  align-items: stretch;
}
.feature-grid li {
  background: #fff;
  border-radius: 18px 18px 34px 18px;
  box-shadow: 0 3px 14px rgba(160,144,118,0.09);
  padding: 30px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.5px solid #E3D9CB;
  min-width: 220px;
  flex: 1 1 210px;
  max-width: 370px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, border-color .20s, transform .20s;
  z-index: 1;
}
.feature-grid li:hover {
  box-shadow: 0 10px 32px rgba(241, 89, 76, 0.10);
  border: 2px solid var(--vivid3);
  transform: translateY(-4px) scale(1.015);
}
.feature-grid h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #468dec;
  margin-bottom: 7px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 1px #FFF4;
}
.feature-grid p {
  font-size: 1rem;
  color: #252B33;
  margin-bottom: 0;
  min-height: 44px;
}
.feature-grid img {
  width: 39px;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 1px 0 #ffc);
}

/* CASE STUDY CARD */
.case-study {
  background: #fffbe9;
  border: 1.5px solid var(--vivid1);
  border-radius: 22px 28px 22px 22px;
  padding: 20px 28px 16px 28px;
  margin-bottom: 24px;
  box-shadow: 0 3px 14px rgba(255, 186, 70, .05);
  transition: box-shadow .18s, border-color .18s;
}
.case-study h3 {
  color: var(--vivid3);
}
.case-study:hover {
  border-color: var(--vivid3);
  box-shadow: 0 7px 18px rgba(227, 53, 132, .10);
}

/* CTA SECTION */
.cta {
  background: linear-gradient(90deg, #E3D9CB 0%, #FFF8E4 100%);
  border-top: 2.5px dashed var(--vivid3);
  border-radius: 32px 32px 0 0;
  margin-bottom: 0;
  box-shadow: 0 1px 18px 0 rgba(0,0,0,.03);
}
.cta h2 {
  color: var(--vivid3);
  font-weight: 700;
}
.cta p {
  color: #252B33;
}

/* PROCESS / HOW IT WORKS / SERVICE GUARANTEES */
.how-it-works ol, .process ol {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  margin-left: 19px;
}
.how-it-works ol li, .process ol li {
  color: var(--primary);
  font-size: 1.03rem;
  font-weight: 500;
}
.service-guarantees ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.service-guarantees li {
  color: var(--vivid2);
  font-weight: 600;
  font-size: 1.05rem;
}

/* MAP PLACEHOLDER */
.map-placeholder {
  background: #f2efe4;
  border: 1.5px dashed #468dec;
  color: #468dec;
  font-style: italic;
  border-radius: 14px;
  padding: 13px 20px;
  margin-top: 10px;
}

/* TEXT-SECTION & CONTENT */
.text-section {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section ul {
  list-style: disc inside;
  margin-bottom: 20px;
}
.text-section li {
  color: #252B33;
}
.text-section img {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  margin-right: 8px;
}

/* FOOTER */
footer {
  background: #252B33;
  color: #E3D9CB;
  padding: 38px 0 18px 0;
  width: 100%;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
footer a {
  color: #E3D9CB;
  transition: color .2s;
}
.footer-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-contact {
  font-size: .96rem;
  color: #E3D9CB;
}
footer img {
  width: 38px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: var(--vivid3);
  margin-left: 10px;
  cursor: pointer;
  padding: 6px 9px 6px 9px;
  z-index: 3000;
  border-radius: 9px;
  transition: background .18s, color .15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ffe0f2;
  color: #252B33;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff4efe5;
  box-shadow: 0 1px 32px rgba(224,77,159,0.10);
  padding: 42px 28px 28px 36px;
  opacity: 0;
  transform: translateX(-100vw);
  transition: transform .42s cubic-bezier(.6,.55,0,1), opacity .2s;
  z-index: 2000;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--vivid3);
  font-size: 2.3rem;
  position: absolute;
  top: 24px;
  right: 38px;
  cursor: pointer;
  z-index: 2100;
  border-radius: 9px;
  transition: background .15s, color .17s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #ffe0f2;
  color: #252B33;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 30px;
  padding-left: 6px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #252B33;
  font-weight: 700;
  border-radius: 14px;
  padding: 13px 9px 7px 5px;
  transition: background .15s, color .15s, padding .15s, box-shadow .16s;
  margin-bottom: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ffd7ec;
  color: #e35384;
  box-shadow: 0 2px 9px #f3cae6;
  outline: none;
  padding-left: 18px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 98vw;
  max-width: 650px;
  background: #fff8f3;
  border: 2.5px solid var(--vivid3);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -3px 18px rgba(227, 53, 132, .07);
  display: flex;
  flex-direction: column;
  padding: 24px 28px 17px 21px;
  gap: 18px;
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .22s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner p {
  font-size: 1.01rem;
  color: #252B33;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  padding: 9px 16px;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 600;
  transition: background .18s, color .18s, box-shadow .15s;
}
.cookie-banner .cookie-accept {
  background: var(--vivid2);
  color: #252B33;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #31b396;
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: #fecaca;
  color: #e1594c;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #e1594c;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: none;
  color: #e35384;
  text-decoration: underline;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #e35384;
  color: #fff;
  text-decoration: none;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,38,58,0.22);
  z-index: 4200;
  display: none;
}
.cookie-modal-overlay.open {
  display: block;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%) scale(.98);
  min-width: 310px;
  max-width: 93vw;
  background: #fff8fc;
  border: 3px solid var(--vivid3);
  border-radius: 22px;
  box-shadow: 0 8px 32px #cc216c46;
  padding: 36px 22px 27px 27px;
  z-index: 4400;
  display: flex;
  flex-direction: column;
  gap: 23px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .19s, transform .24s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.38rem;
  color: #e35384;
  margin-bottom: 11px;
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.02rem;
}
.cookie-category label {
  cursor: pointer;
  font-family: 'Roboto', Arial, sans-serif;
  color: #252B33;
}
.cookie-toggle {
  appearance: none;
  width: 38px; height: 22px;
  background: #e6e6ea;
  border-radius: 22px;
  position: relative;
  outline: none;
  transition: background .15s;
  cursor: pointer;
  margin-right: 5px;
}
.cookie-toggle:checked {
  background: #5ad1b7;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 3.5px; left: 3.5px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #fff;
  transition: left .14s, background .17s;
  box-shadow: 0 1.5px 4.5px rgba(80,80,80,0.12);
}
.cookie-toggle:checked:before {
  left: 19px;
  background: #252B33;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .cookie-save {
  background: var(--vivid2);
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-save:hover, .cookie-modal .cookie-save:focus {
  background: #218978;
}


/* ANIMATIONS */
@keyframes fadeInUp {
  0%{ opacity:0; transform:translateY(64px); }
  100%{ opacity:1; transform:none; }
}
.hero .content-wrapper h1, .hero .content-wrapper .subtitle, .hero .content-wrapper .cta-button {
  animation: fadeInUp .7s cubic-bezier(.6,.55,0,1) both;
}

/* MICRO-INTERACTIONS */
.card, .feature-grid li, .testimonial-card, .case-study {
  transition: box-shadow .17s, transform .17s, border-color .20s;
}
.cta-button, .cookie-banner button {
  transition: background .18s, color .18s, box-shadow .18s, transform .13s;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    max-width: 92vw;
  }
  .header-container {
    gap: 10px;
    padding-right: 4px;
  }
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .header-container,
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  h1{font-size:2.1rem}
  h2{font-size:1.45rem}
  .container {
    padding-left: 12px;
    padding-right: 12px;
    max-width: 99vw;
  }
  .header-container {
    flex-direction: row;
    gap: 0;
    padding-left: 2px;
    padding-right: 2px;
    align-items: center;
  }
  .main-nav, .cta-button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    margin-right: 7px;
    margin-left: 12px;
  }
  .mobile-menu {
    padding-top: 34px;
    padding-left: 22px;
    padding-right: 10px;
  }  
  .hero {
    padding: 36px 0 28px 0;
    margin-bottom: 36px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li {
    max-width: unset;
    min-width: unset;
    width: 100%;
  }
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 16px 12px;
  }
  footer {
    padding: 26px 0 12px 0;
  }
  .footer-container {
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  .cta {
    padding: 24px 0 14px 0;
    border-radius: 0;
  }
  .section {
    margin-bottom: 34px;
    padding: 24px 10px;
  }
  .card {
    padding: 16px 12px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size:1.4rem;
  }
  h2 {
    font-size:1.07rem;
  }
  .cookie-banner {
    padding: 13px 8px 8px 8px;
    font-size: 0.95rem;
  }
  .cookie-modal {
    padding: 17px 6px 11px 12px;
    min-width: unset;
  }
}

/* PRINT */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {display:none !important;}
  body, .container, main, section {background: #fff !important; color: #222 !important;}
}