/* ---- CSS RESET & NORMALIZATION ---- */
html {
  box-sizing: border-box;
  font-size: 100%;
}
*,*::before,*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #20244F;
  background: #F7F8FF;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul {
  list-style: none;
  padding-left: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #20244F;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; font-weight: 600; }
h4 { font-size: 1.1rem; margin-bottom: 12px; font-weight: 600; }
p, li, span {
  font-size: 1rem;
  color: #353969;
}
p { margin-bottom: 16px; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section,
section:not(.hero):not(.cta) {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.hero, .cta, .newsletter-signup, .confirmation-section {
  margin-bottom: 60px;
  padding: 40px 0;
}

/* ---- Brand Pastel Palette & Utility Colors ---- */
:root {
  --primary: #20244F;
  --primary-light: #46509A;
  --secondary: #EAEDFE;
  --accent: #2ECC70;
  --pastel-blue: #DEDFFE;
  --pastel-purple: #E1DBF9;
  --pastel-green: #C5F7E3;
  --pastel-pink: #FEDEE8;
  --pastel-yellow: #FFF7CA;
  --white: #fff;
  --grey: #F6F6FB;
  --shadow: rgba(32, 36, 79, 0.07);
}

/* ---- HEADERS & NAVIGATION ---- */
header {
  background: var(--white);
  box-shadow: 0 2px 12px var(--shadow);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.logo img {
  height: 40px;
  width: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 24px;
  color: var(--primary);
  transition: background 0.18s, color 0.18s;
}
.main-nav a.cta.primary {
  background: var(--pastel-blue);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 2px 10px var(--shadow);
  border-radius: 999px;
  margin-left: 12px;
  border: none;
  transition: background 0.22s;
}
.main-nav a:hover:not(.cta), .footer-nav a:hover {
  background: var(--pastel-yellow);
  color: var(--primary-light);
}
.main-nav a.cta.primary:hover {
  background: var(--accent);
  color: var(--white);
}

/* ---- Mobile Menu ---- */
.mobile-menu-toggle {
  display: none;
  background: var(--pastel-pink);
  border: none;
  font-size: 2rem;
  padding: 7px 16px;
  border-radius: 16px;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1001;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--white);
  outline: none;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(234, 237, 254, 0.97);
  z-index: 2000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.7,0.2,0.2,1);
  padding: 28px 28px 28px 32px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  margin-bottom: 28px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
}
.mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 11px 0;
  color: var(--primary);
  border-radius: 8px;
  transition: background 0.22s, color 0.22s;
  text-align: left;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: var(--pastel-yellow);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ---- HERO SECTION ---- */
.hero {
  background: linear-gradient(85deg, var(--pastel-blue), var(--pastel-pink) 80%);
  border-radius: 0 0 38px 38px;
  box-shadow: 0 6px 42px var(--shadow);
}
.hero .container {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  max-width: 670px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.4rem;
  background: linear-gradient(87deg, var(--primary) 60%, var(--pastel-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.15rem;
  color: #353969;
  margin-bottom: 30px;
}

/* ---- FLEXBOX LAYOUTS & UTILITY CLASSES ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 18px var(--shadow);
  padding: 32px 24px;
  transition: box-shadow 0.18s, transform 0.22s;
}
.card:hover {
  transform: translateY(-3px) scale(1.016);
  box-shadow: 0 8px 28px 2px rgba(32,36,79,0.14);
}
.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;
  padding: 24px 30px;
  background: var(--pastel-purple);
  border-radius: 16px;
  box-shadow: 0 2px 14px var(--shadow);
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card > p {
  margin-bottom: 0;
  color: #19204c;
  font-size: 1.08rem;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
  flex-wrap: wrap;
  color: #16204c;
}
.testimonial-meta .stars {
  height: 18px;
  margin-left: 3px;
}
.feature-item,
.features ul li,
.feature-list li,
ul.team-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 15px;
  padding: 22px 20px 20px 22px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: box-shadow 0.2s, transform 0.17s;
}
.features ul li img, .feature-list li img, .feature-grid li img, .service-list li img, .service-grid li img {
  height: 36px;
  width: 36px;
  margin-bottom: 6px;
}

.features {
  background: linear-gradient(90deg, var(--pastel-blue) 70%, var(--pastel-green) 100%);
  border-radius: 30px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.features .content-wrapper {
  align-items: center;
  text-align: center;
}

.feature-grid,
.service-list,
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.feature-grid li,
.service-list li,
.service-grid li {
  flex: 1 1 230px;
  min-width: 215px;
  max-width: 330px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 3px 14px var(--shadow);
  padding: 26px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.19s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.feature-grid li:hover,
.service-list li:hover,
.service-grid li:hover {
  box-shadow: 0 6px 24px 4px rgba(32,36,79,0.13);
  transform: translateY(-3px) scale(1.018);
}

/* ---- SERVICES, BENEFITS, FAQ, TEAM ---- */
.benefits ul, .features-section ul, .faq-list, .team-list, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
 .benefits ul li, .features-section ul li, .feature-list li {
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 360px;
}
.faq-section {
  background: var(--pastel-blue);
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.faq-section h2 {
  margin-bottom: 18px;
}
.faq-list {
  flex-direction: column;
  gap: 20px;
}
.faq-list li {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  border-radius: 13px;
  padding: 18px 22px 8px 22px;
  margin-bottom: 0;
}
.faq-list h3 {
  cursor: pointer;
  font-size: 1.1rem;
  margin-bottom: 9px;
  color: var(--primary);
  font-weight: 500;
  transition: color 0.19s;
}
.faq-list h3:hover {
  color: var(--accent);
}
.faq-answer {
  font-size: 0.98rem;
  color: #353969;
  display: block;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.team-list li {
  background: var(--white);
  padding: 22px 20px 26px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--shadow);
  min-width: 220px;
  max-width: 310px;
}
.team-list li h3 {
  font-size: 1.23rem;
  margin-bottom: 3px;
}
.team-list li span {
  font-weight: 500;
  color: #5e6b86;
  font-size: 1rem;
  margin-bottom: 5px;
}

.brand-values {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.brand-values li {
  flex: 1 1 220px;
  min-width: 170px;
  background: var(--pastel-pink);
  padding: 16px 19px;
  border-radius: 13px;
  box-shadow: 0 2px 8px var(--shadow);
}

/* ---- BLOG & TAGS ---- */
.latest-posts .search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: 0 2px 10px var(--shadow);
  margin-bottom: 30px;
}
.latest-posts .search-bar input {
  border: none;
  outline: none;
  font-size: 1rem;
  flex: 1;
  background: transparent;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
}
.latest-posts .search-bar img {
  height: 20px;
  opacity: 0.7;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.post-list li {
  background: var(--pastel-green);
  border-radius: 15px;
  box-shadow: 0 2px 9px var(--shadow);
  padding: 22px 23px 18px 23px;
}
.post-list h3 {
  color: var(--primary);
  margin-bottom: 8px;
}
.category {
  font-size: 0.92rem;
  color: var(--primary-light);
  background: var(--pastel-yellow);
  border-radius: 6px;
  padding: 3px 9px;
  display: inline-block;
  margin-top: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.tags-section .tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.tag-cloud span {
  background: var(--pastel-purple);
  color: var(--primary);
  border-radius: 16px;
  padding: 6px 13px;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 1px 4px var(--shadow);
  transition: background 0.19s;
}
.tag-cloud span:hover {
  background: var(--accent);
  color: var(--white);
}
.featured-posts {
  margin-top: 26px;
  padding: 18px 20px 10px 20px;
  background: var(--pastel-blue);
  border-radius: 13px;
}
.featured-posts ul {
  display: flex; flex-direction: column; gap: 10px;
  margin: 0;
}

/* ---- CASE STUDY & SUCCESS STORIES ---- */
.case-study-list {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.case-study {
  flex: 1 1 320px;
  min-width: 280px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 18px var(--shadow);
  padding: 32px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-study h3 {
  font-size: 1.21rem;
  margin-bottom: 10px;
}
.case-study h3 span {
  color: var(--accent);
}
.case-study ul {
  margin-bottom: 8px;
}
.case-study .testimonial-card {
  background: var(--pastel-yellow);
  color: #20244F;
  font-size: 1.01rem;
  margin-top: 4px;
}
.case-study .testimonial-card span {
  color: var(--primary);
  font-weight: 600;
}

/* ---- PRICING TABLE ---- */
.pricing-section {
  background: var(--pastel-blue);
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 30px;
}
.plan {
  background: var(--white);
  border-radius: 19px;
  box-shadow: 0 5px 24px var(--shadow);
  flex: 1 1 238px;
  min-width: 205px;
  max-width: 330px;
  padding: 30px 26px 26px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.15s;
  border: 2.5px solid transparent;
}
.plan h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.plan .plan-price {
  font-size: 1.45rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 13px;
}
.plan ul {
  margin: 17px 0 23px 0;
  text-align: left;
  color: #353969;
  font-size: 1rem;
}
.plan ul li {
  margin-left: 0;
  margin-bottom: 10px;
  background: none;
  border: none;
  padding: 0;
}
.plan a {
  background: var(--pastel-purple);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  border-radius: 999px;
  padding: 11px 30px;
  transition: background 0.18s, color 0.18s;
  font-weight: 600;
  box-shadow: 0 2px 8px var(--shadow);
  margin-top: 9px;
  border: none;
  outline: none;
  display: inline-block;
}
.plan a:hover {
  background: var(--accent);
  color: var(--white);
}
.plan:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px 2px rgba(32,36,79,0.13);
  transform: translateY(-3px) scale(1.018);
}

.compare-services ul {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.compare-services ul li {
  background: var(--pastel-pink);
  border-radius: 13px;
  padding: 13px 15px;
  min-width: 170px;
  font-size: 0.99rem;
  box-shadow: 0 2px 6px var(--shadow);
}

/* ---- CTA BUTTONS ---- */
.cta.primary, .content-wrapper > a.cta.primary, .content-wrapper > p > a.cta.primary {
  display: inline-block;
  background: linear-gradient(92deg, var(--accent), var(--pastel-blue));
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  padding: 13px 37px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 18px var(--shadow);
  border: none;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.13s;
  margin-top: 14px;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px) scale(1.025);
}

/* ---- FOOTER ---- */
footer {
  background: var(--secondary);
  border-radius: 28px 28px 0 0;
  margin-top: 56px;
  padding-top: 32px;
  box-shadow: 0 -8px 38px var(--shadow);
}
.footer-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 170px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  padding: 3px 0;
  transition: color 0.18s;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
}
.footer-brand img {
  height: 36px;
  width: auto;
}
.footer-brand span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
  gap: 16px;
}
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.footer-contact ul {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1rem;
}
.footer-contact li, .footer-contact li img {
  display: inline-block;
  vertical-align: middle;
}
.footer-contact li img {
  margin-right: 8px;
  height: 19px;
}
.social-icons {
  display: flex;
  gap: 14px;
}
.social-icons img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background: var(--pastel-blue);
  padding: 4px;
  box-shadow: 0 1px 4px var(--shadow);
  transition: background 0.2s;
  cursor: pointer;
}
.social-icons img:hover {
  background: var(--accent);
}
.footer-bottom {
  width: 100%;
  text-align: center;
  color: #717283;
  font-size: 0.98rem;
  padding-bottom: 17px;
}

/* ---- POLICY & CONFIRMATION PAGES STYLES ---- */
.policy-section, .gdpr-section, .confirmation-section {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 40px 0;
  margin-bottom: 60px;
}
.policy-text {
  font-size: 1.04rem;
  color: #353969;
  margin-top: 16px;
}
.policy-text ul, .gdpr-section ul, .policy-section ul, .confirmation-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
}
.policy-text h2, .policy-text h3, .gdpr-section h2, .policy-section h2 {
  margin-top: 22px;
  margin-bottom: 12px;
  font-size: 1.13rem;
  color: var(--primary-light);
  font-weight: 600;
}

.confirmation-section .content-wrapper {
  align-items: center;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.confirmation-section a {
  margin-top: 20px;
}

/* ---- COOKIES CONSENT BANNER ---- */
.cookie-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: fixed;
  left: 20px; right: 20px; bottom: 18px;
  background: var(--pastel-yellow);
  color: #20244F;
  border-radius: 19px;
  box-shadow: 0 8px 32px var(--shadow);
  z-index: 3000;
  padding: 20px 26px;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-banner p {
  flex: 2 1 260px;
  margin-bottom: 0;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex: 1 1 120px;
  min-width: 120px;
}
.cookie-banner button {
  background: var(--pastel-blue);
  color: var(--primary);
  border: none;
  padding: 10px 19px;
  border-radius: 999px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  transition: background 0.18s, color 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 8px var(--shadow);
  cursor: pointer;
}
.cookie-banner button.accept {
  background: var(--accent);
  color: var(--white);
}
.cookie-banner button.accept:hover
, .cookie-banner button.settings:hover {
  background: var(--primary-light);
  color: var(--white);
}
.cookie-banner button.reject {
  background: var(--pastel-pink);
  color: var(--primary);
}
.cookie-banner button.reject:hover {
  background: #f993ae;
  color: var(--white);
}
.cookie-banner button.settings {
  background: var(--pastel-blue);
  color: var(--primary);
}

/* Cookies modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32, 36, 79, 0.22);
  z-index: 4000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cookie-modal-overlay.show {
  display: flex;
  animation: fadeInCookie 0.2s;
}
@keyframes fadeInCookie {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--pastel-pink);
  color: var(--primary);
  padding: 22px 24px 18px 24px;
  border-radius: 20px;
  box-shadow: 0 14px 48px var(--shadow);
  min-width: 310px;
  max-width: 95vw;
  min-height: 180px;
  position: relative;
  z-index: 4010;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-weight: 500;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-category input[type='checkbox'], .cookie-category input[type='radio'] {
  margin-right: 6px;
  transform: scale(1.14);
}
.cookie-modal-note {
  font-size: 0.97rem;
  color: #6a6b7f;
  margin-top: 5px;
  margin-bottom: 13px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 14px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal button {
  background: var(--pastel-blue);
  color: var(--primary);
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 2px 8px var(--shadow);
  transition: background 0.17s, color 0.17s;
  cursor: pointer;
}
.cookie-modal button.accept {
  background: var(--accent);
  color: var(--white);
}
.cookie-modal button.reject {
  background: var(--pastel-pink);
  color: var(--primary);
}
.cookie-modal button.close {
  background: none;
  color: var(--primary);
  font-size: 1.37rem;
  padding: 2px 11px;
  position: absolute;
  top: 6px;
  right: 12px;
  box-shadow: none;
}
.cookie-modal button.close:hover {
  background: var(--pastel-blue);
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 1024px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .footer-content-wrapper {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .pricing-table, .case-study-list, .feature-grid, .service-list, .service-grid, .team-list, .benefits ul, .features-section ul, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: 1.08rem; }

  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .hero {
    border-radius: 0 0 18px 18px;
    min-height: 160px;
    padding: 24px 0;
  }
  .hero .content-wrapper {
    max-width: 99vw;
    padding: 0 4vw;
  }
  .features, .features-section, .benefits, .faq-section, .pricing-section, .policy-section, .gdpr-section, .confirmation-section {
    border-radius: 10px;
    padding: 24px 0 8px 0;
    min-width: 0;
  }
  .case-study, .plan, .card, .testimonial-card, .benefits ul li, .feature-list li, .service-list li, .feature-grid li, .service-grid li, .team-list li, .compare-services ul li {
    min-width: 0;
    max-width: 98vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
  }
  .testimonial-card {
    padding: 16px 10px;
    font-size: 0.97rem;
  }
  .plan {
    padding: 17px 10px 14px 10px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    left: 7px; right: 7px; bottom: 7px;
    padding: 13px 6px;
    font-size: 0.96rem;
  }
  .cookie-banner p { font-size: 0.97rem; }
  .cookie-modal { min-width: 95vw; padding: 11px 9px 11px 12px; }
}
@media (max-width: 480px) {
  .container {
    padding: 0 3vw;
  }
}

/* ---- MICRO-INTERACTIONS & TRANSITIONS ---- */
button, a, input, select, textarea {
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, border-color 0.17s;
}

/* ---- ACCESSIBILITY ---- */
:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 1.8px;
  border-radius: 4px;
}

/* ---- OVERRIDES (for critical spacing) ---- */
.features, .features-section, .benefits, .faq-section, .pricing-section, .policy-section, .gdpr-section, .confirmation-section, .cta, .newsletter-signup {
  margin-bottom: 60px !important;
  padding-top: 40px !important;
  padding-bottom: 0 !important;
}

/***** END *****/