/* === CSS RESET & 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;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F8F7;
  color: #223043;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: #60A19C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #223043;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
  background: none;
}

/* === BRAND COLORS AS CSS VARIABLES === */
:root {
  --color-primary: #223043;
  --color-secondary: #60A19C;
  --color-accent: #F6F5F3;
  --color-vibrant1: #FF5C58; /* artistic extra */
  --color-vibrant2: #FFB25E; /* artistic extra */
  --color-bg-light: #F8F8F7;
  --shadow-main: 0 3px 28px rgba(34,48,67,0.10);
  --shadow-card: 0 2px 14px rgba(34,48,67, 0.08);
  --radius-main: 18px;
  --radius-btn: 26px;
}

/* === TYPOGRAPHY: ARTISTIC & MODERN === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.16;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  color: var(--color-vibrant1);
  margin-bottom: 20px;
  text-shadow: 1px 2px 0px var(--color-vibrant2);
}
h2 {
  font-size: 2rem;
  color: var(--color-secondary);
}
h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  font-weight: 700;
}
h4 {
  font-size: 1.1rem;
  color: var(--color-secondary);
}
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}
strong {
  font-weight: bold;
  color: var(--color-vibrant1);
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  background: var(--color-accent);
  border-left: 5px solid var(--color-secondary);
  padding: 18px 28px;
  margin: 0 0 12px 0;
  border-radius: 12px;
  box-shadow: var(--shadow-main);
}
.customer-name {
  font-size: 0.98rem;
  color: var(--color-secondary);
  font-weight: bold;
  margin-top: 2px;
}

/* === MAIN STRUCTURE === */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 36px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
}
section:not(.hero) {
  /* Artistic background patterns */
  position: relative;
  z-index: 1;
}
section:not(.hero)::after {
  content: '';
  display: block;
  position: absolute;
  right: -40px;
  top: 26px;
  width: 80px;
  height: 55px;
  background: var(--color-vibrant2);
  opacity: 0.28;
  border-radius: 100% 30% 80% 70%/60% 60% 80% 70%;
  z-index: 0;
}
/* Hide decorative backgrounds on mobile */
@media (max-width: 768px) {
  section:not(.hero)::after {
    display: none;
  }
}

/* === HEADER === */
header {
  width: 100%;
  background: var(--color-accent);
  box-shadow: 0 2px 14px rgba(34,48,67,0.06);
  padding: 0;
  position: relative;
  z-index: 101;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 38px;
  width: auto;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 18px;
  transition: background 0.17s, color 0.14s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-vibrant2);
  color: #fff;
}
.btn-primary {
  background: linear-gradient(92deg, var(--color-secondary) 74%, var(--color-vibrant1) 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: bold;
  border-radius: var(--radius-btn);
  padding: 14px 38px;
  box-shadow: 0 5px 28px rgba(96,161,156,0.10);
  border: none;
  transition: background 0.2s, box-shadow 0.23s, transform 0.14s;
  display: inline-block;
  margin-left: 14px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(100deg, var(--color-vibrant1) 70%, var(--color-secondary) 100%);
  color: #fff;
  box-shadow: 0 8px 36px 0 rgba(255,92,88,0.14);
  transform: translateY(-2px) scale(1.03) rotate(-2deg);
}


/* === MOBILE MENU HAMBURGER === */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--color-secondary);
  background: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin-left: 8px;
  border: 2px solid var(--color-secondary);
  transition: background 0.2s, color 0.2s;
  z-index: 201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-vibrant1);
}

@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* === MOBILE MENU OVERLAY === */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 362px;
  height: 100%;
  background: var(--color-accent);
  box-shadow: -5px 0 29px rgba(34,48,67,0.12);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.7, .15, .44, 1.11);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  color: var(--color-secondary);
  border: none;
  padding: 16px 18px 2px 18px;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-vibrant1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 40px 24px 12px 40px;
  gap: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: bold;
  color: var(--color-primary);
  background: transparent;
  border-radius: 18px;
  padding: 12px 10px;
  transition: background 0.18s, color 0.17s;
  min-width: 160px;
  margin-right: auto;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-vibrant2);
  color: #fff;
}

@media (min-width: 900px) {
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 899px) {
  header nav, header .btn-primary {
    display: none;
  }
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(100deg, var(--color-secondary) 47%, var(--color-accent) 100%);
  margin-bottom: 60px;
  padding: 60px 0 60px 0;
  box-shadow: 0 8px 36px rgba(34,48,67,0.07);
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding: 0;
  max-width: 590px;
  gap: 22px;
}
.hero h1 {
  color: #fff;
  text-shadow: 2px 2px 0 var(--color-vibrant2), 0 4px 16px rgba(34,48,67,0.14);
}
.hero p {
  color: #F6F5F3;
  font-size: 1.16rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
}
.hero .btn-primary {
  background: #fff;
  color: var(--color-secondary);
  box-shadow: 0 6px 30px rgba(255,178,94,0.12);
}
.hero .btn-primary:hover {
  background: var(--color-vibrant1);
  color: #fff;
  box-shadow: 0 9px 49px rgba(255,92,88, 0.18);
}

/* === FEATURE GRID & LISTS === */
.feature-grid, .product-list, .benefit-list, .team-list, .service-list, .article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.feature-grid > li, .feature-grid > div, .product-list > li, .benefit-list > li, .team-list > li, .service-list > li, .article-list > li {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  min-width: 230px;
  position: relative;
  transition: box-shadow 0.24s, transform 0.15s;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.feature-grid > li:hover, .feature-grid > div:hover, .product-list > li:hover, .benefit-list > li:hover, .service-list > li:hover, .article-list > li:hover {
  box-shadow: 0 12px 42px rgba(255,92,88,0.19), 0 2px 20px rgba(34,48,67,0.10);
  transform: translateY(-3px) scale(1.04);
}
.feature-grid img, .benefit-list img, .service-list img, .product-list img {
  max-width: 44px;
  margin-bottom: 8px;
  filter: drop-shadow(0px 2px 4px rgba(96,161,156,0.18));
}
.product-price, .service-price {
  color: var(--color-vibrant1);
  font-weight: 900;
  font-size: 1.23rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 6px;
}

.team-list {
  gap: 18px;
}
.team-list > li span {
  color: var(--color-secondary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* === CALL TO ACTION SECTIONS === */
.cta, .cta-newsletter, .promote {
  background: linear-gradient(90deg, var(--color-vibrant2) 16%, var(--color-secondary) 84%);
  color: #fff;
  box-shadow: 0 12px 38px 0 rgba(255,178,94,0.13);
  border-radius: var(--radius-main);
  margin-bottom: 60px;
  padding: 42px 20px 40px 20px;
  position: relative;
  z-index: 1;
}
.cta h2, .cta-newsletter h2, .promote h2 {
  color: #fff;
}
.cta .btn-primary, .cta-newsletter .btn-primary, .promote .btn-primary {
  background: #fff;
  color: var(--color-vibrant1);
  transition: background 0.17s, color 0.17s;
}
.cta .btn-primary:hover, .cta-newsletter .btn-primary:hover, .promote .btn-primary:hover {
  background: var(--color-vibrant1);
  color: #fff;
}

.cta-newsletter input[type=email] {
  border-radius: var(--radius-btn);
  border: 1px solid var(--color-secondary);
  padding: 12px 16px;
  font-size: 1rem;
  margin: 10px 0 18px 0;
  width: 100%;
  background: #fff;
  color: var(--color-primary);
  transition: border-color 0.17s;
  box-shadow: var(--shadow-card);
}
.cta-newsletter input[type=email]:focus {
  border-color: var(--color-vibrant1);
}

/* === TESTIMONIAL CARDS === */
.testimonials, .customer-stories {
  background: var(--color-bg-light);
  border-radius: var(--radius-main);
  margin-bottom: 48px;
  padding: 40px 0;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: 0 3px 17px 0 rgba(34,48,67,0.10),0 1px 2px 0 var(--color-vibrant2);
  padding: 20px 24px;
  min-width: 260px;
  max-width: 430px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.15s;
  z-index: 1;
}
.testimonial-card:hover {
  box-shadow: 0 9px 32px rgba(96,161,156,0.16),0 1px 3px 0 #fff;
  transform: scale(1.045) rotate(-1deg);
}
.testimonial-card blockquote {
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 6px;
  box-shadow: none;
  font-style: italic;
}
.testimonial-card .customer-name {
  font-size: 1.05rem;
  color: var(--color-secondary);
  font-weight: 700;
}

/* === BLOG CATEGORIES, SEARCH BAR === */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.category {
  background: var(--color-vibrant2);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  border-radius: 14px;
  padding: 8px 16px;
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(255,178,94,0.08);
}
.search-bar {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
}
.search-bar label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  color: var(--color-secondary);
  font-weight: 500;
}
.search-bar input[type=text] {
  font-size: 1rem;
  padding: 11px 12px;
  border-radius: 18px;
  border: 1px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  outline: 0;
  box-shadow: 0 2px 10px #F6F5F3;
  transition: border-color 0.19s;
}
.search-bar input[type=text]:focus {
  border-color: var(--color-secondary);
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 20px;
}
.faq-list > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 26px 24px;
  margin-bottom: 8px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.faq-list > div:hover {
  box-shadow: 0 7px 26px rgba(255,92,88,0.13);
  transform: translateY(-2px) scale(1.02);
}

/* === FOOTER === */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 0;
  border-top-left-radius: var(--radius-main);
  border-top-right-radius: var(--radius-main);
  margin-top: 60px;
  box-shadow: 0 -2px 17px rgba(34,48,67,0.15);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 18px 26px 18px;
  gap: 24px;
  min-height: 100px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-menu a {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 5px 6px;
  border-radius: 10px;
  transition: background 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
footer .contact-info {
  color: #fff;
  font-size: 1rem;
  max-width: 380px;
  font-family: 'Roboto', Arial, sans-serif;
}
footer .contact-info a {
  color: var(--color-vibrant2);
}
.footer-brand img {
  height: 36px;
}
@media (max-width: 960px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* === SPACING/ALIGNMENT PATTERNS (FLEXBOX) === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  background: #fff;
  padding: 24px;
}
.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;
}

/* === RESPONSIVE BREAKPOINTS & ALIGNMENT === */
@media (max-width: 768px) {
  .content-wrapper, .card-container, .content-grid, .feature-grid, .product-list, .benefit-list, .team-list, .service-list, .testimonial-list {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: flex-start;
  }
  .section, .cta, .promote {
    padding: 30px 8px;
    margin-bottom: 38px;
  }
  .hero {
    padding: 44px 0 40px 0;
    margin-bottom: 36px;
  }
  .footer-brand img {
    margin-top: 12px;
  }
}

/* Avoid overlapping of elements */
.section, .card-container > * , .content-grid > * , .feature-grid > * , .testimonial-list > * , .product-list > * , .benefit-list > * {
  margin-bottom: 20px;
}
/* Ensure proper stacking */
.section, .cta, .promote, .testimonial-card, .feature-grid > *, .product-list > * {
  position: relative;
  z-index: 10;
}

/* === MICRO-INTERACTIONS/TRANSITIONS === */
.btn-primary, header nav a, .footer-menu a, .category, .mobile-nav a, .feature-grid > *, .testimonial-card, .faq-list > div {
  transition: box-shadow 0.2s, background 0.2s, color 0.14s, transform 0.16s;
}
input:focus, textarea:focus {
  box-shadow: 0 0 0 2px var(--color-secondary), 0 2px 10px #F6F5F3;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 28px 22px 28px;
  font-size: 1rem;
  box-shadow: 0 -9px 46px rgba(34,48,67,0.13);
  z-index: 3000;
  animation: cookieFadeIn 0.6s cubic-bezier(.65,.11,.67,.97);
}
@keyframes cookieFadeIn {
  from { opacity:0; transform:translateY(16px); }
  to { opacity:1; transform:translateY(0); }
}
.cookie-banner p {
  color: #fff;
  margin-right: 16px;
  flex: 1 1 60%;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 22px;
  padding: 9px 24px;
  border: none;
  margin: 0 2px;
  box-shadow: 0 2px 9px rgba(96,161,156,0.11);
  transition: background 0.14s, color 0.14s, box-shadow 0.15s;
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner .accept:hover { background: var(--color-vibrant1); }
.cookie-banner .reject {
  background: transparent;
  color: var(--color-vibrant2);
  border: 1.5px solid var(--color-vibrant2);
}
.cookie-banner .reject:hover { color: #fff; background: var(--color-vibrant1); border: 1.5px solid var(--color-vibrant1); }
.cookie-banner .settings {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-banner .settings:hover { background: var(--color-secondary); color: #fff; }
@media (max-width: 920px) {
  .cookie-banner {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
    padding: 24px 10px 18px 10px;
  }
  .cookie-banner .cookie-actions {
    align-items: stretch;
    gap: 9px;
    flex-wrap: wrap;
  }
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(34,48,67,0.25);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.22s linear;
}
@keyframes fadeInOverlay {
  from { opacity:0; }
  to   { opacity:1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: 0 12px 44px 0 rgba(34,48,67,0.19);
  max-width: 420px;
  width: 88vw;
  padding: 36px 28px 28px 28px;
  z-index: 3200;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: scaleModal .25s cubic-bezier(.55,1.25,.54,1);
}
@keyframes scaleModal {
  from { transform: scale(0.7); opacity:0; }
  to   { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.34rem;
  color: var(--color-secondary);
  margin-bottom: 10px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.cookie-modal .category-name {
  font-weight: bold;
  color: var(--color-primary);
  font-size: 1.02rem;
}
.cookie-modal .toggle {
  width: 48px;
  height: 28px;
  border-radius: 16px;
  background: var(--color-accent);
  position: relative;
  border: 1.5px solid var(--color-secondary);
  cursor: pointer;
  transition: background 0.17s, border-color 0.14s;
}
.cookie-modal .toggle[aria-checked='true'] {
  background: var(--color-vibrant2);
  border-color: var(--color-vibrant1);
}
.cookie-modal .toggle::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.17s;
}
.cookie-modal .toggle[aria-checked='true']::after {
  left: 24px;
}
.cookie-modal .category-description {
  color: #666;
  font-size: 0.98rem;
  margin-bottom: 6px;
  margin-left: 8px;
}
.cookie-modal .cookie-actions {
  margin-top: 20px;
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .cookie-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 21px;
  padding: 8px 20px;
  border: none;
  background: var(--color-secondary);
  color: #fff;
  box-shadow: var(--shadow-card);
  transition: background 0.16s,color 0.13s;
}
.cookie-modal .cookie-actions button:hover {
  background: var(--color-vibrant1);
  color: #fff;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.3rem;
  color: var(--color-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover {
  color: var(--color-vibrant1);
}

/* === ACCESSIBILITY & FOCUS STATES === */
:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* === THANK YOU PAGES === */
.thank-you {
  background: linear-gradient(90deg, var(--color-accent) 16%, var(--color-vibrant2) 84%);
  border-radius: var(--radius-main);
  color: var(--color-primary);
  min-height: 360px;
  margin-bottom: 40px;
}
.thank-you h1 {
  color: var(--color-vibrant1);
  margin-bottom: 20px;
}
.thank-you a.btn-primary {
  background: var(--color-secondary);
  color: #fff;
  margin-top: 26px;
}

/* === UTILITY CLASSES === */
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* === Hide non-mobile nav on mobile, show burger === */
@media (max-width: 899px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 900px) {
  .mobile-menu {
    display: none !important;
  }
}

/* === FORM ELEMENTS (for newsletter, search) === */
input[type="email"], input[type="text"] {
  border-radius: 18px;
  border: 1px solid var(--color-secondary);
  padding: 12px 14px;
  font-size: 1rem;
  color: var(--color-primary);
  transition: border-color 0.13s;
  background: #fff;
  margin-bottom: 8px;
}
input[type="email"]:focus, input[type="text"]:focus {
  border-color: var(--color-vibrant1);
}

/* === SPECIAL: CHECKED FLEXBOX LAYOUTS (NO GRID/COLUMN) === */
/* All container layouts use ONLY flex, never grid/columns */
/* All spacing uses margin/gap, no overlap */

