/* Kilinc Fitness — DEMO preview styles */
:root {
  --bg: #0a0e14;
  --bg-elevated: #111827;
  --bg-card: #151c2c;
  --bg-card-hover: #1a2438;
  --navy: #0d1526;
  --text: #f5f7fa;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent: #2E994D;
  --accent-hover: #3cb85e;
  --accent-soft: rgba(46, 153, 77, 0.15);
  --accent-border: rgba(46, 153, 77, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --danger-soft: rgba(239, 68, 68, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --header-h: 72px;
  --demo-h: 40px;
  --max: 1120px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--demo-h) + var(--header-h));
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }
strong { font-weight: 600; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Demo banner —— */
.demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--demo-h);
  background: linear-gradient(90deg, #1a3a28, #0f2918);
  border-bottom: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #a8e6b8;
  text-transform: uppercase;
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: var(--demo-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 14, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}
.logo-link img { width: 40px; height: 40px; object-fit: contain; }
.logo-link:hover { color: var(--text); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-desktop a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--text); background: rgba(255,255,255,0.04); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: calc(var(--demo-h) + var(--header-h));
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 20, 0.98);
  padding: 2rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 500;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
}
.nav-mobile .btn { margin-top: 1rem; text-align: center; }

@media (min-width: 860px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46, 153, 77, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
  background: var(--accent-soft);
}
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 1.85rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* —— Sections —— */
.section {
  padding: 4.5rem 0;
}
.section-alt {
  background: var(--navy);
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

h1 {
  font-size: clamp(1.85rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
h3 {
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.3;
}

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* —— Hero —— */
.hero {
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--accent-border);
  margin-bottom: 1.25rem;
}
.hero h1 { margin-bottom: 1rem; }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 34ch;
}
.hero-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.hero-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46,153,77,0.18), transparent 70%);
  top: -80px;
  right: -60px;
  pointer-events: none;
  z-index: -1;
}

/* —— Trust strip —— */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem 0;
}
@media (min-width: 700px) {
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
}
.trust-item .icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}
.trust-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}

/* —— Cards —— */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.card:hover {
  border-color: var(--accent-border);
  background: var(--bg-card-hover);
}
.card-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.pillar-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* —— Problem / solution —— */
.two-col {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.problem-box, .solution-box {
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
}
.problem-box {
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.2);
}
.solution-box {
  background: var(--accent-soft);
  border-color: var(--accent-border);
}
.problem-box h3, .solution-box h3 { margin-bottom: 0.85rem; }
.problem-box ul, .solution-box ul { margin-top: 1rem; }
.problem-box li, .solution-box li {
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
  color: var(--text-muted);
}
.problem-box li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-size: 0.85rem;
}
.solution-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* —— Image grid —— */
.img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 800px) {
  .img-grid { grid-template-columns: repeat(4, 1fr); }
}
.img-grid figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}
.img-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.img-grid figure:hover img { transform: scale(1.04); }
.img-grid figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 0.8rem;
  font-weight: 600;
}

/* —— Pricing —— */
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.price-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 40px rgba(46, 153, 77, 0.2);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card .plan-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.price-card .plan-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex-grow: 0;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.price-period {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.price-old {
  color: var(--text-dim);
  text-decoration: line-through;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.price-note {
  font-size: 0.8rem;
  color: var(--accent-hover);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.price-features {
  margin: 1rem 0 1.5rem;
  flex-grow: 1;
}
.price-features li {
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* —— Testimonials —— */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-demo-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}
.testimonial blockquote {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  flex-grow: 1;
  line-height: 1.6;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-dim); }

/* —— About teaser —— */
.about-teaser {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .about-teaser { grid-template-columns: 280px 1fr; gap: 3rem; }
}
.about-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 320px;
  margin-inline: auto;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

/* —— Final CTA —— */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--accent-soft), rgba(46,153,77,0.05));
  border: 1px solid var(--accent-border);
  border-radius: 20px;
  padding: 3rem 2rem;
}
.final-cta h2 { margin-bottom: 0.75rem; }
.final-cta p { color: var(--text-muted); max-width: 480px; margin: 0 auto 1.75rem; }

/* —— Page hero (inner pages) —— */
.page-hero {
  padding: 3rem 0 2rem;
  text-align: center;
}
.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.page-hero h1 { margin-bottom: 0.85rem; }
.page-hero p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* —— Method content —— */
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose h2 {
  margin: 2.5rem 0 1rem;
  color: var(--text);
}
.prose h3 {
  margin: 1.75rem 0 0.75rem;
  color: var(--accent-hover);
}
.prose p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.prose p strong { color: var(--text); }
.prose ul {
  margin: 1rem 0 1.5rem;
}
.prose li {
  color: var(--text-muted);
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
}
.prose li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.highlight-box {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.75rem 0;
}
.highlight-box p { margin: 0; color: var(--text); }
.refs {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2.5rem;
}
.refs h3 { margin-bottom: 1rem; font-size: 1rem; }
.refs ol {
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.refs li { margin-bottom: 0.6rem; }
.refs a { word-break: break-all; }
.method-visual {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.method-visual img { width: 100%; }
.method-visual figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  background: var(--bg-card);
  text-align: center;
}

/* —— Steps —— */
.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  counter-increment: step;
}
.step::before {
  content: "Étape " counter(step);
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

/* —— Info blocks —— */
.info-list {
  display: grid;
  gap: 1rem;
}
.info-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.info-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.info-item p { color: var(--text-muted); font-size: 0.95rem; }

/* —— Reservation —— */
.calendly-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin-top: 2rem;
}
.whatsapp-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.whatsapp-note .wa-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.whatsapp-note p { color: var(--text-muted); font-size: 0.95rem; }
.whatsapp-note a { font-weight: 600; }

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
  background: var(--navy);
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.footer-brand img { width: 36px; height: 36px; }
.footer-brand:hover { color: var(--text); }
.site-footer p { color: var(--text-muted); font-size: 0.9rem; }
.site-footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--accent-hover); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-disclaimer {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #fbbf24;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* —— Benefits checklist (offre) —— */
.benefits {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0;
}
@media (min-width: 600px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
}
.benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.benefit-check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.benefit span { color: var(--text-muted); font-size: 0.95rem; }

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
