/* ==========================================================================
   BodyShaping Habits — Core Design System & Global Styles
   Nordic Scandinavian Minimalist Aesthetic (Health & Wellness FI)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bsh-pine: #0d382c;
  --bsh-pine-dark: #08241c;
  --bsh-sage: #276f57;
  --bsh-sage-light: #eaf3ef;
  --bsh-sage-hover: #1f5a46;
  --bsh-sand: #f8f6f1;
  --bsh-sand-dark: #ede9e0;
  --bsh-white: #ffffff;
  --bsh-dark: #121e1a;
  --bsh-text-primary: #172420;
  --bsh-text-secondary: #4d5f58;
  --bsh-text-muted: #748780;
  --bsh-border: #dbe4df;
  --bsh-border-light: #eef3f0;
  --bsh-gold: #c28b38;
  --bsh-gold-light: #fef7ed;
  --bsh-blue-soft: #eaf2f8;
  --bsh-success: #1b8755;
  --bsh-shadow-sm: 0 2px 8px rgba(13, 56, 44, 0.05);
  --bsh-shadow-md: 0 8px 24px rgba(13, 56, 44, 0.08);
  --bsh-shadow-lg: 0 16px 40px rgba(13, 56, 44, 0.12);
  --bsh-radius-sm: 8px;
  --bsh-radius-md: 14px;
  --bsh-radius-lg: 22px;
  --bsh-radius-pill: 9999px;
  --bsh-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --bsh-font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --bsh-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --bsh-container: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--bsh-font-body);
  color: var(--bsh-text-primary);
  background-color: var(--bsh-sand);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--bsh-transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--bsh-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Announcement Bar */
.top-bar {
  background: var(--bsh-pine-dark);
  color: #c9ded6;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-message {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.top-bar-badge {
  background: var(--bsh-sage);
  color: var(--bsh-white);
  padding: 2px 8px;
  border-radius: var(--bsh-radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 6px;
  border-radius: var(--bsh-radius-pill);
}

.lang-btn {
  padding: 3px 8px;
  border-radius: var(--bsh-radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: #a7c4ba;
  transition: var(--bsh-transition);
}

.lang-btn.active, .lang-btn:hover {
  background: var(--bsh-white);
  color: var(--bsh-pine);
}

/* Main Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bsh-border);
  transition: var(--bsh-transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--bsh-font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bsh-pine);
  letter-spacing: -0.5px;
}

.brand-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--bsh-pine);
  color: var(--bsh-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.brand-logo-text span {
  color: var(--bsh-sage);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bsh-text-primary);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--bsh-sage);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bsh-sage);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bsh-sage-light);
  color: var(--bsh-pine);
  padding: 9px 16px;
  border-radius: var(--bsh-radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--bsh-transition);
  min-height: 44px;
}

.cart-toggle-btn:hover {
  background: #d9e9e2;
}

.cart-count-pill {
  background: var(--bsh-pine);
  color: var(--bsh-white);
  font-size: 0.75rem;
  padding: 1px 7px;
  border-radius: 12px;
  min-width: 20px;
  text-align: center;
}

.btn-header-cta {
  background: var(--bsh-pine);
  color: var(--bsh-white);
  padding: 10px 20px;
  border-radius: var(--bsh-radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--bsh-transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-header-cta:hover {
  background: var(--bsh-sage);
  box-shadow: 0 4px 12px rgba(39, 111, 87, 0.25);
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--bsh-pine);
}

/* Mobile Off-canvas Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bsh-white);
  z-index: 1000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bsh-border);
}

.mobile-nav-links {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bsh-text-primary);
  display: block;
  padding: 8px 0;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14, 36, 28, 0.45);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero-section {
  padding: 64px 0 72px;
  background: linear-gradient(180deg, var(--bsh-sand) 0%, #edf3ef 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bsh-sage-light);
  color: var(--bsh-sage);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: var(--bsh-radius-pill);
  margin-bottom: 18px;
  border: 1px solid rgba(39, 111, 87, 0.15);
}

.hero-title {
  font-family: var(--bsh-font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--bsh-pine);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--bsh-sage);
  position: relative;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--bsh-text-secondary);
  margin-bottom: 30px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.btn-primary {
  background: var(--bsh-pine);
  color: var(--bsh-white);
  padding: 14px 28px;
  border-radius: var(--bsh-radius-pill);
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--bsh-transition);
  box-shadow: 0 6px 20px rgba(13, 56, 44, 0.2);
  min-height: 48px;
}

.btn-primary:hover {
  background: var(--bsh-sage);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(13, 56, 44, 0.25);
}

.btn-secondary {
  background: var(--bsh-white);
  color: var(--bsh-pine);
  padding: 14px 26px;
  border-radius: var(--bsh-radius-pill);
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--bsh-border);
  transition: var(--bsh-transition);
  min-height: 48px;
}

.btn-secondary:hover {
  background: var(--bsh-sand);
  border-color: var(--bsh-sage);
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--bsh-border);
}

.trust-metric-item {
  display: flex;
  flex-direction: column;
}

.trust-metric-num {
  font-family: var(--bsh-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bsh-pine);
  line-height: 1.2;
}

.trust-metric-lbl {
  font-size: 0.82rem;
  color: var(--bsh-text-muted);
}

/* Hero Media Card */
.hero-media-wrapper {
  position: relative;
}

.coach-hero-card {
  background: var(--bsh-white);
  padding: 14px;
  border-radius: var(--bsh-radius-lg);
  box-shadow: var(--bsh-shadow-lg);
  border: 1px solid var(--bsh-border);
  position: relative;
}

.coach-photo-holder {
  position: relative;
  border-radius: var(--bsh-radius-md);
  overflow: hidden;
  aspect-ratio: 4/4.5;
}

.coach-photo-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.coach-card-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(13, 56, 44, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--bsh-white);
  padding: 12px 16px;
  border-radius: var(--bsh-radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coach-badge-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.coach-badge-info p {
  font-size: 0.8rem;
  color: #b7dbcf;
}

.coach-flag {
  font-size: 1.4rem;
}

.hero-float-tag {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--bsh-gold-light);
  border: 1px solid rgba(194, 139, 56, 0.3);
  padding: 10px 16px;
  border-radius: var(--bsh-radius-pill);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--bsh-shadow-md);
  font-weight: 700;
  font-size: 0.85rem;
  color: #8c6019;
}

/* Trust Accreditation Bar */
.accreditation-strip {
  background: var(--bsh-white);
  padding: 24px 0;
  border-bottom: 1px solid var(--bsh-border);
}

.accreditation-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.accreditation-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bsh-text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
}

.accreditation-icon {
  width: 36px;
  height: 36px;
  background: var(--bsh-sage-light);
  color: var(--bsh-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Section Common Styles */
.section {
  padding: 84px 0;
}

.section-bg-white {
  background: var(--bsh-white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.section-badge {
  display: inline-block;
  background: var(--bsh-sage-light);
  color: var(--bsh-sage);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 4px 14px;
  border-radius: var(--bsh-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--bsh-font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--bsh-pine);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--bsh-text-secondary);
  line-height: 1.65;
}

/* Scientific Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  background: var(--bsh-sand);
  border: 1px solid var(--bsh-border);
  border-radius: var(--bsh-radius-lg);
  padding: 36px 30px;
  transition: var(--bsh-transition);
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bsh-shadow-md);
  border-color: var(--bsh-sage);
}

.pillar-num {
  font-family: var(--bsh-font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bsh-sage);
  margin-bottom: 18px;
  background: var(--bsh-white);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--bsh-shadow-sm);
}

.pillar-card h3 {
  font-family: var(--bsh-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--bsh-pine);
  margin-bottom: 14px;
}

.pillar-card p {
  font-size: 0.95rem;
  color: var(--bsh-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.pillar-science-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bsh-text-muted);
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  border-radius: var(--bsh-radius-sm);
  display: inline-block;
  border: 1px solid var(--bsh-border-light);
}

/* Interactive Teasers Banner */
.tools-teaser-banner {
  background: linear-gradient(135deg, var(--bsh-pine) 0%, var(--bsh-pine-dark) 100%);
  color: var(--bsh-white);
  border-radius: var(--bsh-radius-lg);
  padding: 56px 48px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.tools-teaser-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.tools-teaser-content h3 {
  font-family: var(--bsh-font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

.tools-teaser-content p {
  font-size: 1.05rem;
  color: #c4ded5;
  margin-bottom: 28px;
}

.tools-teaser-boxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tool-teaser-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--bsh-radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--bsh-transition);
}

.tool-teaser-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.tool-teaser-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bsh-white);
}

.tool-teaser-info p {
  font-size: 0.82rem;
  color: #a8cfc2;
  margin: 0;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bsh-white);
  border: 1px solid var(--bsh-border);
  border-radius: var(--bsh-radius-lg);
  padding: 30px;
  box-shadow: var(--bsh-shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-stars {
  color: var(--bsh-gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-size: 0.98rem;
  color: var(--bsh-text-primary);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--bsh-border-light);
}

.author-avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bsh-sage-light);
  color: var(--bsh-sage);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.author-meta h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bsh-pine);
}

.author-meta span {
  font-size: 0.82rem;
  color: var(--bsh-text-muted);
}

.verified-buyer-tag {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bsh-success);
  background: #e8f5e9;
  padding: 3px 8px;
  border-radius: var(--bsh-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Google Maps Studio Section */
.studio-map-section {
  padding: 72px 0;
  background: var(--bsh-sand-dark);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.studio-info-card {
  background: var(--bsh-white);
  padding: 38px;
  border-radius: var(--bsh-radius-lg);
  border: 1px solid var(--bsh-border);
  box-shadow: var(--bsh-shadow-md);
}

.studio-info-card h3 {
  font-family: var(--bsh-font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--bsh-pine);
  margin-bottom: 12px;
}

.studio-info-card p {
  color: var(--bsh-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.studio-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.studio-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
}

.studio-icon {
  width: 28px;
  height: 28px;
  color: var(--bsh-sage);
  flex-shrink: 0;
  margin-top: 2px;
}

.map-container-frame {
  border-radius: var(--bsh-radius-lg);
  overflow: hidden;
  box-shadow: var(--bsh-shadow-md);
  border: 1px solid var(--bsh-border);
  height: 420px;
  position: relative;
}

.map-container-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Articles Hub & Cards */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-card {
  background: var(--bsh-white);
  border: 1px solid var(--bsh-border);
  border-radius: var(--bsh-radius-lg);
  overflow: hidden;
  box-shadow: var(--bsh-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--bsh-transition);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bsh-shadow-md);
}

.article-thumb {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-thumb img {
  transform: scale(1.04);
}

.article-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--bsh-pine);
  color: var(--bsh-white);
  padding: 4px 10px;
  border-radius: var(--bsh-radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--bsh-text-muted);
  margin-bottom: 12px;
}

.article-title {
  font-family: var(--bsh-font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--bsh-pine);
  line-height: 1.35;
  margin-bottom: 12px;
}

.article-excerpt {
  font-size: 0.9rem;
  color: var(--bsh-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.article-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bsh-sage);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-link:hover {
  color: var(--bsh-pine);
  gap: 10px;
}

/* Site Footer & Mandatory Medical Disclaimer */
.site-footer {
  background: var(--bsh-pine-dark);
  color: #d1e2db;
  padding: 72px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand h4 {
  font-family: var(--bsh-font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--bsh-white);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #9cb8ad;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-col h5 {
  font-family: var(--bsh-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bsh-white);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #9cb8ad;
  font-size: 0.88rem;
  transition: var(--bsh-transition);
}

.footer-links a:hover {
  color: var(--bsh-white);
  transform: translateX(3px);
}

.footer-payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.payment-pill {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: var(--bsh-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Mandatory Medical Disclaimer */
.footer-disclaimer-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--bsh-radius-md);
  padding: 22px 26px;
  margin-bottom: 36px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #93aba1;
}

.footer-disclaimer-box strong {
  color: #e4efe9;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: #7b968c;
}

.cookie-settings-trigger {
  background: none;
  border: none;
  color: #9cb8ad;
  font-size: 0.82rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
}

.cookie-settings-trigger:hover {
  color: var(--bsh-white);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .pillars-grid, .testimonials-grid, .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .studio-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop, .btn-header-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .pillars-grid, .testimonials-grid, .articles-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .tools-teaser-grid {
    grid-template-columns: 1fr;
  }
  .hero-trust-bar {
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .top-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}
