/* ===============================
   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, 
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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }
table { border-collapse: collapse; border-spacing: 0; }

/* ===============================
   BRAND COLOR PALETTE
   =============================== */
:root {
  --color-primary: #2B3A67;
  --color-secondary: #5BA197;
  --color-accent: #F2F2F7;
  --color-warm1: #F6C177;
  --color-warm2: #FFEDD2;
  --color-danger: #DA5347;
  --color-success: #5BA197;
  --color-text: #2B3A67;
  --color-bg: #FFFDFC;
  --color-card-bg: #FFFFFF;
  --color-shadow: rgba(43,58,103,0.11);
  --color-shadow-heavy: rgba(43,58,103,0.19);
  --color-muted: #A1A6B4;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #211B15;
    --color-card-bg: #252325;
    --color-text: #F2F2F7;
  }
}

/* ===============================
   TYPOGRAPHY
   =============================== */
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.17rem; }

@media (max-width: 500px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.24rem; }
  h3 { font-size: 1.09rem; }
}

p {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 16px;
}
strong { font-weight: 700; color: var(--color-primary); }
.text-section p:last-child { margin-bottom: 0; }

/* ===============================
   LAYOUT UTILITY
   =============================== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 992px) {
  .content-wrapper {
    gap: 32px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 32px;
  box-shadow: 0 2px 12px var(--color-shadow);
}

/* Card layout helpers */
.card-container, .feature-grid, .service-grid, .benefits-grid, .faq-list, .values-list, .blog-list .content-wrapper, .article-list, .included-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature-item, .service-item, .benefit-item, .faq-item, .article-preview, .testimonial-card, .expert-profile {
  margin-bottom: 20px;
  background: var(--color-card-bg);
  border-radius: 24px;
  box-shadow: 0 1.5px 8px var(--color-shadow);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.15s, transform 0.12s;
}
.card:hover, .feature-item:hover, .service-item:hover, .benefit-item:hover, .testimonial-card:hover, .expert-profile:hover {
  box-shadow: 0 6px 32px var(--color-shadow-heavy);
  transform: translateY(-2px) scale(1.017);
}
.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;
}
@media(max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: var(--color-warm2);
  color: #21253a;
  border-radius: 24px;
  box-shadow: 0 2px 12px var(--color-shadow);
  min-width: 220px;
  transition: box-shadow 0.17s;
}

.testimonial-card p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #21253a;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-items: flex-end;
  font-size: 0.95em;
  color: var(--color-primary);
  font-weight: 600;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-card-bg);
  border-radius: 20px;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 24px 20px 20px 20px;
  max-width: 320px;
  flex: 1 1 220px;
  transition: box-shadow 0.13s;
}
.feature-item img {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--color-warm2);
}
.feature-item h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.feature-item p {
  color: var(--color-muted);
}

/* ===============================
   HERO SECTIONS
   =============================== */
.hero {
  background: linear-gradient(120deg, var(--color-warm2) 35%, var(--color-accent) 110%);
  border-radius: 0 0 40px 40px;
  min-height: 340px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px var(--color-shadow);
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.13rem;
  color: var(--color-primary);
  max-width: 560px;
  margin-bottom: 18px;
}
@media(max-width: 600px) {
  .hero {
    min-height: 0;
    padding: 28px 0 10px 0;
    border-radius: 0 0 20px 20px;
  }
  .hero h1 { font-size: 1.3rem; }
}

/* ===============================
   HEADER, NAV, LOGO
   =============================== */
header {
  background: var(--color-card-bg);
  box-shadow: 0 4px 14px var(--color-shadow);
  position: relative;
  z-index: 1002;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 88px;
}
.logo img {
  height: 44px;
  border-radius: 8px;
  transition: box-shadow 0.18s;
}
.logo:hover img {
  box-shadow: 0 2px 12px var(--color-shadow);
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  border-radius: 14px;
  padding: 8px 19px;
  transition: background 0.13s, color 0.15s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--color-warm2);
  color: var(--color-secondary);
}
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 11px 34px;
  border: none;
  border-radius: 28px;
  background: var(--color-warm1);
  color: var(--color-primary);
  box-shadow: 0 2px 12px var(--color-shadow);
  cursor: pointer;
  transition: background 0.19s, color 0.17s, box-shadow 0.10s;
  margin-left: 18px;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 6px 32px var(--color-shadow-heavy);
}
.btn-secondary {
  background: var(--color-secondary);
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 32px var(--color-shadow-heavy);
}

/* ===============================
   BURGER MENU - MOBILE NAVIGATION
   =============================== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-warm1);
  border: none;
  font-size: 2rem;
  padding: 8px 18px;
  border-radius: 18px;
  margin-left: 14px;
  color: var(--color-primary);
  cursor: pointer;
  transition: background .17s;
  z-index: 1003;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-secondary);
  background: var(--color-accent);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FFFFFF;
  z-index: 1100;
  padding: 40px 26px 0 26px;
  width: 100%;
  height: 100vh;
  transform: translateX(-110%);
  transition: transform 0.42s cubic-bezier(.61,.17,.6,1.01);
  box-shadow: 0 0 40px var(--color-shadow-heavy);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: var(--color-primary);
  font-size: 2.1rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus{
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-accent);
  transition: color 0.12s, background 0.12s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: var(--color-warm2);
  border-radius: 14px;
}

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

/* ===============================
   FOOTER
   =============================== */
footer {
  background: var(--color-card-bg);
  border-radius: 40px 40px 0 0;
  padding: 40px 0 16px 0;
  margin-top: 56px;
  box-shadow: 0 -4px 22px var(--color-shadow);
  position: relative;
  z-index: 98;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo img {
  max-width: 62px;
  border-radius: 16px;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  color: var(--color-primary);
  transition: color 0.15s;
  will-change: color;
}
.footer-links a:hover {
  color: var(--color-secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.96rem;
  color: var(--color-muted);
  margin-top: 4px;
}

@media(max-width: 820px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* ===============================
   VALUES, TEAM, FAQ, BLOG CARDS
   =============================== */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.values-list li {
  background: var(--color-accent);
  border-radius: 22px;
  box-shadow: 0 2px 7px var(--color-shadow);
  padding: 17px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 1.01rem;
  margin-bottom: 12px;
}
.values-list img{width:32px; height:32px;}

.expert-profile {
  flex: 1 1 220px;
  min-width: 210px;
  background: var(--color-warm2);
}
.expert-profile h3 {
  margin-bottom: 6px;
  color: var(--color-secondary);
}
.expert-profile span {
  font-size: 0.93rem;
  color: var(--color-muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--color-card-bg);
  border-radius: 16px;
  padding: 22px 21px;
  box-shadow: 0 1.5px 5.5px var(--color-shadow);
  margin-bottom: 0;
}
.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--color-secondary);
}
.faq-item p {
  color: var(--color-primary);
  font-size: 1rem;
}

.article-preview, .feature-article {
  background: var(--color-card-bg);
  border-radius: 22px;
  padding: 22px 18px;
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-bottom: 20px;
  transition: box-shadow 0.16s;
}
.article-preview:hover, .feature-article:hover {
  box-shadow: 0 8px 24px var(--color-shadow-heavy);
}
.article-preview h3 {
  font-size: 1.13rem;
  margin-bottom: 10px;
}
.article-preview .meta {
  display: flex;
  gap: 10px;
  font-size: 0.91rem;
  color: var(--color-muted);
}

.search-bar {
  width: 100%;
  border: 1.2px solid var(--color-secondary);
  background: var(--color-warm2);
  border-radius: 18px;
  padding: 12px 17px;
  margin-bottom: 13px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border-color .16s, box-shadow .16s;
}
.search-bar:focus {
  border-color: var(--color-primary);
  box-shadow: 0 1px 18px var(--color-warm2);
}

.feature-article h2 {
  font-size: 1.34rem;
  margin-bottom: 10px;
}

/* ===============================
   PRICING TABLE
   =============================== */
.pricing-table {
  width: 100%;
  background: var(--color-card-bg);
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 2px 9px var(--color-shadow);
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  padding: 14px 16px;
  text-align: left;
}
.pricing-table th {
  background: var(--color-secondary);
  color: #fff;
  font-weight: 700;
}
.pricing-table tr {
  border-bottom: 1px solid var(--color-accent);
}
.pricing-table tr:last-child {
  border-bottom: none;
}
.pricing-table td {
  color: var(--color-text);
  background: var(--color-card-bg);
}

@media(max-width: 700px) {
  .pricing-table th, .pricing-table td {
    padding: 8px 8px;
    font-size: .97rem;
  }
}

.included-features {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}
.included-features li {
  background: var(--color-warm2);
  border-radius: 14px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  font-weight: 500;
  font-size: .97rem;
}
.included-features img {
  width: 28px; height: 28px;
}

/* ===============================
   CONTACT PAGE LAYOUT
   =============================== */
.contact-info ul, .support .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-info li, .support .content-wrapper > div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-accent);
  border-radius: 14px;
  padding: 11px 16px;
  font-size: 1rem;
  margin-bottom: 0;
}
.contact-info img, .support .content-wrapper img {
  width: 28px; height: 28px;
}

/* ===============================
   STEPS / BENEFITS
   =============================== */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--color-accent);
  border-radius: 14px;
  padding: 9px 15px;
  font-size: 1rem;
  font-weight: 500;
}
.step-list img {
  width: 27px; height: 27px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.benefit-item {
  flex: 1 1 180px;
  min-width: 150px;
  background: var(--color-warm2);
  border-radius: 16px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.benefit-item img {
  width: 27px; height: 27px;
}
.benefits-bullets {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 11px 0 0 0;
}
.benefits-bullets li {
  position: relative;
  padding-left: 19px;
}
.benefits-bullets li:before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  background: var(--color-secondary);
  border-radius: 50%;
}

/* ===============================
   THANK YOU PAGE
   =============================== */
.next-steps {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

/* ===============================
   CTA FINAL
   =============================== */
.cta-final, .cta-appointment, .cta-newsletter {
  background: var(--color-warm1);
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 42px 20px 36px 20px;
  box-shadow: 0 2px 18px var(--color-shadow);
}
.cta-final .content-wrapper, .cta-appointment .content-wrapper, .cta-newsletter .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-final h2, .cta-appointment h2, .cta-newsletter h2 {
  color: var(--color-primary);
  margin-bottom: 17px;
}

/* ===============================
   RESPONSIVE MEDIA QUERIES
   =============================== */
@media(max-width: 900px) {
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
  .feature-grid, .service-grid, .benefits-grid, .included-features, .values-list {
    gap: 17px;
  }
  .feature-item, .service-item {
    max-width: 100%;
    min-width: 70vw;
  }
}
@media(max-width: 700px) {
  .feature-grid, .service-grid, .benefits-grid, .included-features, .values-list {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-item, .service-item {
    width: 100%;
    min-width: unset;
  }
}
@media(max-width: 560px) {
  .hero, .section, .cta-final, .cta-appointment, .cta-newsletter {
    padding: 20px 6px;
    border-radius: 16px;
  }
  footer {
    border-radius: 18px 18px 0 0;
    padding: 23px 0 8px 0;
  }
}

/* ===============================
   ACCESSIBILITY & DETAILS
   =============================== */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2px solid var(--color-secondary);
}

/* ===============================
   COOKIE BANNER & COOKIE MODAL
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-card-bg);
  color: var(--color-primary);
  box-shadow: 0 -3px 18px var(--color-shadow-heavy);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 26px 17px 22px 17px;
  z-index: 1300;
  animation: cookieAppear 0.7s ease;
}
@keyframes cookieAppear {
  from {transform: translateY(80px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  font-size: 0.98rem;
  text-align: center;
}
.cookie-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 8px;
}
.cookie-btn, .cookie-btn-primary, .cookie-btn-secondary {
  padding: 9px 23px;
  border: none;
  border-radius: 16px;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background .16s, color .13s;
}
.cookie-btn-primary {
  background: var(--color-warm1);
  color: var(--color-primary);
}
.cookie-btn-primary:hover {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn-secondary {
  background: var(--color-warm2);
  color: var(--color-primary);
}
.cookie-btn-secondary:hover {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-btn {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-btn:hover {
  background: var(--color-warm2);
}

.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(0.97);
  background: var(--color-card-bg);
  color: var(--color-primary);
  border-radius: 28px;
  padding: 42px 28px 30px 28px;
  box-shadow: 0 8px 40px var(--color-shadow-heavy);
  z-index: 1400;
  min-width: 340px;
  min-height: 230px;
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: cookieModalIn 0.28s ease;
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translate(-50%,-44%) scale(0.93); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--color-secondary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: var(--color-warm2);
  border-radius: 12px;
  border: 1.7px solid var(--color-secondary);
  position: relative;
  outline: none;
  transition: background .12s;
}
.cookie-toggle:checked {
  background: var(--color-secondary);
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 5px var(--color-shadow);
  transition: left .16s;
}
.cookie-toggle:checked::before {
  left: 18px;
  background: var(--color-warm2);
}
.cookie-modal-close {
  position: absolute;
  top: 17px; right: 21px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: var(--color-primary);
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover {
  color: var(--color-secondary);
}

@media(max-width: 490px) {
  .cookie-modal {min-width: 86vw; padding: 20px 8px;}
}

/* ===============================
   MISC UTILITIES AND SPACINGS
   =============================== */
.short-notes, .text-section {
  background: var(--color-accent);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 19px;
  font-size: 1rem;
}
.short-notes p, .text-section p {
  margin-bottom: 0;
}

.blog-list .content-wrapper {
  gap: 22px;
}

/* Ensure all sections/cards have at least 20px margin */
section, .card, .feature-item, .service-item, .benefit-item, .testimonial-card, .expert-profile, .faq-item, .article-preview, .feature-article {
  margin-bottom: 20px;
}
section:last-child { margin-bottom: 0; }

/* ===============================
   TRANSITIONS & MICRO-INTERACTIONS
   =============================== */
.btn-primary, .btn-secondary, a, .main-nav a, .mobile-nav a {
  transition: background 0.13s, color 0.13s, box-shadow 0.13s, transform 0.13s;
}
.card, .feature-item, .service-item, .testimonial-card, .expert-profile, .article-preview {
  transition: box-shadow 0.15s, transform 0.13s;
}

/* ===============================
   PRINT - Remove banners, nav etc.
   =============================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important;}
}
