/* ==========================================
   KAIROS BUNDLES — C1 Épuré Chaud
   Libre Baskerville + Outfit
   ========================================== */
* { margin:0; padding:0; box-sizing:border-box; }

:root {
  --bg: #FBF7F2;
  --bg-warm: #F3ECE3;
  --bg-cream: #F7F0E8;
  --card: #FFFFFF;
  --dark: #2D2016;
  --brown: #5C4430;
  --brown-mid: #7A6350;
  --text: #6B5A48;
  --text-light: #9A8978;
  --muted: #A09080;
  --gold: #C4922E;
  --gold-soft: #D4A24E;
  --border: #D9CABC;
  --border-light: #EDE5DA;
  --peach: #F2C9A0;
  --serif: 'Libre Baskerville', serif;
  --sans: 'Outfit', sans-serif;
  --r: 12px;
  --r-sm: 6px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ==========================================
   NAV
   ========================================== */
.nav {
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(251,247,242,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
}
.nav-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-brand img {
  height: 56px;
}
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--brown); }
.nav-cta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  padding: 11px 26px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(196,146,46,0.25);
}
.nav-cta:hover { background: var(--brown); box-shadow: 0 4px 16px rgba(92,68,48,0.2); }

/* Hamburger + Mobile Nav */
.hamburger { display:none; background:none; border:none; cursor:pointer; padding:8px; flex-direction:column; gap:5px; }
.hamburger span { display:block; width:22px; height:2px; background:var(--brown); border-radius:2px; }
.mobile-nav {
  position:fixed; top:0; right:0; width:100%; max-width:340px; height:100vh; height:100dvh;
  background:var(--bg); z-index:550; padding:90px 32px 40px;
  transform:translateX(100%); transition:transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow:-16px 0 48px rgba(0,0,0,0.06); overflow-y:auto;
}
.mobile-nav.open { transform:translateX(0); }
.mobile-nav-close { position:absolute; top:20px; right:20px; background:none; border:none; font-size:28px; color:var(--brown); cursor:pointer; width:44px; height:44px; display:flex; align-items:center; justify-content:center; }
.mobile-nav ul { list-style:none; }
.mobile-nav li { border-bottom:1px solid var(--border-light); }
.mobile-nav a { display:block; padding:18px 0; font-family:var(--sans); font-size:15px; font-weight:500; color:var(--brown); text-decoration:none; }
.mobile-nav a:hover { color:var(--gold); }
.mobile-nav-cta { border-bottom:none!important; margin-top:16px; }
.mobile-nav-cta a { background:var(--gold); color:#fff!important; text-align:center; border-radius:var(--r-sm); padding:14px 0; font-size:13px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; }
.nav-desktop { display:inline-block; }

/* ==========================================
   HERO — asymétrique
   ========================================== */
.hero {
  display: flex;
  align-items: center;
  padding: 72px 60px;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-left { flex: 1; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-tag::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero p {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-right {
  flex: 0 0 360px;
  height: 380px;
  background: linear-gradient(160deg, #EDE0D0 0%, #DFD0BE 40%, var(--gold) 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-right::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 40px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
.hero-img {
  width: 70%;
  max-width: 240px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: brightness(0) invert(1) opacity(0.2);
}

/* Centered hero variant */
.hero-centered {
  display: block;
  text-align: center;
  padding: 80px 48px 48px;
  max-width: 800px;
}
.hero-centered .hero-left { flex: none; }
.hero-centered .hero-tag { justify-content: center; }
.hero-centered .hero-tag::before { display: none; }
.hero-centered h1 { text-align: center; }
.hero-centered p { max-width: 540px; margin: 0 auto 32px; text-align: center; }
.hero-centered .hero-actions { justify-content: center; }
.btn-main {
  display: inline-block;
  background: var(--brown);
  color: #fff;
  padding: 15px 36px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-main:hover { background: var(--dark); transform: translateY(-1px); }
.btn-sec {
  display: inline-block;
  background: transparent;
  color: var(--brown);
  padding: 15px 36px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-sec:hover { border-color: var(--brown); color: var(--dark); }

/* ==========================================
   VIDEO
   ========================================== */
.video-wrap { max-width: 800px; margin: 0 auto 72px; padding: 0 48px; }
.video-inner {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #3D2B1E 0%, #5C4430 100%);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(45,32,22,0.1);
  position: relative;
  overflow: hidden;
}
.video-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(196,146,46,0.08) 0%, transparent 60%);
}
.play-btn {
  width: 68px; height: 68px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.play-btn:hover { background: var(--gold); border-color: var(--gold); }
.play-btn svg { fill: #fff; margin-left: 4px; }

/* ==========================================
   NEWSLETTER — barre dorée latérale
   ========================================== */
.newsletter {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px 80px;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 40px 44px;
  background: var(--bg-warm);
  border-radius: var(--r);
  border-left: 4px solid var(--gold);
}
.newsletter-inner h3 {
  flex: 0 0 220px;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--dark);
  line-height: 1.4;
}
.newsletter-inner h3 em {
  color: var(--gold);
  font-style: italic;
}
.news-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-fields {
  display: flex;
  gap: 8px;
}
.news-fields input {
  flex: 1;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  font-size: 13.5px;
  font-family: var(--sans);
  background: #fff;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
}
.news-fields input::placeholder { color: var(--text-light); }
.news-fields input:focus { border-color: var(--gold); }
.news-form button {
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: none;
  background: var(--brown);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  align-self: flex-start;
}
.news-form button:hover { background: var(--dark); }

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--dark);
}

/* ==========================================
   VALUES
   ========================================== */
.values { max-width: 1040px; margin: 0 auto; padding: 0 48px 88px; }
.values-header { text-align: center; margin-bottom: 52px; }
.values-header .section-label { justify-content: center; }
.values-header .section-label::before { display: none; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.vcard {
  background: var(--card);
  border-radius: var(--r);
  padding: 40px 28px;
  box-shadow: 0 2px 12px rgba(45,32,22,0.03);
  border: 1px solid rgba(45,32,22,0.04);
  text-align: center;
  transition: all 0.4s;
}
.vcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45,32,22,0.06);
  border-color: var(--border);
}
.vcard-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.vcard h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.vcard p { font-size: 14.5px; line-height: 1.75; }

/* ==========================================
   STATS
   ========================================== */
.stats { background: var(--bg-cream); padding: 80px 48px; }
.stats-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  text-align: center;
}
.stat-card {
  background: var(--card);
  border-radius: var(--r);
  padding: 44px 28px;
  box-shadow: 0 2px 12px rgba(45,32,22,0.03);
}
.stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(196,146,46,0.08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
}
.stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
}

/* ==========================================
   HOW IT WORKS — 3 cartes numérotées
   ========================================== */
.how { max-width: 960px; margin: 0 auto; padding: 88px 48px; }
.how-header { text-align: center; margin-bottom: 52px; }
.how-header .section-label { justify-content: center; }
.how-header .section-label::before { display: none; }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.how-card {
  background: var(--card);
  border-radius: var(--r);
  padding: 36px 28px;
  border: 1px solid rgba(45,32,22,0.04);
  box-shadow: 0 2px 12px rgba(45,32,22,0.03);
  transition: all 0.4s;
}
.how-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(45,32,22,0.06); }
.how-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  font-style: italic;
  color: rgba(196,146,46,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.how-card h3 { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.how-card p { font-size: 14.5px; line-height: 1.75; }

/* ==========================================
   TEAM
   ========================================== */
.team { background: var(--bg-cream); padding: 64px 48px; }
.team-grid { max-width: 840px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.team-card {
  background: var(--card);
  border-radius: var(--r);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(45,32,22,0.03);
  transition: all 0.4s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(45,32,22,0.06); }
.team-card img {
  width: 130px; height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 4px solid var(--border-light);
}
.team-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-card .role {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}
.team-card p { font-size: 14px; line-height: 1.7; text-align: left; }

/* ==========================================
   STORY
   ========================================== */
.story { padding: 72px 48px; }
.story-inner { max-width: 680px; margin: 0 auto; }
.story-inner h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 36px;
}
.story-video {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #3D2B1E, #5C4430);
  border-radius: var(--r);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(45,32,22,0.08);
}
.story-video .play-btn { width: 60px; height: 60px; }
.story p { font-size: 15.5px; line-height: 1.85; margin-bottom: 14px; }
.story-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
  color: var(--dark);
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  margin: 28px 0;
  background: rgba(196,146,46,0.05);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
  text-align: center;
  padding: 80px 48px 48px;
  max-width: 700px;
  margin: 0 auto;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.page-header p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  max-width: 480px;
  margin: 0 auto;
}

/* ==========================================
   PARTENAIRE CARDS
   ========================================== */
.part-section { max-width: 1020px; margin: 0 auto; padding: 32px 48px 72px; }
.part-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.part-card {
  background: var(--card);
  border-radius: var(--r);
  padding: 36px 28px;
  box-shadow: 0 2px 12px rgba(45,32,22,0.03);
  border: 1px solid rgba(45,32,22,0.04);
  transition: all 0.4s;
}
.part-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(45,32,22,0.06); border-color: var(--border); }
.part-card-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  font-style: italic;
  color: rgba(196,146,46,0.2);
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.3s;
}
.part-card:hover .part-card-num { color: rgba(196,146,46,0.4); }
.part-card h3 { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.part-card p { font-size: 14.5px; line-height: 1.7; }

/* ==========================================
   BUNDLE EMPTY
   ========================================== */
.bundle-empty {
  text-align: center;
  padding: 100px 48px 80px;
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bundle-empty h1 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.bundle-empty p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.bundle-empty .newsletter { padding: 0; max-width: 560px; }
.bundle-empty .newsletter-inner { border-left: none; flex-direction: column; text-align: center; gap: 24px; padding: 40px 36px; }
.bundle-empty .newsletter-inner h3 { flex: auto; }
.bundle-empty .news-form { flex-direction: column; align-items: center; gap: 10px; }
.bundle-empty .news-form .news-fields { display: flex; gap: 8px; width: 100%; }
.bundle-empty .news-form .news-fields input { flex: 1; }
.bundle-empty .news-form button { width: auto; }

/* ==========================================
   CONTACT
   ========================================== */
.contact { max-width: 560px; margin: 0 auto; padding: 0 48px 80px; }
.contact-wrap { background: var(--bg-cream); padding: 48px 0; }
.contact-wrap .contact { padding: 0 48px; }
.contact-card {
  background: var(--card);
  border-radius: var(--r);
  padding: 44px 40px;
  box-shadow: 0 4px 20px rgba(45,32,22,0.04);
  border: 1px solid rgba(45,32,22,0.04);
}
.contact-card h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  text-align: center;
}
.contact-card > p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 28px;
  text-align: center;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--brown-mid);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--dark);
  background: var(--bg);
  outline: none;
  transition: border-color 0.3s;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { min-height: 90px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-light); }
.submit-btn {
  width: 100%;
  background: var(--brown);
  color: #fff;
  padding: 15px;
  border-radius: var(--r-sm);
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s;
}
.submit-btn:hover { background: var(--dark); }
.form-feedback { margin-top: 12px; font-size: 14px; }

/* ==========================================
   LEGAL
   ========================================== */
.legal { padding: 100px 48px 80px; max-width: 780px; margin: 0 auto; }
.legal h1 { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--dark); margin-bottom: 36px; }
.legal h2 { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--dark); margin-top: 36px; margin-bottom: 12px; }
.legal h3 { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--brown-mid); margin-top: 24px; margin-bottom: 10px; }
.legal p { font-size: 14.5px; line-height: 1.75; margin-bottom: 12px; }
.legal ul { margin: 10px 0 16px 24px; font-size: 14.5px; line-height: 1.75; }
.legal li { margin-bottom: 6px; }
.legal strong { font-weight: 700; color: var(--brown-mid); }
.legal a { color: var(--gold); text-decoration: none; }
.legal a:hover { color: var(--brown); }
.legal-date { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--border-light); font-size: 14px; color: var(--text-light); }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: linear-gradient(180deg, #3D2B1E 0%, #2D2016 100%);
  color: rgba(255,255,255,0.5);
  padding: 56px 48px 28px;
  border-radius: 24px 24px 0 0;
  margin-top: 20px;
}
.footer-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p { font-size: 13.5px; line-height: 1.7; margin-top: 12px; max-width: 260px; color: rgba(255,255,255,0.35); }
.footer-logo { height: 32px; filter: brightness(10) opacity(0.5); }
.footer-col h4 { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.35); text-decoration: none; font-family: var(--sans); font-size: 13.5px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}
.footer-legal { display: flex; gap: 16px; }
.footer-legal a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 12px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold-soft); }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media(max-width:768px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .hero { flex-direction: column; padding: 48px 24px; gap: 36px; text-align: center; }
  .hero-centered { padding: 56px 24px 40px; }
  .hero h1 { font-size: 32px; }
  .hero p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-right { flex: none; width: 100%; height: 220px; border-radius: var(--r); }
  .hero-tag { justify-content: center; }
  .video-wrap { padding: 0 24px; margin-bottom: 56px; }
  .newsletter { padding: 0 24px 64px; }
  .newsletter-inner { flex-direction: column; text-align: center; padding: 32px 24px; border-left: none; border-top: 4px solid var(--gold); }
  .newsletter-inner h3 { flex: auto; }
  .news-form { flex-direction: column; width: 100%; }
  .news-fields { flex-direction: column; }
  .news-fields input { width: 100%; }
  .news-form button { align-self: stretch; }
  .values { padding: 0 24px 64px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats { padding: 56px 24px; }
  .stats-inner { grid-template-columns: 1fr; }
  .how { padding: 64px 24px; }
  .how-grid { grid-template-columns: 1fr; }
  .team { padding: 48px 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .story { padding: 48px 24px; }
  .page-header { padding: 64px 24px 36px; }
  .page-header h1 { font-size: 30px; }
  .part-section { padding: 32px 24px 56px; }
  .part-grid { grid-template-columns: 1fr; }
  .contact { padding: 0 24px 64px; }
  .contact-wrap .contact { padding: 0 24px; }
  .contact-card { padding: 32px 24px; }
  .bundle-empty { padding: 80px 24px 56px; }
  .bundle-empty h1 { font-size: 28px; }
  .bundle-empty .news-form .news-fields { flex-direction: column; }
  .footer { padding: 40px 24px 20px; border-radius: 16px 16px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; align-items: center; }
  .footer-legal { justify-content: center; }
  .legal { padding: 80px 20px 60px; }
  .legal h1 { font-size: 28px; }
}
@media(max-width:480px) {
  .hero { padding: 36px 16px; }
  .hero h1 { font-size: 28px; }
  .btn-main, .btn-sec { width: 100%; text-align: center; display: block; }
  .newsletter { padding: 0 16px 48px; }
  .values { padding: 0 16px 48px; }
  .stats { padding: 40px 16px; }
  .how { padding: 48px 16px; }
  .footer { padding: 32px 16px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .field input, .field textarea { font-size: 16px; }
}
