/* -------------------------------------------------------
  CSS RESET & BASIC NORMALIZATION
------------------------------------------------------- */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.35;
  background: #F0EFEA;
  color: #21293a;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}
a {
  color: #2A3442;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B9975B;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
}
*:focus-visible {
  outline: 2px dashed #B9975B;
  outline-offset: 2px;
}


/* -------------------------------------------------------
  BRAND COLORS & TYPOGRAPHY
------------------------------------------------------- */
:root {
  --primary: #2A3442;
  --secondary: #B9975B;
  --accent: #F0EFEA;
  --brand-blue: #60A5FA;
  --brand-pink: #FB7185;
  --brand-orange: #FDBA74;
  --brand-green: #34D399;
  --on-accent: #2A3442;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Lato', Arial, Helvetica, sans-serif;
}


/* -------------------------------------------------------
  LAYOUT CONTAINER CLASSES
------------------------------------------------------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

/* Ensure space between all content cards/sections */
.card-container, .feature-grid, .value-list, .case-section, .success-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature-item, .value-item, .case-section {
  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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(49, 61, 90, 0.08);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 500px;
  border: 2px solid var(--brand-blue);
  /* playful accent border */
  animation: pop-in 0.7s cubic-bezier(.39,.75,.5,1.23);
}

@keyframes pop-in {
  0% { transform: scale(0.7) rotate(-3deg) skewY(-2deg); opacity: 0; }
  100% { transform: scale(1) rotate(0) skewY(0); opacity: 1; }
}

.feature-item, .value-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px 48px 32px 16px;
  border-left: 6px solid var(--brand-pink);
  padding: 28px 20px 24px 26px;
  box-shadow: 0 2px 10px 0 rgba(99, 102, 241, 0.07);
  min-width: 240px;
  margin-bottom: 20px;
  position: relative;
  animation: fade-in-right 0.8s cubic-bezier(.35,.95,.5,1);
}

@keyframes fade-in-right {
  0% { opacity: 0; transform: translateX(-30px) skewY(2deg); }
  100% { opacity: 1; transform: translateX(0) skewY(0deg); }
}


/* -------------------------------------------------------
  HEADER & NAVIGATION (DESKTOP)
------------------------------------------------------- */
header {
  background: var(--primary);
  position: relative;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 90px;
}
header img {
  max-height: 44px;
  filter: drop-shadow(0 1px 1px #fff2);
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-size: 17px;
  font-family: var(--body-font);
  font-weight: bold;
  border-radius: 12px;
  padding: 8px 16px;
  transition: background 0.18s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: #2A3442;
}
.cta {
  background: var(--secondary);
  color: #fff;
  border-radius: 16px;
  padding: 12px 30px;
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 16px 0 rgba(185, 151, 91, 0.08), 0 1.5px 6px -2px #FFC10733;
  transition: background 0.18s, color 0.15s, box-shadow 0.25s;
  text-shadow: 0 1px 2px #fff7, 0 2px 12px #B9975B40;
  margin-left: 8px;
  border: none;
  display: inline-block;
  position: relative;
  line-height: 1.2;
}
.cta:hover, .cta:focus {
  background: var(--brand-pink);
  color: var(--on-accent);
  box-shadow: 0 6px 24px -6px var(--brand-pink);
  letter-spacing: 0.08em;
}


/* -------------------------------------------------------
  MOBILE NAVIGATION & HAMBURGER
------------------------------------------------------- */
.mobile-menu-toggle {
  background: var(--brand-blue);
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  position: absolute;
  right: 24px;
  top: 22px;
  z-index: 105;
  box-shadow: 0 2px 12px #5eead4aa;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--brand-pink);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.7,1.5,.4,1.01);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-shadow: 0 0 40px 0 #99f6e44a;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--brand-pink);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 24px 22px 16px 0;
  font-size: 2rem;
  border: none;
  z-index: 2100;
  box-shadow: 0 2px 12px #fb718544;
  transition: background 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 40px 24px;
  gap: 12px;
}
.mobile-nav a {
  background: var(--accent);
  color: var(--primary);
  border-radius: 12px;
  font-size: 20px;
  margin-bottom: 8px;
  padding: 16px 20px;
  font-family: var(--body-font);
  font-weight: 600;
  box-shadow: 0 1px 7px #e0e7ff1a;
  transition: background 0.18s, color 0.17s, box-shadow 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-pink);
  color: #fff;
}


/* -------------------------------------------------------
  HERO / MAIN HEADINGS
------------------------------------------------------- */
.hero {
  background: linear-gradient(87deg, #FB7185 0%, #FDBA74 100%);
  color: var(--on-accent);
  padding-top: 54px;
  padding-bottom: 54px;
  margin-bottom: 56px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 2px 24px -12px var(--brand-blue), 0 6px 24px -16px var(--brand-pink) inset;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 18px #2a3442cc, 0 2px 2px #fff2;
  animation: heading-pop 0.75s cubic-bezier(.5,1.7,.32,1.24);
}
@keyframes heading-pop {
  0% { opacity: .07; transform: scale(0.84) skewY(-3deg); }
  100% { opacity: 1; transform: scale(1) skewY(0); }
}
.hero .subheadline {
  font-size: 1.16rem;
  color: #fff8;
  margin-bottom: 22px;
  font-family: var(--body-font);
  max-width: 500px;
  line-height: 1.6;
  animation: fade-in-up 0.7s cubic-bezier(.41,.7,.18,1.3);
}
@keyframes fade-in-up {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}


/* -------------------------------------------------------
  TYPOGRAPHY
------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}
h2 {
  font-size: 1.7rem;
}
h3 {
  font-size: 1.22rem;
}
h4, h5, h6 {
  font-size: 1rem;
}
p {
  font-family: var(--body-font);
  color: var(--primary);
  font-size: 1.07rem;
  margin-bottom: 16px;
}
ul li, ol li {
  font-size: 1.04rem;
  color: var(--primary);
  line-height: 1.52;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
}
strong {
  color: var(--brand-blue);
}


/* -------------------------------------------------------
  CARDS, FEATURES, VALUES, ETC.
------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  border-radius: 24px 12px 28px 18px;
  background: #fff;
  box-shadow: 0 1.5px 10px #818cf81a;
  padding: 28px;
  position: relative;
  overflow: hidden;
  min-width: 240px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 32px -12px var(--brand-blue);
  transform: translateY(-4px) scale(1.025) rotate(-1deg);
}

.value-list, .feature-grid {
  gap: 24px;
}
.value-item img, .feature-item img {
  height: 48px;
  width: 48px;
  margin-bottom: 7px;
}
.value-item h3, .feature-item h3 {
  color: var(--brand-pink);
  text-shadow: 0 1px 8px #fcd34d22;
  font-size: 1.22rem;
  margin-bottom: 8px;
}

.case-section, .stat-section, .feature-highlight, .success-list, .usp-list, .risk-section, .benefit-list, .process-section {
  background: #fff;
  border-radius: 20px 36px 28px 12px;
  box-shadow: 0 2px 14px #818cf81a;
  padding: 24px 20px;
  margin-bottom: 24px;
}
.case-section h3 {
  color: var(--brand-blue);
  margin-bottom: 7px;
}


/* -------------------------------------------------------
  TESTIMONIALS & CLIENT NAMES
------------------------------------------------------- */
.testimonials h2 {
  color: var(--brand-pink);
}
.testimonial-card {
  background: #fff;
  border: 2.5px dashed var(--brand-green);
  color: #2A3442;
  font-style: italic;
  position: relative;
  min-width: 240px;
  max-width: 500px;
  margin: 0 auto 20px auto;
  align-items: flex-start;
  box-shadow: 0 2px 18px #7dd3fc2f;
}
.testimonial-card p {
  color: #2A3442;
  font-size: 1.13rem;
  line-height: 1.5;
}
.client-name {
  font-family: var(--heading-font);
  color: var(--brand-pink);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 4px;
  align-self: flex-end;
  letter-spacing: 0.03em;
}


/* -------------------------------------------------------
  FOOTER
------------------------------------------------------- */
footer {
  background: var(--primary);
  margin-top: 60px;
  color: #fff;
  padding: 36px 0 18px 0;
}
.footer-nav {
  display: flex;
  gap: 28px;
  margin-bottom: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  padding: 6px 19px;
  margin-bottom: 7px;
  transition: background 0.15s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: #2A3442;
}
.footer-contact {
  text-align: center;
  font-size: 15px;
  color: #f4f4f5cc;
  margin-top: 10px;
}


/* -------------------------------------------------------
  CONTACT INFO & MAP PLACEHOLDER
------------------------------------------------------- */
.contact ul {
  margin-bottom: 18px;
}
.contact li img {
  width: 22px;
  height: 22px;
  margin-right: 9px;
}
.map-placeholder {
  margin: 18px 0;
  background: #e0e7ff33;
  border-radius: 17px;
  padding: 16px 8px;
  display: flex;
  justify-content: center;
}
.map-placeholder img {
  width: 82px;
  height: 82px;
}


/* -------------------------------------------------------
  COOKIE CONSENT BANNER
------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(100px);
  min-width: 320px;
  max-width: 90vw;
  background: #fffdfc;
  border-radius: 20px;
  box-shadow: 0 4px 32px #A7F3D044;
  padding: 22px 28px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  font-size: 1rem;
  z-index: 4000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.34s;
}
.cookie-banner.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  visibility: visible;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.cookie-btn, .cookie-settings {
  padding: 11px 20px;
  border-radius: 12px;
  border: none;
  background: var(--brand-pink);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: background 0.19s, color 0.14s, box-shadow 0.17s;
  margin-right: 4px;
}
.cookie-btn.accept {
  background: var(--brand-green);
  color: var(--on-accent);
}
.cookie-btn.reject {
  background: var(--brand-blue);
  color: #fff;
}
.cookie-btn.settings, .cookie-settings {
  background: var(--brand-orange);
  color: var(--on-accent);
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings:hover {
  background: var(--brand-pink);
  color: #fff;
  box-shadow: 0 4px 16px -7px var(--brand-pink);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  z-index: 4500;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2A3442cc;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal .modal-content {
  max-width: 410px;
  background: #fff;
  border-radius: 18px;
  padding: 36px 27px 22px 27px;
  box-shadow: 0 8px 50px #f59e4288;
  animation: modalIn 0.35s cubic-bezier(.42,1.18,.58,1.01);
}
@keyframes modalIn {
  0% { transform: scale(0.8) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 18px;
  color: var(--brand-pink);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.cookie-category {
  background: #F0EFEA;
  border-radius: 10px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-blue);
  width: 20px; height: 20px;
}
.cookie-category.essential input {
  accent-color: var(--brand-green);
}
.cookie-category.essential label {
  color: var(--brand-green);
}
.cookie-modal .cookie-btn-row {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 12px;
}


/* -------------------------------------------------------
  PLAYFUL DYNAMIC DETAILS
------------------------------------------------------- */
section {
  border-radius: 28px 26px 38px 26px;
  background: #fffefc;
  box-shadow: 0 2px 16px #fb71851a;
  margin-bottom: 60px;
  transition: box-shadow 0.19s;
  /* animated accent squiggle pseudo for hero sections */
}
section.hero {
  box-shadow: 0 2px 42px -14px var(--brand-pink),0 2px 22px #60A5FA11;
  background: linear-gradient(99deg, #363636 1%, #FB7185 67%, #FDBA74 100%);
  border-radius: 0 0 40px 40px;
  color: #fff;
}

/* Animated decorative squiggle under headings */
h2, .hero h1 {
  position: relative;
}
h2:after, .hero h1:after {
  content: '';
  display: block;
  margin: 8px auto 0 auto;
  width: 64px;
  height: 10px;
  border-radius: 6px 18px 10px 14px;
  background: linear-gradient(90deg, #60A5FA 15%, #FB7185 60%, #FDBA74 100%);
  opacity: 0.47;
  animation: wiggle 1.9s infinite linear alternate;
}
@keyframes wiggle {
  0% { transform: scaleX(1) scaleY(1); }
  25% { transform: scaleX(1.12) scaleY(1.12); }
  50% { transform: scaleX(0.91) scaleY(0.8); }
  75% { transform: scaleX(1.16) scaleY(1.12); }
  100% { transform: scaleX(1) scaleY(1); }
}


/* -------------------------------------------------------
  BUTTONS, LINKS, MICRO-INTERACTIONS
------------------------------------------------------- */
button, .cta, .cookie-btn, .cookie-settings {
  cursor: pointer;
  transition: background 0.18s, color 0.19s, transform 0.11s, box-shadow 0.14s;
  font-family: var(--body-font);
}
button:active, .cta:active, .cookie-btn:active {
  transform: scale(0.96) rotate(-1deg);
}


/* -------------------------------------------------------
  THANK YOU SECTION
------------------------------------------------------- */
.thank-you {
  text-align: center;
  background: linear-gradient(91deg,#FB7185 0%,#F0EFEA 80%);
  margin-top: 30px; margin-bottom: 40px;
  border-radius: 38px 26px 40px 32px;
  box-shadow:0 8px 32px #F0EFEA44;
}
.thank-you h1 {
  color: var(--brand-pink);
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 2.1rem;
}
.thank-you p {
  font-size: 1.1rem;
  margin-bottom: 19px;
}
.thank-you ul {
  margin-bottom: 15px;
  color: #2A3442;
  font-size: 1rem;
}
.thank-you .cta {
  margin: 16px auto 30px auto;
}


/* -------------------------------------------------------
  RESPONSIVE DESIGN (MOBILE-FIRST)
------------------------------------------------------- */
@media (max-width: 992px) {
  .container {
    max-width: 97vw;
    padding: 0 14px;
  }
  .main-nav {
    gap: 13px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 8px;
    font-size: 15px;
  }
  .card-container, .feature-grid, .value-list {
    gap: 16px;
  }
  .testimonial-card, .feature-item, .value-item {
    padding: 18px 10px 18px 15px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 8px;
    min-height: 64px;
  }
  .main-nav, .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .value-list, .feature-grid {
    flex-direction: column;
    gap: 13px;
  }
  .card-container {
    flex-direction: column;
    gap: 13px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .section, section {
    padding: 24px 5px;
    margin-bottom: 36px;
  }
  .feature-item, .value-item {
    padding-left: 13px;
    min-width: unset;
  }
  .testimonials .content-wrapper, .testimonial-card {
    padding: 9px;
  }
  .contact ul, .thank-you ul {
    font-size: 0.99rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 6px;
  }
  .hero {
    border-radius: 0 0 20px 20px;
    padding: 34px 0 35px 0;
  }
  .hero h1 {
    font-size: 1.17rem;
  }
  .hero .subheadline {
    font-size: 0.97rem;
  }
}


/* -------------------------------------------------------
  PLAYFUL FUN FONTS (HEADINGS)
------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700,900&display=swap');


/* -------------------------------------------------------
  UTILITY CLASSES
------------------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }


/* -------------------------------------------------------
  Z-INDEX MANAGEMENT
------------------------------------------------------- */
header { z-index: 99; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 4000; }
.cookie-modal { z-index: 4500; }

/*
  Absolutely NO CSS grid or columns used. All layouts are flexbox only.
  All flexbox gaps are covered for ALL container/layout structures.
------------------------------------------------------------------------------*/