/* ========================
   CSS RESET / NORMALIZE
======================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #F3F5F7;
  color: #25303B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .25s;
}
a:focus, button:focus {
  outline: 2px solid #A45C06;
  outline-offset: 2px;
}
ul, ol {
  list-style-position: outside;
  margin-left: 1.25em;
}

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

/* ========================
   CSS VARIABLES
======================== */
:root {
  --color-primary: #25303B;
  --color-secondary: #A45C06;
  --color-accent: #F3F5F7;
  --color-gold: #C9A14A;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;

  --radius: 12px;
  --shadow: 0 4px 24px rgba(37,48,59,0.10);
  --shadow-card: 0 2px 15px 0 rgba(37,48,59,0.07);
  --shadow-hover: 0 4px 24px 0 rgba(164,92,6,0.12);
}

/* ===========================
   LUXURY PREMIUM DESIGN BASE
=========================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.125rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.13rem;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.015em;
}
strong {
  font-weight: 700;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ========================
   HEADER & NAVIGATION
======================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(37,48,59,0.03);
  z-index: 11;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 10px 0;
  min-width: 150px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  font-family: var(--font-display);
}
.main-nav a {
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 6px;
  border-bottom: 2px solid transparent;
  color: var(--color-primary);
  transition: border-color .3s,color .2s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}

.cta-btn {
  background: linear-gradient(90deg,#A45C06 0%,#C9A14A 100%);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 30px;
  box-shadow: 0 2px 8px 0 rgba(164,92,6,0.07);
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.05em;
  transition: background .2s,transform .2s,box-shadow .2s;
  position: relative;
  z-index: 1;
}
.cta-btn.secondary {
  background: none;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
.cta-btn:hover {
  background: linear-gradient(90deg,#C9A14A 0%,#A45C06 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-hover);
}
.cta-btn.secondary:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
  border-color: var(--color-gold);
}

/* ===============
  BURGER MENU
================ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 2rem;
  padding: 10px;
  line-height: 1;
  cursor: pointer;
  z-index: 15;
  border-radius: 50%;
  transition: background .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-accent);
}
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* =======================
  MOBILE MENU OVERLAY
======================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 100;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(100vw);
  transition: transform .35s cubic-bezier(.77,0,.175,1);
  box-shadow: 0 6px 24px 0 rgba(37,48,59,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 2.25rem;
  padding: 18px 24px 8px 0;
  margin: 0;
  cursor: pointer;
  z-index: 110;
  transition: color .2s;
}
.mobile-menu-close:hover {
  color: var(--color-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 40px 32px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.17rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-accent);
  width: 100%;
  transition: color .25s;
}
.mobile-nav a:hover {
  color: var(--color-secondary);
}
@media (max-width: 480px) {
  .mobile-nav {
    padding: 28px 15px;
  }
}

/* =========================
 HERO & LUXURY SECTIONS
========================= */
.hero-section {
  background: #25303B;
  color: #fff;
  padding: 64px 0 40px 0;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  box-shadow: 0 4px 28px 0 rgba(37,48,59,0.08);
  margin-bottom: 60px;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero-section .subheadline {
  color: #C9A14A;
}
.hero-section .cta-btn {
  margin-top: 28px;
  background: linear-gradient(90deg, #A45C06 0%, #C9A14A 100%);
}

/* =====================
   FEATURES / CARDS
===================== */
.features-section {
  background: var(--color-accent);
  margin-bottom: 60px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 0;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 26px 26px 26px;
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 380px;
  margin-bottom: 20px;
  border: 1px solid #ede7da;
  transition: box-shadow .25s,border-color .18s,transform .16s;
  position: relative;
}
.feature-item img {
  width: 48px;
  height: 48px;
}
.feature-item h3 {
  color: var(--color-secondary);
  font-size: 1.13rem;
  font-weight: 600;
}
.feature-item p {
  font-size: 1rem;
}
.feature-item::after {
  content: '';
  position: absolute;
  left: 20px;
  bottom: 0;
  height: 3px;
  width: 45px;
  border-radius: 2px;
  background: var(--color-gold);
  opacity: 0.14;
  pointer-events: none;
}
.feature-item:hover, .feature-item:focus-within {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.015);
}

/* =============
   ABOUT PREVIEW
=============== */
.about-preview-section, .about-section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.about-preview-section h2, .about-section h2 {
  color: var(--color-secondary);
}
.brand-values {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.06rem;
  color: #25303B;
}
.brand-values li {
  padding-left: 18px;
  position: relative;
}
.brand-values li::before {
  content: '\2014\0020';
  color: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 0;
}

/* ==============
   TRUST POINTS
================ */
.trustpoints-section,.usp-list {
  width: 100%;
}
.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
}
.usp-list li {
  background: #F8F6F2;
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(37,48,59,0.05);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 285px;
  min-width: 220px;
  border: 1px solid #eaded0;
  font-size: 1rem;
}
.usp-list li img {
  width: 36px;
  height: 36px;
}

.certificates h3{
  margin-top: 18px;
  font-size: 1.15rem;
  color: var(--color-secondary);
}
.certificates ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style-type: disc;
  margin-left: 23px;
}

/* ===============
  TESTIMONIALS
================ */
.testimonials-preview-section, .testimonials-section {
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 20px 24px;
  margin-bottom: 20px;
  border-left: 6px solid var(--color-gold);
  font-size: 1.1rem;
  color: #333;
}
.testimonial-card p {
  color: #25303B;
  font-style: italic;
  font-size: 1.05rem;
}
.testimonial-author {
  font-family: var(--font-display);
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1em;
  padding-left: 12px;
  border-left: 2px solid #eee0c3;
}
.rating-summary {
  font-size: 1.13rem;
  color: var(--color-secondary);
  font-weight: 600;
  background: #fff2ec;
  border-radius: 8px;
  padding: 10px 18px;
  margin-top: 12px;
}

.case-studies-section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0;
}
.project-description-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 22px;
}
.project-item {
  background: var(--color-accent);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  flex: 1 1 305px;
  min-width: 260px;
  max-width: 370px;
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #ede7da;
  transition: box-shadow .22s,border-color .16s,transform .13s;
}
.project-item:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-hover);
}
.project-item h3 {
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: 2px;
}
.result-highlight {
  font-size: 0.97rem;
  color: var(--color-gold);
  margin-top: 12px;
}

/* ===============
   CTA SECTION
================ */
.cta-section {
  background: linear-gradient(100deg,#F3F5F7 60%,#fff2ec 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  text-align: center;
}
.cta-section h2 {
  color: var(--color-secondary);
  margin-bottom: 18px;
}

/* =====================
    PROCESS & FAQ
===================== */
.process-section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0;
}
.process-steps, .process-steps-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}
.process-steps li, .process-steps-summary li {
  background: #F8F6F2;
  border-radius: 7px;
  border-left: 5px solid var(--color-gold);
  padding: 14px 16px;
  font-size: 1rem;
  color: var(--color-primary);
}

.faq-section {
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border: 1.5px solid #ede7da;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(201,161,74,0.045);
  padding: 14px 18px 14px 18px;
  transition: box-shadow .17s,border-color .19s;
  font-size: 1rem;
}
.faq-item h3 {
  color: var(--color-secondary);
  font-size: 1.07rem;
  margin-bottom: 7px;
  cursor: pointer;
  font-weight: 600;
  transition: color .21s;
}
.faq-item h3:hover {
  color: var(--color-gold);
}

/* ========================
    SERVICES / LISTS
======================== */
.services-section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  background: #F8F6F2;
  border-radius: 8px;
  border-left: 5px solid var(--color-gold);
  padding: 16px 14px;
}
.service-list li img {
  width: 36px;
  height: 36px;
}

/* ================
  CONTACT PAGE
================ */
.contact-section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 14px;
  font-size: 1rem;
}
.contact-details img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 6px;
}
.location-section {
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0;
}
.map-placeholder {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background: #eee1c1;
  border-radius: 10px;
  box-shadow: 0 2px 14px 0 rgba(201,161,74,0.09);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  margin-bottom: 18px;
}
.arrival-instructions ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  margin-left: 22px;
}
.arrival-instructions h3 {
  margin-bottom: 8px;
  color: var(--color-secondary);
  font-size: 1.07rem;
}

/* ===================
  LEGAL SECTIONS
=================== */
.datenschutz-section, .gdpr-section, .cookie-section, .terms-section {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0;
}
.legal-text {
  font-size: 1rem;
  color: #34404f;
  line-height: 1.75;
}
.legal-text ul {
  margin-left: 22px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.legal-text h2, .legal-text h3 {
  color: var(--color-secondary);
  margin-top: 22px;
  font-size: 1.17rem;
}
.legal-text a {
  color: var(--color-secondary);
  text-decoration: underline;
  transition: color .16s;
}
.legal-text a:hover {
  color: var(--color-gold);
}

/* ======================
    THANK YOU PAGE
====================== */
.thank-you-section {
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0;
  text-align: center;
}
.confirmation-message {
  background: #fff;
  border-radius: 8px;
  margin: 0 auto;
  max-width: 490px;
  padding: 24px;
  font-size: 1.08rem;
  color: #25303B;
  box-shadow: var(--shadow-card);
  margin-bottom: 21px;
}
.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 22px 0;
  font-size: 1rem;
  align-items: flex-start;
}

/* ===========
   FOOTER
============ */
footer {
  padding: 44px 0 0 0;
  background: #FCFCFB;
  border-top: 2px solid #ede7da;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 0 16px 0;
}
.footer-top img {
  width: 145px;
  height: auto;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  font-size: 1rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 2px;
  position: relative;
  transition: color .18s;
}
.footer-nav a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.97rem;
  color: #333;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 5px;
}
.footer-social {
  display: flex;
  gap: 17px;
}
.footer-social a img {
  width: 26px;
  height: 26px;
  transition: filter .2s, transform .16s;
}
.footer-social a:hover img {
  filter: brightness(0.8) sepia(1) hue-rotate(-10deg) saturate(2);
  transform: scale(1.12);
}

/* =====================
   COOKIE CONSENT
===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid var(--color-gold);
  box-shadow: 0 -2px 22px 0 rgba(37,48,59,0.10);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 999;
  transition: transform .38s cubic-bezier(.77,0,.175,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner__text {
  font-size: 1rem;
  color: var(--color-primary);
  max-width: 720px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 20px;
  font-family: var(--font-display);
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background .17s,color .14s,box-shadow .16s;
}
.cookie-btn.primary {
  background: linear-gradient(90deg,#A45C06 0%,#C9A14A 100%);
  color: #fff;
  box-shadow: 0 2px 7px 0 rgba(164,92,6,0.08);
}
.cookie-btn.primary:hover {
  background: linear-gradient(90deg, #C9A14A 0%, #A45C06 100%);
  color: #fff;
}
.cookie-btn.reject {
  background: #F3F5F7;
  color: var(--color-primary);
  border: 2px solid #ede7da;
}
.cookie-btn.reject:hover {
  background: #ede7da;
  color: #A45C06;
  border-color: var(--color-secondary);
}
.cookie-btn.settings {
  background: none;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
.cookie-btn.settings:hover {
  background: var(--color-accent);
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* COOKIES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 440px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 32px 0 rgba(37,48,59,0.26);
  z-index: 1001;
  transform: translate(-50%,-50%) scale(0.96);
  opacity: 0;
  transition: opacity .3s, transform .3s;
  padding: 36px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
  pointer-events: auto;
}
.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.cookie-modal__close:hover {
  color: var(--color-gold);
}
.cookie-modal__title {
  font-size: 1.35rem;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 9px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #A45C06;
  width: 20px;
  height: 20px;
}
.cookie-category .required {
  color: var(--color-primary);
  font-size: 0.98rem;
  margin-left: 7px;
}
.cookie-modal .cookie-btns {
  margin-top: 16px;
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* =========================
    RESPONSIVE DESIGN
========================= */
@media (max-width: 1160px) {
  .feature-grid, .project-description-grid, .footer-top {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .project-description-grid, .footer-top {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-social {
    align-self: flex-start;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  body {
    font-size: 0.97rem;
  }
  .section, .process-section, .about-preview-section, .cta-section, .contact-section,
  .thank-you-section, .testimonials-section, .features-section, .faq-section,
  .location-section, .services-section, .datenschutz-section, .gdpr-section, .terms-section, .cookie-section {
    padding: 30px 8px;
    margin-bottom: 40px;
  }
  .footer-top {
    gap: 26px;
    padding-bottom: 7px;
  }
  .testimonial-card, .project-item, .feature-item, .confirmation-message {
    padding: 18px 10px;
  }
  .map-placeholder {
    min-height: 110px;
  }
  .feature-grid, .project-description-grid {
    gap: 17px;
  }
  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.37rem;
  }
  h2 {
    font-size: 1.14rem;
  }
  .hero-section {
    padding: 44px 0 24px 0;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    margin-bottom: 32px;
  }
  .feature-item, .project-item {
    min-width: 0;
    width: 100%;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 5px;
  }
}
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 8px;
  }
  .cookie-banner__text {
    font-size: 0.97rem;
  }
  .cookie-btn {
    width: 100%;
    padding: 11px 0;
    font-size: 1rem;
  }
}

/* =========================
  FLEXBOX LAYOUT HELPERS
========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============
  UTILITIES
============ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
ul,ol {
  margin-bottom: 15px;
}

::-webkit-scrollbar {
  width: 9px;
  background: #F3F5F7;
}
::-webkit-scrollbar-thumb {
  background: #ede7da;
  border-radius: 6px;
}

/* Hide cookie modal background overlay by default */
.cookie-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(37,48,59,0.27);
  z-index: 1000;
  transition: opacity .28s;
}
.cookie-modal-bg.open {
  display: block;
}

/*
 * Micro-interactions / Smooth Transitions
 */
.btn, .cta-btn, .cookie-btn {
  transition: background .2s,color .2s,box-shadow .2s,transform .15s;
}
.feature-item, .project-item, .testimonial-card, .faq-item, .card {
  transition: box-shadow .22s, border-color .17s, transform .14s;
}

/* ======== END ======= */