/* === CSS RESET & NORMALIZE === */
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, main, 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F5F6F2;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232323;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}
:focus {
  outline: 2px solid #D1B07B; /* gold accent on focus */
  outline-offset: 2px;
}

/* === BRAND COLORS & LUXURY PREMIUM ACCENTS === */
:root {
  --primary: #197278;
  --primary-dark: #155c61;
  --secondary: #A0D8B3;
  --accent-bg: #F5F6F2;
  --text-main: #232323;
  --text-dark: #181818;
  --text-light: #fff;
  --gold: #D1B07B;
  --gold-dark: #B08950;
  --lux-shadow: 0 2px 12px 0 rgba(33, 40, 50, 0.09);
  --card-border: #e5ded5;
}

/* === TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.625rem;
  margin-bottom: 14px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, .subheadline, li, label, select, input, span {
  font-family: 'Roboto', Arial, sans-serif;
}
p, .subheadline {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.subheadline {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 600;
  color: var(--gold-dark);
}

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

.section,
.hero,
.features,
.services,
.about,
.contact,
.cta,
.legal,
.thankyou {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent-bg);
  border-radius: 26px;
  box-shadow: var(--lux-shadow);
}

@media (max-width: 768px) {
  .section,
  .hero,
  .features,
  .services,
  .about,
  .contact,
  .cta,
  .legal,
  .thankyou {
    padding: 32px 6vw;
    margin-bottom: 36px;
    border-radius: 8px;
  }
  .container {
    padding: 0 8px;
  }
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(20,24,39,0.05);
  border-bottom: 1.5px solid var(--card-border);
  position: sticky;
  top: 0; left: 0;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
a > img {
  height: 38px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--accent-bg);
  color: var(--gold);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 11px 26px;
  border-radius: 30px;
  box-shadow: none;
  border: none;
  letter-spacing: 0.01em;
  cursor: pointer;
  margin-left: 16px;
  box-shadow: 0 4px 18px 0 rgba(33,40,50,0.05);
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
  position: relative;
}
.btn-primary::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 3px;
  border-radius: 0 0 30px 30px;
  background: var(--gold);
  opacity: 0.16;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--primary-dark);
  color: var(--gold);
  box-shadow: 0 2px 18px 2px rgba(209,176,123,0.13);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--gold);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 30px;
  padding: 9px 22px;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
  border: none;
  margin-top: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(80, 55, 5, 0.05);
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--gold-dark);
  color: #fff;
  box-shadow: 0 3px 20px 0 rgba(209,176,123,0.18);
}
.mobile-menu-toggle {
  display: none;
}

/* === MOBILE MENU === */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(24, 30, 36, 0.95);
  z-index: 1010;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.7,0,.3,1); /* smooth slide in */
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--gold);
  font-size: 2rem;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 32px 32px 0 0;
  cursor: pointer;
  z-index: 1120;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fffbe9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100vw;
  align-items: center;
  padding-top: 24px;
  margin-top: 42px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent-bg);
  transition: color 0.19s, background 0.18s;
  border-radius: 16px;
  padding: 9px 28px;
  width: min(80vw,320px);
  text-align: center;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--gold);
  color: var(--text-dark);
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
    font-size: 0.99rem;
  }
  .btn-primary {
    font-size: 0.97rem;
    padding: 9px 16px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary);
    margin-left: auto;
    cursor: pointer;
    z-index: 66;
    transition: color 0.2s;
    padding: 5px;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    color: var(--gold-dark);
  }
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(120deg, #FFF 80%, rgba(209,176,123,0.08) 100%);
  box-shadow: 0 2px 16px 0 rgba(33,40,50,0.07);
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.hero h1 {
  font-size: 2.65rem;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-shadow: 0 3px 24px rgba(209,176,123,0.07);
}
.hero .subheadline {
  font-size: 1.20rem;
  color: var(--primary-dark);
  margin-bottom: 22px;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.45rem;
  }
  .hero {
    margin-bottom: 34px;
  }
}

/* === SECTION FLEX PATTERNS === */
.features .content-wrapper,
.services .content-wrapper,
.about .content-wrapper,
.cta .content-wrapper,
.legal .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-grid, .recipe-category-grid, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 6px;
  justify-content: flex-start;
}
.feature-item, .category-item, .service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--lux-shadow);
  border: 1.5px solid var(--card-border);
  padding: 26px 20px 20px;
  flex: 1 1 260px;
  min-width: 200px;
  max-width: 310px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border 0.18s;
}
.feature-item img, .category-item img {
  width: 46px; height: 46px;
  margin-bottom: 7px;
}
.feature-item h3, .category-item h3 {
  font-size: 1.07rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}
.feature-item:hover, .category-item:hover, .service-card:hover {
  border: 1.5px solid var(--gold);
  box-shadow: 0 6px 32px 0 rgba(209,176,123,0.13);
}
.service-card {
  background: linear-gradient(120deg, #fff 70%, #f8f1e3 100%);
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(209,176,123,0.07);
  border: 1.5px solid var(--card-border);
  flex: 1 1 270px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 320px;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.17s, border 0.17s;
}
.service-card h3 {
  font-size: 1.20rem;
  color: var(--primary);
}
.service-card .price {
  color: var(--gold-dark);
  font-size: 1.07rem;
  font-weight: 600;
  margin-bottom: 9px;
}
.service-card .btn-secondary {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .feature-grid, .recipe-category-grid, .service-cards {
    gap: 16px;
  }
  .feature-item, .category-item, .service-card {
    min-width: 160px;
    max-width: 97vw;
    padding: 18px 14px 16px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .recipe-category-grid, .service-cards {
    flex-direction: column;
    gap: 19px;
    align-items: stretch;
  }
}

/* === TESTIMONIALS === */
.testimonials .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  min-width: 220px;
  max-width: 400px;
  box-shadow: 0 2px 10px 0 rgba(33,40,50,0.07);
  border: 1.5px solid var(--gold);
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card p {
  font-size: 1.03rem;
  color: #1c2223;
  font-style: italic;
  margin-bottom: 7px;
  line-height: 1.7;
}
.testimonial-card strong {
  font-size: 0.97rem;
  font-style: normal;
  color: var(--primary-dark);
}
.testimonial-card::before {
  content: "\201C";
  font-size: 2.7rem;
  color: var(--gold-dark);
  opacity: 0.27;
  position: absolute;
  top: 14px; left: 14px;
  pointer-events: none;
}

@media (max-width: 800px) {
  .testimonials .testimonial-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 98vw;
  }
}

/* === FORMS & FILTERS === */
.recipe-filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}
.recipe-filters input[type="search"] {
  border-radius: 18px;
  border: 1px solid var(--card-border);
  padding: 9px 16px;
  font-size: 1rem;
  background: #fff;
  transition: border 0.17s;
}
.recipe-filters input[type="search"]:focus {
  border: 1.5px solid var(--gold);
}
.recipe-filters select {
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: #fff;
  font-size: 1rem;
  color: var(--primary-dark);
  padding: 8px 14px;
  transition: border 0.17s;
}
.recipe-filters select:focus {
  border: 1.5px solid var(--gold);
}

@media (max-width: 650px) {
  .recipe-filters {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
}

/* === FAQ ACCORDION === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid var(--card-border);
  box-shadow: 0 2px 7px 0 rgba(33,40,50,0.05);
  margin-bottom: 8px;
}
.faq-item h3 {
  font-size: 1.13rem;
  color: var(--primary-dark);
  font-weight: 600;
  cursor: pointer;
  padding: 17px 16px 10px 22px;
  user-select: none;
}
.faq-answer {
  display: none;
  padding: 0 22px 14px 30px;
  color: var(--text-main);
  font-size: 0.99rem;
}
.faq-item.open .faq-answer {
  display: block;
  animation: fadeInAccordion 0.22s linear;
}
@keyframes fadeInAccordion {
  0% { opacity: 0; transform: translateY(-5px); }
  100% { opacity: 1; transform: none; }
}

/* === ABOUT & BIO SECTIONS === */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 14px 0 20px;
}
.team-member {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid var(--card-border);
  box-shadow: 0 2px 10px 0 rgba(209,176,123,0.07);
  padding: 20px 22px;
  flex: 1 1 230px;
  min-width: 160px;
}
.team-member h3 {
  color: var(--gold-dark);
  font-size: 1.10rem;
  margin-bottom: 8px;
}

@media (max-width: 800px) {
  .team-bios {
    flex-direction: column;
    gap: 12px;
  }
}

/* === PRINCIPLES/FEATURES/STEP LISTS === */
.principles-list, .feature-list, .steps-list, .service-steps, .coaching-topics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.principles-list li, .feature-list li, .steps-list li, .service-steps li, .coaching-topics li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #fff;
  border-radius: 8px;
  border: 1.3px solid var(--card-border);
  padding: 14px 18px;
  font-size: 0.99rem;
  color: var(--primary-dark);
  margin-bottom: 0;
  transition: border 0.15s;
}
.principles-list li img, .steps-list li img {
  width: 32px;
  height: 32px;
  margin-top: 3px;
}
.principles-list li strong, .feature-list li strong, .steps-list li strong, .service-steps li strong {
  color: var(--primary);
  margin-right: 3px;
  font-weight: 600;
}
.principles-list li:hover, .steps-list li:hover {
  border: 1.3px solid var(--gold);
}

/* === THANK YOU SECTION === */
.thankyou-message {
  color: var(--primary-dark);
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 1.1rem;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px 0 rgba(33,40,50,0.06);
}
.next-steps-info {
  background: #fffceb;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--gold-dark);
}

/* === LEGAL/PRIVACY SECTION === */
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(33,40,50,0.04);
  padding: 42px 25px;
  margin-bottom: 55px;
}
.legal h1, .legal h2, .legal h3 {
  color: var(--primary-dark);
}

/* === FOOTER === */
footer {
  background: #111612;
  color: #fff;
  font-size: 1rem;
  padding: 0;
  position: relative;
  border-top: 2px solid var(--gold);
}
footer .container {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 36px 20px 26px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.09rem;
  font-weight: 700;
}
.footer-brand img {
  width: 40px; height: 40px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 6px;
  transition: color 0.16s, background 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.footer-contact {
  color: #fff;
  line-height: 1.6;
  font-size: 0.99rem;
}
.footer-contact a {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact a:hover {
  color: var(--gold);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 24px 14px;
  }
  .footer-nav {
    gap: 13px;
    margin: 9px 0 4px;
  }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fffbe9;
  color: #232323;
  padding: 24px 22px 18px 22px;
  box-shadow: 0 -2px 18px 0 rgba(209,176,123,0.16);
  border-top: 2px solid var(--gold);
  z-index: 20010;
  transition: transform 0.28s;
}
.cookie-banner.hide {
  transform: translateY(140%);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.28s, opacity 0.28s;
}
.cookie-banner .cookie-text {
  flex: 1 1 260px;
  font-size: 1rem;
  color: #15191c;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--gold);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-right: 2px;
  transition: background 0.18s, color 0.19s;
  cursor: pointer;
}
.cookie-btn.settings {
  background: var(--primary);
  color: #fff;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--gold-dark);
  color: #fff;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--primary-dark);
  color: var(--gold);
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 7vw 23px 7vw;
    gap: 14px;
  }
  .cookie-banner .cookie-actions {
    gap: 9px;
  }
}

/* === COOKIE MODAL === */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24,30,36,0.46);
  z-index: 20101;
  transition: opacity 0.22s;
}
.cookie-modal-backdrop.open {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 40px 4px rgba(209,176,123,0.17);
  max-width: 400px;
  width: 93vw;
  padding: 34px 24px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
  z-index: 20102;
  animation: popCookie 0.32s cubic-bezier(0.6,0,0.45,1);
}
@keyframes popCookie {
  0% { transform: scale(0.93) translateY(30px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  margin: 9px 0;
}
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
}
.cookie-toggle input[type=checkbox] {
  width: 0; height: 0;
  opacity: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--card-border);
  border-radius: 20px;
  transition: background 0.22s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: var(--primary);
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px 0 rgba(33,40,50,0.08);
  transition: transform 0.18s;
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(20px);
  background: var(--gold);
}
.cookie-modal .cookie-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 15px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--primary);
  cursor: pointer;
  padding: 5px;
  transition: color 0.22s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--gold-dark);
}
.cookie-category .desc {
  font-size: 0.97rem;
  color: #444;
  margin-left: 5px;
}

/* === RESPONSIVE FLEX LAYOUTS === */
.card-container,
.card-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 180px;
  max-width: 320px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 8px 0 rgba(33,40,50,0.06);
  border: 1.5px solid var(--card-border);
  padding: 17px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 850px) {
  .text-image-section {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .card-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* === MICRO-INTERACTIONS, TRANSITIONS === */
.button,
.btn-primary,
.btn-secondary,
.cookie-btn,
footer a,
.main-nav a,
.mobile-nav a,
input[type=search],
select {
  transition: background 0.16s, color 0.14s, box-shadow 0.17s, border 0.16s;
}
.card, .feature-item, .category-item, .service-card, .testimonial-card {
  transition: box-shadow 0.15s, border 0.17s;
}

/* === ANIMATIONS === */
@media (prefers-reduced-motion: no-preference) {
  .hero, .section, .services, .features, .about, .cta, .legal, .card, .testimonial-card, .btn-primary, .btn-secondary {
    animation: fadeInUp 0.4s cubic-bezier(.27,.87,.67,1.06) 0.03s both;
  }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: none; }
}

/* === UTILITY === */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-8 { margin-top: 8px !important; }
.mt-16 { margin-top: 16px !important; }

/* === ACCESSIBILITY === */
::-webkit-input-placeholder { color: #bdbdbd; opacity: 1; }
::-moz-placeholder { color: #bdbdbd; opacity:1; }
:-ms-input-placeholder { color: #bdbdbd; }
::placeholder { color: #bdbdbd; opacity: 1; }


/* === END === */
