/* RESET & BASE TYPOGRAPHY */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FCFBFA;
  color: #373A47;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1D3557;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F49A36;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 600;
}

/* FONT SCALE FOR SOFT-PASTEL, FRIENDLY STYLE */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #255286;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #275173;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #344869;
  margin-bottom: 14px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #3b4256;
}
p, li, label, blockquote {
  font-size: 1rem;
  margin-bottom: 8px;
}
blockquote {
  font-style: italic;
  color: #606985;
  background: #F2F7FA;
  border-left: 4px solid #D5E5F2;
  padding: 12px 24px;
  margin: 12px 0 24px 0;
  border-radius: 8px 16px 16px 8px;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(34,67,100,0.07);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  flex: 1 1 300px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(34,67,100,0.11);
}

.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 {
  background: #F4F7FD;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(41,67,96,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  max-width: 400px;
  min-width: 240px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #1D3557;
  font-weight: 400;
}
.testimonial-meta {
  font-size: 0.96rem;
  color: #275173;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BRAND COLORS PALETTE (SOFT-PASTEL TOUCHES) */
:root {
  --color-primary: #1D3557;
  --color-secondary: #F2F2F2;
  --color-accent: #F49A36;
  --color-bg: #FCFBFA;
  --color-blue-pastel: #D5E5F2;
  --color-soft-lavender: #F6ECFB;
  --color-green-pastel: #E9F7F2;
  --color-pale-pink: #F8E7ED;
  --color-button-hover: #E6B97B;
  --color-card-shadow: rgba(41, 67, 96, 0.11);
  --color-testimonial-bg: #F4F7FD;
  --color-danger: #E57373;
}

/* HEADER NAVIGATION */
header {
  width: 100%;
  background: var(--color-bg);
  z-index: 30;
}
.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 12px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.brand-bar img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #344869;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
.main-nav a:hover {
  background: var(--color-blue-pastel);
  color: var(--color-primary);
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 14px;
  border: none;
  outline: none;
  padding: 12px 28px;
  font-size: 1.05rem;
  margin-left: 10px;
  cursor: pointer;
  box-shadow: 0 2px 5px 0 rgba(220,161,124,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.24s;
}
.btn-primary {
  background: linear-gradient(90deg,#F4CFDF 0,#D5E5F2 100%);
  color: #1D3557;
  border: 2px solid #F49A36;
  box-shadow: 0 2px 8px 0 var(--color-card-shadow);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-button-hover);
  color: #1D3557;
  border-color: #F49A36;
}
.btn-secondary {
  background: #F49A36;
  color: #ffffff;
  border: 2px solid #e89929;
  box-shadow: 0 2px 8px 0 rgba(244,154,54,0.09);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFA552;
  color: #fff;
  border-color: #E1931B;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #1D3557;
  margin-left: 20px;
  cursor: pointer;
  z-index: 120;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F49A36;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(110deg, #F4F7FD 60%, #F6ECFB 100%);
  z-index: 119;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.45s cubic-bezier(.32,1.03,.58,1);
  box-shadow: 0 6px 32px rgba(30,37,52,0.16);
  padding: 24px 34px 0 30px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #1D3557;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 24px;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: #F49A36;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  color: #255286;
  padding: 14px 0;
  border-radius: 0;
  border-bottom: 1px solid #E9E8F3;
  transition: background .18s, color .18s;
  width: 100%;
}
.mobile-nav a:hover {
  background: #E9F7F2;
  color: #F49A36;
}

/* HERO, FEATURES, CARDS, LISTINGS */
.hero-section {
  min-height: 360px;
  background: linear-gradient(120deg, #D5E5F2 40%, #F6ECFB 100%);
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 56px 0 64px 0;
  border-radius: 0 0 46px 44px;
  box-shadow: 0 6px 34px 0 rgba(73,111,165,0.06);
}
.hero-section .content-wrapper{
  align-items: flex-start;
  gap: 18px;
}
.subheadline {
  font-size: 1.12rem;
  color: #3B4256;
  margin-bottom: 30px;
  max-width: 680px;
}
.feature-grid, .service-list, .benefit-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid li, .benefit-list li {
  background: #F4F7FD;
  border-radius: 16px;
  flex: 1 1 260px;
  min-width: 220px;
  padding: 28px 20px;
  box-shadow: 0 2px 10px 0 var(--color-card-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.feature-grid img, .benefit-list img {
  width: 44px;
  height: 44px;
}
.service-list li, .faq-list li {
  background: #fff;
  border-radius: 12px;
  flex: 1 1 280px;
  padding: 24px 18px;
  box-shadow: 0 2px 8px rgba(210,187,197,0.05);
  margin-bottom: 20px;
}
.service-list li .price {
  color: #F49A36;
  font-weight: 700;
}

/* Service Card Grid on Services Page */
.service-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.service-card-grid li {
  background: #F6ECFB;
  border-radius: 14px;
  flex: 1 1 260px;
  min-width: 210px;
  max-width: 330px;
  box-shadow: 0 2px 8px 0 rgba(203,151,200,0.05);
  padding: 24px 22px 20px 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.service-card-grid li:hover {
  box-shadow: 0 6px 24px 0 rgba(244,154,54,0.16);
  transform: translateY(-4px);
}
.service-price {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1.1rem;
}
.service-highlight {
  background: #E9F7F2;
  border-radius: 12px;
  padding: 17px 20px;
  box-shadow: 0 1px 5px rgba(157,213,195,0.08);
  font-size: 1.05rem;
  color: #255286;
  margin-top: 8px;
}
.faq-list li h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2E3C4E;
}

/* Blog Cards */
.blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 20px 0;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 9px rgba(44, 71, 127, 0.10);
  padding: 22px 20px 18px 20px;
  min-width: 250px;
  flex: 1 1 270px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, border-color .18s;
  border: 2px solid transparent;
}
.blog-card.highlighted {
  background: #F6ECFB;
  border-color: #D5E5F2;
  box-shadow: 0 4px 18px rgba(160, 107, 220, 0.09);
  z-index: 1;
}
.blog-card a {
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 4px;
}
.blog-card:hover {
  border-color: #F49A36;
  box-shadow: 0 8px 22px 0 rgba(244,154,54,0.11);
}

/* Blog Hero Section */
.blog-hero-section {
  background: linear-gradient(90deg, #F4F7FD 0%, #E9F7F2 85%);
}
.blog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 18px 0;
}
#blog-search-input {
  font-family: inherit;
  font-size: 1rem;
  padding: 8px 14px;
  border: 1.5px solid #D5E5F2;
  border-radius: 8px;
  background: #fff;
  color: #373A47;
  margin-left: 6px;
  transition: border-color 0.14s;
}
#blog-search-input:focus {
  border-color: #F49A36;
  outline: none;
}
.blog-categories {
  margin-top: 6px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 1rem;
  align-items: center;
  color: #606985;
}
.blog-categories a {
  background: #F4F7FD;
  border-radius: 8px;
  padding: 5px 13px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #275173;
  font-weight: 500;
  transition: background 0.14s, color 0.14s;
}
.blog-categories a:hover {
  background: #F49A36;
  color: #fff;
}

/* Newsletter Signup */
.newsletter-section {
  background: #F8E7ED;
  border-radius: 32px;
  box-shadow: 0 2px 14px 0 rgba(199,135,150,0.07);
  margin-bottom: 60px;
  padding: 40px 0;
}
.newsletter-signup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
#newsletter-email {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid #F49A36;
  background: #fff;
  min-width: 210px;
  transition: border-color 0.14s;
}
#newsletter-email:focus {
  border-color: #F49A36;
}

/* Testimonials */
.testimonials-section {
  background: #F4F7FD;
  border-radius: 36px;
  padding-top: 48px;
}
.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.client-logos {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: flex-start;
  margin: 9px 0 0 0;
}
.client-logos img {
  width: 70px;
  height: auto;
  filter: grayscale(.13) brightness(1.08);
  opacity: 0.8;
}

/* CASE STUDIES */
.case-study-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.case-study-grid .text-section {
  background: #E9F7F2;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 2px 10px 0 rgba(160,219,169,0.07);
  min-width: 240px;
  flex: 1 1 350px;
}

/* CLIENTS SECTION */
.clients-section {
  background: #F6ECFB;
  border-radius: 28px;
  margin-bottom: 60px;
  box-shadow: 0 2px 12px 0 rgba(230,184,245,0.07);
}
.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-bottom: 28px;
  font-size: 1.07rem;
  color: #255286;
}
.client-list li {
  background: #fff;
  border-radius: 8px;
  padding: 8px 18px;
  box-shadow: 0 1px 4px 0 rgba(41,67,96,0.06);
}

/* PROCESS + TIMELINE ON ARBEITSWEISE */
.process-section {
  background: #F4F7FD;
  border-radius: 36px;
  box-shadow: 0 2px 12px 0 rgba(34,67,100,0.06);
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 24px;
  counter-reset: step;
}
.process-steps li {
  position: relative;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px 22px 20px 54px;
  box-shadow: 0 2px 9px 0 rgba(132, 148, 180, 0.07);
  min-width: 210px;
  flex: 1 1 260px;
}
.process-steps li h3 {
  margin-bottom: 3px;
}
.process-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 26px;
  font-size: 1.18rem;
  color: #F49A36;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  background: #F4CFDF;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline {
  margin: 22px 0 18px 0;
  background: #F8E7ED;
  border-radius: 12px;
  padding: 16px 24px;
}
.process-diagram {
  background: #E9F7F2;
  border-radius: 12px;
  padding: 16px 24px;
}

/* Contact Page */
.contact-form-section, .contact-info-section {
  background: #F4F7FD;
  border-radius: 32px;
  box-shadow: 0 2px 10px 0 rgba(34,67,100,0.05);
  margin-bottom: 60px;
}
.contact-details {
  font-size: 1.06rem;
  background: #fff;
  border-radius: 12px;
  padding: 15px 20px;
  margin: 12px 0 16px 0;
  box-shadow: 0 1px 6px 0 rgba(190,164,185,0.06);
  color: #275173;
  word-break: break-word;
}
.contact-info-section ul {
  margin: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info-section ul li {
  font-size: 1rem;
  color: #2c4259;
}

/**************************************/
/* FOOTER */
/**************************************/
footer {
  background: #F2F2F2;
  width: 100%;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -2px 18px 0 rgba(22,56,109,0.07);
  margin-top: 64px;
  margin-bottom: 0;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 30px 32px 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  flex: 2 1 350px;
  margin-bottom: 14px;
}
.footer-nav a {
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  padding: 7px 9px;
  color: #275173;
  border-radius: 9px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover {
  background: #F6ECFB;
  color: #F49A36;
}
.footer-contact {
  flex: 1 1 250px;
  font-size: 0.98rem;
  color: #475869;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact a {
  color: #F49A36;
  text-decoration: underline;
}
.footer-logo img {
  width: 90px;
  margin-top: 16px;
}

/* CTA SECTIONS */
.cta-section {
  background: linear-gradient(100deg, #F6ECFB 50%, #F4F7FD 100%);
  border-radius: 30px;
  box-shadow: 0 2px 18px 0 rgba(167,157,237,0.04);
  text-align: center;
}
.cta-section .content-wrapper {
  align-items: center;
}
.cta-section h2 {
  color: #2E3C4E;
  margin-bottom: 16px;
}

/**************************************/
/* THANK YOU PAGE */
/**************************************/
.thank-you-section {
  background: #E9F7F2;
  border-radius: 32px;
  box-shadow: 0 2px 10px 0 rgba(34,67,100,0.05);
  margin-bottom: 60px;
}
.thank-you-section a.btn-primary {
  margin-top: 18px;
}

/**************************************/
/* LEGAL PAGES SECTIONS*/
/**************************************/
.privacy-section, .gdpr-section, .cookie-policy-section, .terms-section {
  background: #F4F7FD;
  border-radius: 28px;
  box-shadow: 0 2px 10px 0 rgba(223,210,234,0.07);
  padding: 40px 0;
  margin-bottom: 60px;
}
.privacy-section .text-section, .gdpr-section .text-section,
.cookie-policy-section .text-section, .terms-section .text-section {
  background: #fff;
  border-radius: 14px;
  padding: 24px 26px 18px 26px;
  box-shadow: 0 2px 8px 0 rgba(167,157,237,0.07);
  margin-top: 10px;
  margin-bottom: 10px;
}
.privacy-section a, .gdpr-section a, .terms-section a {
  color: #F49A36;
  text-decoration: underline;
}

/**************************************/
/* COOKIE CONSENT BANNER & MODAL */
/**************************************/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: linear-gradient(97deg, #F4F7FD 56%, #F6ECFB 100%);
  box-shadow: 0 -2px 20px rgba(28, 67, 97, 0.06);
  z-index: 9500;
  padding: 16px 18px;
  border-radius: 22px 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  justify-content: center;
  font-size: 1rem;
  animation: fadeInBanner 0.62s ease 0s 1;
}
@keyframes fadeInBanner {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-banner-text {
  color: #3b4256;
  padding: 6px 0;
}
.cookie-banner .btn-cookie {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #F49A36;
  color: #fff;
  border-radius: 12px;
  padding: 8px 22px;
  border: none;
  margin-right: 6px;
  margin-top: 2px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(220,161,124,0.08);
  transition: background 0.16s;
}
.cookie-banner .btn-cookie-settings {
  background: #F4CFDF;
  color: #89544C;
  border: 1.5px solid #F49A36;
}
.cookie-banner .btn-cookie-reject {
  background: #E57373;
  color: #fff;
  border: none;
}
.cookie-banner .btn-cookie:hover {
  filter: brightness(1.08);
  background: #FFA552;
}
.cookie-banner .btn-cookie-reject:hover {
  background: #d44141;
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34, 67, 100, 0.3);
  z-index: 9700;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
}
#cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #F4F7FD;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 5px 38px 0 rgba(65,98,143,0.10);
  min-width: 310px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: showModal 0.42s cubic-bezier(.21,1.02,.37,1)
}
@keyframes showModal {
  from { opacity: 0; transform: scale(0.92) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-content h3 {
  font-size: 1.22rem;
  margin-bottom: 14px;
  color: #255286;
}
.cookie-modal-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #D5E5F2;
  border-radius: 14px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: background .15s;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  background: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 rgba(92,92,92,0.08);
  transition: left .15s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 18px;
  background: #F49A36;
}
.cookie-modal-btn-row {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-modal-close {
  position: absolute;
  right: 38px;
  top: 32px;
  font-size: 1.48rem;
  color: #1D3557;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.12s;
  z-index: 11;
}
.cookie-modal-close:hover{
  color: #F49A36;
}

/***********************/
/* RESPONSIVE DESIGN  */
/***********************/
@media (max-width: 1120px) {
  .container {
    max-width: 97vw;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}
@media (max-width: 900px) {
  .brand-bar, .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .main-nav, .footer-nav {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.05rem;
  }
  h2 {
    font-size: 1.44rem;
  }
  .brand-bar {
    flex-direction: row;
    padding: 12px 0 8px 0;
    align-items: center;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .hero-section, .newsletter-section, .privacy-section, .cookie-policy-section, .gdpr-section, .thank-you-section, .clients-section, .process-section, .testimonials-section, .contact-form-section, .contact-info-section, .cta-section {
    border-radius: 18px;
    padding: 30px 2vw;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 24px;
    padding: 30px 12px 24px 12px;
  }
  .feature-grid, .service-list, .service-card-grid, .benefit-list, .blog-cards, .testimonial-slider, .case-study-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .process-steps {
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .hero-section {
    min-height: 240px;
    padding: 34px 0 22px 0;
  }
  .footer-nav {
    gap: 12px;
    flex-direction: column;
  }
  .brand-bar img {
    height: 33px;
  }
  .btn-primary, .btn-secondary {
    padding: 11px 13vw;
    font-size: 1rem;
    margin-left: 0;
    margin-top: 8px;
  }
  .feature-grid li, .service-card-grid li, .benefit-list li, .case-study-grid .text-section {
    max-width: none;
    width: 100%;
    min-width: unset;
    padding: 20px 8px;
    border-radius: 9px;
  }
}
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    border-radius: 14px 14px 0 0;
    font-size: 0.98rem;
    padding: 10px 6px;
  }
  .btn-primary, .btn-secondary, .cookie-banner .btn-cookie {
    font-size: 0.98rem;
    padding: 9px 11vw;
  }
  .footer-logo img {
    width: 60px;
  }
}
