/* ==========================================================================
   Meyer Nutrition - Robin Meyer
   Palette inspirée du logo : bleu marine profond & turquoise
   ========================================================================== */

:root {
  --navy: #0b2d5b;
  --navy-dark: #071f42;
  --blue: #1e5aa8;
  --teal: #7fd4d9;
  --teal-light: #cdeef0;
  --cream: #f7f5ef;
  --white: #ffffff;
  --text: #1a2233;
  --muted: #5b6b80;
  --border: #e6e9ef;
  --shadow: 0 10px 30px rgba(11, 45, 91, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 45, 91, 0.15);
  --radius: 14px;
  --radius-lg: 22px;
  --max-width: 1200px;
  --header-height: 82px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--blue); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--text); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(11, 45, 91, 0.08);
}

.header-inner {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo img {
  height: 58px;
  width: auto;
}

.site-logo .brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  display: none;
}

@media (min-width: 1100px) {
  .site-logo .brand-name { display: block; }
}

/* ---------- NAV ---------- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav > ul {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}

.main-nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  position: relative;
  padding: 0.25rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.main-nav li.has-submenu { position: relative; }

.main-nav .submenu {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 260px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  list-style: none;
  margin-top: 0.75rem;
}

.main-nav li.has-submenu:hover .submenu,
.main-nav li.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .submenu li { width: 100%; }

.main-nav .submenu a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.92rem;
}

.main-nav .submenu a::after { display: none; }
.main-nav .submenu a:hover { background: var(--teal-light); color: var(--navy); }

.btn-contact {
  background: var(--navy);
  color: #fff !important;
  padding: 0.65rem 1.35rem !important;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-contact::after { display: none !important; }

.btn-contact:hover {
  background: var(--teal);
  color: var(--navy) !important;
  transform: translateY(-1px);
}

/* mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: min(320px, 85vw);
    height: calc(100vh - var(--header-height));
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.08);
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav > ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.5rem;
  }
  .main-nav > ul > li { width: 100%; }
  .main-nav .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0.25rem 0 0.25rem 1rem;
    margin-top: 0.25rem;
    min-width: 0;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 5rem) 0 6rem;
  background: linear-gradient(135deg, var(--cream) 0%, #eaf6f7 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-light) 0%, transparent 70%);
  opacity: 0.7;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: rgba(127, 212, 217, 0.25);
  color: var(--navy);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--blue);
  font-style: italic;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(11, 45, 91, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(11, 45, 91, 0.35) 100%);
}

.hero-visual .badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  z-index: 2;
  box-shadow: var(--shadow);
}

.hero-visual .badge strong {
  color: var(--navy);
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  display: block;
}

.hero-visual .badge span {
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding: calc(var(--header-height) + 3rem) 0 4rem; }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--cream);
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.85); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  display: inline-block;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* ---------- SERVICES CARDS ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--navy);
}

.service-card h3 { margin-bottom: 0.75rem; }

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- ABOUT / SPLIT ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split.reverse .split-media { order: 2; }

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media.landscape { aspect-ratio: 5 / 4; }

.split-body .section-eyebrow { text-align: left; }

.split-body h2 { text-align: left; }

.split-body ul {
  list-style: none;
  margin-top: 1.5rem;
}

.split-body ul li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: var(--text);
}

.split-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 14px;
  height: 2px;
  background: var(--teal);
}

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split.reverse .split-media { order: 0; }
}

/* ---------- PAGE HEADER (sous-pages) ---------- */
.page-hero {
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(127, 212, 217, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 620px;
  position: relative;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  position: relative;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--teal); }

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(var(--teal), var(--navy));
}

.timeline-item {
  position: relative;
  padding: 0 0 3rem 1.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.4rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 4px rgba(11, 45, 91, 0.1);
}

.timeline-year {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.timeline-item h3 { margin-bottom: 0.5rem; }
.timeline-item p { color: var(--muted); margin-bottom: 0; }

/* ---------- CARD GRID (expériences) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.exp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.exp-card-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  overflow: hidden;
  position: relative;
}

.exp-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.exp-card:hover .exp-card-media img { transform: scale(1.05); }

.exp-card-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.exp-card h3 { margin-bottom: 0.5rem; }

.exp-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.exp-card-link {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.exp-card-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.exp-card:hover .exp-card-link::after { transform: translateX(4px); }

/* ---------- LONG CONTENT ---------- */
.prose {
  max-width: 780px;
  margin: 0 auto;
}

.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 2rem; color: var(--blue); }
.prose ul { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.prose ul li { margin-bottom: 0.4rem; }
.prose blockquote {
  border-left: 4px solid var(--teal);
  padding: 0.75rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--navy);
  background: var(--teal-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.highlight-box {
  background: linear-gradient(135deg, var(--cream), var(--teal-light));
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}

.highlight-box h3 {
  color: var(--navy);
  margin-top: 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.stat {
  text-align: center;
  background: #fff;
  padding: 1.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ---------- GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.gallery img {
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery img:hover { transform: scale(1.02); }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(127, 212, 217, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
}

.cta-band .btn-primary {
  background: var(--teal);
  color: var(--navy);
  position: relative;
}

.cta-band .btn-primary:hover {
  background: #fff;
  color: var(--navy);
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.contact-info h3 { margin-top: 0; }

.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(11, 45, 91, 0.08);
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.contact-item-value {
  color: var(--navy);
  font-weight: 500;
}

.contact-item a { color: var(--navy); }
.contact-item a:hover { color: var(--blue); }

.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  font-size: 0.85rem;
  font-weight: 700;
}

.socials a:hover {
  background: var(--teal);
  color: var(--navy);
  transform: translateY(-2px);
}

.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(127, 212, 217, 0.15);
}

.form-group textarea { min-height: 140px; resize: vertical; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-footer ul { list-style: none; }

.site-footer li { margin-bottom: 0.6rem; }

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}

.site-footer a:hover { color: var(--teal); }

.footer-brand img { height: 70px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.92; }

.footer-brand p { color: rgba(255, 255, 255, 0.7); max-width: 300px; font-size: 0.92rem; }

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 100%);
  color: #fff;
  border: none;
  transform: scale(1.02);
}

.price-card.featured:hover { transform: scale(1.02) translateY(-6px); }

.price-card.featured h3,
.price-card.featured .price-amount { color: #fff; }

.price-card.featured .price-tag {
  background: var(--teal);
  color: var(--navy);
}

.price-card.featured ul li::before { background: var(--teal); }

.price-card.featured p,
.price-card.featured ul li { color: rgba(255,255,255,0.9); }

.price-card.featured .btn-primary {
  background: var(--teal);
  color: var(--navy);
}

.price-card.featured .btn-primary:hover {
  background: #fff;
  color: var(--navy);
}

.price-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.price-card .price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.8rem 0 0.3rem;
  line-height: 1;
}

.price-card .price-amount small {
  font-size: 0.95rem;
  color: inherit;
  opacity: 0.7;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
}

.price-card .price-desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.price-card ul {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.price-card ul li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  font-size: 0.93rem;
}

.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--teal);
  font-weight: 700;
  width: auto;
  height: auto;
  background: none;
}

.price-card .btn { width: 100%; text-align: center; }

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- PARTNER / NUTRI&CO ---------- */
.partner-band {
  background: linear-gradient(135deg, #fff7ea 0%, #ffe8d1 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.partner-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 150, 60, 0.12) 0%, transparent 65%);
  border-radius: 50%;
}

.partner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.partner-body .partner-eyebrow {
  display: inline-block;
  background: #e76f2d;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.partner-body h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.partner-body p { color: var(--text); }

.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding: 0.9rem 1.25rem;
  background: #fff;
  border: 2px dashed #e76f2d;
  border-radius: 12px;
  font-family: 'Playfair Display', serif;
}

.promo-code .promo-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-code .promo-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e76f2d;
  letter-spacing: 1px;
}

.btn-partner {
  background: #e76f2d;
  color: #fff !important;
}

.btn-partner:hover {
  background: #c95a1f;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(231, 111, 45, 0.35);
}

.partner-visual {
  text-align: center;
}

.partner-visual-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.partner-visual-inner .partner-big {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.partner-visual-inner .partner-big span {
  color: #e76f2d;
}

.partner-visual-inner .partner-small {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .partner-inner { grid-template-columns: 1fr; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- UTIL ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
