/* ============================================
   OLIVIER BEGGAIN AI
   Humanist Editorial Minimalism
   ============================================ */

/* --- Custom Properties --- */
:root {
  --primary: oklch(0.638 0.168 52);
  --primary-rgb: 198, 91, 25;
  --foreground: oklch(0.235 0.018 62);
  --foreground-medium: oklch(0.39 0.017 62);
  --foreground-light: oklch(0.42 0.017 62);
  --foreground-muted: oklch(0.49 0.018 62);
  --bg-ivory: rgba(255, 252, 246, 0.96);
  --bg-warm: rgba(249, 242, 231, 0.62);
  --bg-white: rgba(255, 252, 246, 0.82);
  --border-soft: rgba(71, 57, 40, 0.1);
  --shadow-card: 0 18px 45px rgba(64, 51, 37, 0.08);
  --radius: 1.15rem;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: oklch(0.986 0.013 82);
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 18% 8%, rgba(214, 116, 36, 0.08), transparent 24rem),
    radial-gradient(circle at 85% 18%, rgba(74, 111, 125, 0.08), transparent 28rem),
    linear-gradient(rgba(60, 45, 32, 0.025) 1px, transparent 1px);
  background-size: auto, auto, 100% 7px;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.045em;
}

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

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

a:hover {
  text-decoration: underline;
}

button:not(:disabled),
[role="button"]:not([aria-disabled="true"]),
[type="button"]:not(:disabled),
[type="submit"]:not(:disabled),
a[href],
select:not(:disabled) {
  cursor: pointer;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 252, 246, 0.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand-mark {
  display: inline-grid;
  gap: 0;
  color: var(--foreground);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.045em;
  position: relative;
  text-decoration: none;
}

.brand-mark:hover {
  text-decoration: none;
}

.brand-mark span:nth-child(2) {
  color: var(--primary);
}

.brand-mark small {
  position: absolute;
  right: -1.7rem;
  bottom: 0.05rem;
  color: oklch(0.465 0.07 232);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

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

.nav-links a {
  text-decoration: none;
  color: oklch(0.4 0.017 62);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.35rem;
  height: 2px;
  background: var(--primary);
  transition: right var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

.nav-links a:hover::after {
  right: 0;
}

.nav-links a.nav-active {
  color: var(--primary);
}

.nav-links a.nav-active::after {
  right: 0;
}

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  font-weight: 800 !important;
  font-size: 0.9rem;
  box-shadow: 0 12px 25px rgba(var(--primary-rgb), 0.18);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(65, 52, 38, 0.14);
}

.nav-cta.nav-active {
  background: oklch(0.58 0.16 52);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--foreground);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  font-weight: 800;
  min-height: 3.25rem;
  padding: 0.9rem 1.45rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.button-primary:hover,
.button-secondary:hover {
  text-decoration: none;
}

.button-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 18px 35px rgba(var(--primary-rgb), 0.2);
}

.button-secondary {
  border: 1px solid rgba(var(--primary-rgb), 0.38);
  background: rgba(255, 252, 246, 0.74);
  color: oklch(0.48 0.13 52);
}

.button-primary:hover,
.button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(65, 52, 38, 0.14);
}

/* ============================================
   HERO
   ============================================ */
.hero-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 252, 246, 0.96), rgba(250, 240, 225, 0.78)),
    radial-gradient(circle at 8% 20%, rgba(218, 119, 46, 0.11), transparent 25rem);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(67, 54, 39, 0.12) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), transparent 70%);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
  padding: 5rem 0 5.5rem;
}

.hero-text {
  max-width: 38rem;
}

.section-label {
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.hero-title {
  max-width: 13ch;
  font-size: clamp(3.2rem, 9vw, 6.85rem);
  line-height: 0.91;
  color: oklch(0.19 0.016 62);
}

.hero-copy {
  max-width: 48rem;
  margin-top: 1.6rem;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.85;
  color: var(--foreground-medium);
}

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

.hero-stats {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.quiet-stat {
  border-left: 2px solid rgba(var(--primary-rgb), 0.35);
  padding-left: 1rem;
}

.quiet-stat span {
  display: block;
  color: oklch(0.5 0.018 62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.quiet-stat strong {
  display: block;
  margin-top: 0.4rem;
  color: oklch(0.24 0.018 62);
  font-size: 0.98rem;
}

.hero-image-card {
  position: relative;
  transform: rotate(1.25deg);
  border: 1px solid var(--border-soft);
  border-radius: 2rem;
  background: rgba(255, 252, 246, 0.7);
  padding: 0.75rem;
  box-shadow: 0 30px 80px rgba(70, 55, 35, 0.18);
}

.hero-image-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 28rem;
  border-radius: 1.55rem;
}

.hero-note {
  position: absolute;
  left: 1.45rem;
  bottom: 1.45rem;
  display: flex;
  max-width: 21rem;
  gap: 0.65rem;
  border-radius: 1rem;
  background: rgba(255, 252, 246, 0.9);
  padding: 0.9rem 1rem;
  color: oklch(0.28 0.018 62);
  font-size: 0.9rem;
  font-weight: 750;
  box-shadow: 0 16px 35px rgba(55, 45, 34, 0.13);
  backdrop-filter: blur(16px);
}

.hero-note svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */
.section-soft,
.section-white,
.section-accent,
.privacy-band,
.contact-section {
  padding: 6.5rem 0;
}

.section-soft {
  background: var(--bg-warm);
}

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

.section-accent {
  background: linear-gradient(135deg, rgba(239, 226, 205, 0.92), rgba(247, 240, 229, 0.9));
}

.privacy-band {
  background: linear-gradient(135deg, rgba(49, 69, 78, 0.1), rgba(249, 242, 231, 0.9));
}

.contact-section {
  background: oklch(0.235 0.018 62);
  color: oklch(0.96 0.012 82);
}

/* ============================================
   SECTION TYPOGRAPHY
   ============================================ */
.section-title {
  color: oklch(0.2 0.016 62);
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 0.98;
}

.section-copy {
  color: var(--foreground-medium);
  font-size: 1.05rem;
  line-height: 1.92;
}

.narrow {
  max-width: 38rem;
}

.section-heading-row {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.prose-block {
  display: grid;
  gap: 1.25rem;
  max-width: 55rem;
}

.prose-block p {
  color: var(--foreground-medium);
  font-size: 1.05rem;
  line-height: 1.92;
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.grid-2col {
  display: grid;
  gap: 3rem;
}

.grid-2col-reverse {
  display: grid;
  gap: 3.5rem;
}

.image-panel {
  border: 1px solid var(--border-soft);
  border-radius: 1.65rem;
  background: rgba(255, 252, 246, 0.72);
  padding: 0.65rem;
  box-shadow: 0 22px 55px rgba(64, 51, 37, 0.11);
}

.image-panel img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 1.22rem;
}

.tilt-left {
  transform: rotate(-1.1deg);
}

.process-image {
  margin-top: 2rem;
  max-height: 19rem;
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 1.4rem;
  box-shadow: 0 22px 55px rgba(64, 51, 37, 0.13);
}

/* ============================================
   QUI JE SUIS
   ============================================ */
.about-grid {
  display: grid;
  gap: 3rem;
}

/* ============================================
   ACCOMPAGNEMENT (Needs)
   ============================================ */
.needs-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.need-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  border-radius: 1.1rem;
  background: rgba(255, 252, 246, 0.78);
  padding: 1rem 1.1rem;
  color: oklch(0.33 0.017 62);
  box-shadow: inset 0 0 0 1px rgba(71, 57, 40, 0.08);
}

.need-row svg {
  color: var(--primary);
  margin-top: 0.17rem;
  flex-shrink: 0;
}

.need-row p {
  margin: 0;
  line-height: 1.7;
}

/* ============================================
   FORMATS
   ============================================ */
.formats-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.format-card {
  min-height: 24rem;
  border-radius: 1.7rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--bg-white);
  box-shadow: var(--shadow-card);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.format-card:hover {
  transform: translateY(-4px) rotate(-0.3deg);
  box-shadow: 0 25px 60px rgba(64, 51, 37, 0.13);
}

.primary-format::before,
.secondary-format::before {
  content: "";
  position: absolute;
  width: 16rem;
  height: 16rem;
  right: -6rem;
  top: -6rem;
  border-radius: 999px;
  background: rgba(214, 116, 36, 0.13);
}

.secondary-format::before {
  background: rgba(74, 111, 125, 0.13);
}

.format-number {
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.format-card h3 {
  margin-top: 1rem;
  font-size: 2rem;
}

.format-card p {
  margin-top: 1rem;
  color: oklch(0.4 0.017 62);
  line-height: 1.78;
}

.format-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.format-list span {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: oklch(0.28 0.018 62);
  font-weight: 750;
}

.format-list svg {
  color: var(--primary);
  flex: 0 0 auto;
}

/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  border-radius: 1.4rem;
  background: rgba(249, 242, 231, 0.74);
  padding: 1.45rem;
  box-shadow: inset 0 0 0 1px rgba(71, 57, 40, 0.09);
}

.timeline-item .step-number {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-weight: 900;
}

.timeline-item h3 {
  font-size: 1.45rem;
}

.timeline-item p {
  margin-top: 0.45rem;
  color: var(--foreground-light);
  line-height: 1.75;
}

/* ============================================
   EXAMPLES
   ============================================ */
.examples-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.example-card {
  border: 1px solid var(--border-soft);
  background: var(--bg-white);
  box-shadow: var(--shadow-card);
  border-radius: 1.45rem;
  padding: 1.25rem;
  transition: transform 230ms ease, box-shadow 230ms ease;
}

.example-card.is-open {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(64, 51, 37, 0.12);
}

.example-card > button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  padding: 0;
}

.example-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 760;
  letter-spacing: -0.045em;
}

.example-icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(214, 116, 36, 0.11);
  color: var(--primary);
  flex: 0 0 auto;
}

.example-summary {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.85rem;
}

.example-summary strong {
  color: var(--foreground);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.example-summary p {
  margin-top: 0;
  color: oklch(0.4 0.017 62);
  line-height: 1.78;
}

.example-detail {
  margin-top: 1.35rem;
  border-top: 1px solid rgba(71, 57, 40, 0.12);
  padding-top: 1.25rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding-top 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
  padding-top: 0;
}

.example-card.is-open .example-detail {
  max-height: 600px;
  opacity: 1;
  margin-top: 1.35rem;
  padding-top: 1.25rem;
}

.example-detail h4 {
  margin-top: 1.1rem;
  color: oklch(0.25 0.018 62);
  font-size: 1.2rem;
}

.example-detail h4:first-child {
  margin-top: 0;
}

.example-detail p {
  margin-top: 0.5rem;
  color: oklch(0.4 0.017 62);
  line-height: 1.78;
}

.detail-steps {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.detail-steps span {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: oklch(0.28 0.018 62);
  font-weight: 750;
}

.detail-steps svg {
  color: var(--primary);
  flex: 0 0 auto;
}

/* ============================================
   CADRE / PRIVACY BAND
   ============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.trust-grid span {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: oklch(0.28 0.018 62);
  font-weight: 750;
}

.trust-grid svg {
  color: var(--primary);
  flex: 0 0 auto;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  gap: 1rem;
}

.price-card {
  border: 1px solid var(--border-soft);
  background: var(--bg-white);
  box-shadow: var(--shadow-card);
  border-radius: 1.4rem;
  padding: 1.7rem;
}

.price-card h3 {
  margin-top: 0;
  font-size: 2rem;
}

.price-card p {
  margin-top: 1rem;
  color: oklch(0.4 0.017 62);
  line-height: 1.78;
}

.price {
  color: var(--primary) !important;
  font-size: 1.35rem;
  font-weight: 900;
}

.price-card.highlighted {
  border-color: rgba(var(--primary-rgb), 0.25);
  background: rgba(255, 247, 235, 0.92);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid var(--border-soft);
  background: var(--bg-white);
  box-shadow: var(--shadow-card);
  border-radius: 1.2rem;
  padding: 0.25rem 1.15rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.open {
  border-color: rgba(var(--primary-rgb), 0.3);
  box-shadow: 0 22px 50px rgba(64, 51, 37, 0.1);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  color: oklch(0.24 0.018 62);
  text-align: left;
  font-weight: 850;
  font: inherit;
  font-weight: 850;
  background: none;
  border: none;
}

.faq-item svg {
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-content {
  max-height: 400px;
  padding-bottom: 1.15rem;
}

.faq-content p {
  color: oklch(0.4 0.017 62);
  line-height: 1.78;
  margin: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section .section-title,
.contact-section .section-copy {
  color: inherit;
}

.contact-section .section-label {
  color: oklch(0.7 0.16 52);
}

.contact-section .section-copy {
  opacity: 0.82;
}

.contact-note {
  display: flex;
  max-width: 29rem;
  gap: 0.75rem;
  margin-top: 2rem;
  border: 1px solid rgba(255, 252, 246, 0.16);
  border-radius: 1.1rem;
  padding: 1rem;
  color: rgba(255, 252, 246, 0.83);
}

.contact-note svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255, 252, 246, 0.16);
  border-radius: 1.6rem;
  background: rgba(255, 252, 246, 0.96);
  padding: 1.5rem;
  color: var(--foreground);
  box-shadow: var(--shadow-card);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: oklch(0.28 0.018 62);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(71, 57, 40, 0.16);
  border-radius: 0.95rem;
  background: rgba(255, 252, 246, 0.88);
  padding: 0.9rem 1rem;
  color: var(--foreground);
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(214, 116, 36, 0.12);
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: oklch(0.6 0.01 62);
  font-weight: 400;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.privacy-text {
  margin-top: 1rem;
  color: oklch(0.48 0.017 62);
  font-size: 0.87rem;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--border-soft);
  background: oklch(0.19 0.016 62);
  color: rgba(255, 252, 246, 0.72);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2.5rem 0;
}

/* ============================================
   SECTION NAVIGATION (prev/next arrows)
   ============================================ */
.section-nav {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 90;
}

.section-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: rgba(255, 252, 246, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--foreground);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(64, 51, 37, 0.08);
  transition: all var(--transition);
}

.section-nav-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.12);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  right: 1.5rem;
  bottom: 1rem;
  left: auto;
  z-index: 50;
  display: none;
  max-width: 48rem;
  gap: 1rem;
  border: 1px solid rgba(71, 57, 40, 0.14);
  border-radius: 1.25rem;
  background: rgba(255, 252, 246, 0.96);
  padding: 1rem;
  color: oklch(0.25 0.018 62);
  box-shadow: 0 22px 65px rgba(45, 36, 25, 0.18);
  backdrop-filter: blur(18px);
  grid-template-columns: 1fr auto;
  align-items: center;
}

.cookie-banner.cookie-visible {
  display: grid;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 0.25rem;
}

.cookie-banner p {
  margin: 0;
  color: oklch(0.45 0.017 62);
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 850;
  font: inherit;
  font-weight: 850;
  border: none;
  background: none;
}

.cookie-actions button:first-child {
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  color: oklch(0.52 0.13 52);
}

.cookie-actions button:last-child {
  background: var(--primary);
  color: white;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(-0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    padding: 5rem 0 7rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .grid-2col {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .grid-2col-reverse {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tarifs-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .faq-grid {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ============================================
   RESPONSIVE — Tablet & Mobile (<1024px)
   ============================================ */
@media (max-width: 1023px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 252, 246, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--border-soft);
  }

  .nav-links.nav-open {
    max-height: 500px;
    padding: 0.5rem 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 2rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.nav-active {
    color: var(--primary);
    background: rgba(249, 242, 231, 0.7);
  }

  .nav-cta {
    margin: 0.5rem 2rem;
    text-align: center;
    display: block;
  }

  .hero-image-card {
    transform: none;
  }

  .section-soft,
  .section-white,
  .section-accent,
  .privacy-band,
  .contact-section {
    padding: 4.5rem 0;
  }

  .section-nav {
    bottom: 1rem;
    right: 1rem;
  }

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    max-width: none;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cookie-actions {
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE — Small Mobile (<640px)
   ============================================ */
@media (max-width: 639px) {
  .container {
    padding: 0 1rem;
  }

  .hero-grid {
    padding: 3rem 0 3.5rem;
  }

  .hero-image-card img {
    min-height: 18rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta a {
    width: 100%;
    text-align: center;
  }

  .section-soft,
  .section-white,
  .section-accent,
  .privacy-band,
  .contact-section {
    padding: 3.5rem 0;
  }
}
