/* ========================================
   N&E Élagage — Landing Page Styles
   ======================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif; color: var(--text); line-height: 1.6; background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ---------- Variables ---------- */
:root {
  --green: #2E7D32;
  --green-dark: #1B5E20;
  --green-light: #4CAF50;
  --green-pale: #e8f5e9;
  --orange: #FF6D00;
  --orange-hover: #E65100;
  --dark: #1a1a1a;
  --dark-soft: #2c2c2c;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --bg-light: #f7faf5;
  --bg-alt: #f0f4ed;
  --white: #ffffff;
  --border: #e0e0e0;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --header-h: 70px;
  --container: 1140px;
}

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--alt { background: var(--bg-light); }
.section__title { font-family: 'Montserrat', sans-serif; font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; text-align: center; margin-bottom: 16px; color: var(--dark); }
.section__intro { text-align: center; max-width: 700px; margin: 0 auto 48px; color: var(--text-light); font-size: 1.05rem; }
.section__cta { text-align: center; margin-top: 40px; }
.section__cta-text { text-align: center; margin-top: 32px; color: var(--text-light); font-size: 1rem; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 1rem; transition: all var(--transition); white-space: nowrap; }
.btn--cta { background: var(--orange); color: var(--white); box-shadow: 0 4px 14px rgba(255,109,0,0.35); }
.btn--cta:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,109,0,0.45); }
.btn--phone { background: var(--green); color: var(--white); }
.btn--phone:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--full { width: 100%; justify-content: center; }
.btn svg { flex-shrink: 0; }

/* ---------- Header ---------- */
.header { position: fixed; top: 0; left: 0; width: 100%; height: var(--header-h); z-index: 1000; transition: all var(--transition); background: transparent; }
.header.scrolled { background: rgba(26,26,26,0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.header__inner { max-width: var(--container); margin: 0 auto; padding: 0 20px; height: 100%; display: flex; align-items: center; gap: 16px; }
.header__logo { margin-right: auto; }
.header__logo img { height: 42px; width: auto; }
.header__nav { display: flex; gap: 4px; }
.header__nav a { color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; padding: 6px 12px; border-radius: 6px; transition: all var(--transition); }
.header__nav a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__phone { display: flex; align-items: center; gap: 6px; color: var(--white); font-weight: 600; font-size: 0.9rem; transition: opacity var(--transition); }
.header__phone:hover { opacity: 0.8; }
.header__cta { padding: 10px 20px; font-size: 0.85rem; }
.header__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.header__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.header__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; color: var(--white); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%); }
.hero__content { position: relative; text-align: center; padding: calc(var(--header-h) + 20px) 20px 80px; max-width: 800px; }
.hero__title { font-family: 'Montserrat', sans-serif; font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.hero__title span { display: block; font-size: 0.75em; font-weight: 600; opacity: 0.9; }
.hero__subtitle { font-size: clamp(1rem, 2.5vw, 1.25rem); margin-bottom: 32px; opacity: 0.9; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.12); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; }
.badge__icon { color: var(--green-light); font-weight: 700; }
.hero__scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; color: rgba(255,255,255,0.6); }
@keyframes bounce { 0%,20%,50%,80%,100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); transition: all var(--transition); border: 1px solid transparent; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-pale); }
.card__icon { margin-bottom: 16px; color: var(--green); }
.card__title { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.card__text { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

/* ---------- Why Us ---------- */
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.why__card { text-align: center; padding: 32px 24px; }
.why__icon { margin-bottom: 20px; color: var(--green); }
.why__card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.why__card p { color: var(--text-light); font-size: 0.95rem; }

/* ---------- Reassurance ---------- */
.reassurance { background: var(--green-dark); color: var(--white); padding: 32px 0; }
.reassurance__grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.reassurance__item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; }
.reassurance__item svg { opacity: 0.8; flex-shrink: 0; }

/* ---------- Gallery ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.gallery__item { border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.gallery__item:hover img { transform: scale(1.05); }

/* ---------- Avis ---------- */
.avis__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.avis__card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border-left: 4px solid var(--green); }
.avis__stars { color: #FFC107; font-size: 1.2rem; margin-bottom: 12px; letter-spacing: 2px; }
.avis__text { font-size: 0.95rem; color: var(--text); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.avis__author { font-weight: 600; font-size: 0.9rem; color: var(--text-light); }
.avis__author span { color: var(--green); }

/* ---------- FAQ ---------- */
.faq__list { max-width: 740px; margin: 0 auto; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: border-color var(--transition); }
.faq__item[open] { border-color: var(--green); }
.faq__question { padding: 18px 48px 18px 20px; font-weight: 600; font-size: 1rem; cursor: pointer; position: relative; list-style: none; color: var(--dark); }
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--green); transition: transform var(--transition); }
.faq__item[open] .faq__question::after { content: '−'; }
.faq__answer { padding: 0 20px 18px; color: var(--text-light); font-size: 0.95rem; }
.faq__answer p { margin-bottom: 8px; }

/* ---------- Tarifs ---------- */
.tarifs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tarif__card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; box-shadow: var(--shadow); border: 2px solid transparent; transition: all var(--transition); position: relative; }
.tarif__card:hover { border-color: var(--green-pale); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tarif__card--featured { border-color: var(--green); }
.tarif__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 16px; border-radius: 50px; white-space: nowrap; }
.tarif__card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.tarif__price { font-size: 0.9rem; color: var(--text-light); margin-bottom: 4px; }
.tarif__price strong { font-size: 2rem; color: var(--green-dark); font-family: 'Montserrat', sans-serif; }
.tarif__unit { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.tarif__features { margin-bottom: 24px; }
.tarif__features li { font-size: 0.9rem; color: var(--text-light); padding: 6px 0; padding-left: 20px; position: relative; }
.tarif__features li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.tarifs__note { text-align: center; margin-top: 32px; padding: 16px 24px; background: var(--green-pale); border-radius: var(--radius); }
.tarifs__note p { color: var(--green-dark); font-size: 0.95rem; margin: 0; }

/* ---------- Zone ---------- */
.zone__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.zone__card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); border-left: 4px solid var(--green); }
.zone__card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.zone__card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; margin-bottom: 12px; }
.zone__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.zone__tags span { display: inline-block; background: var(--green-pale); color: var(--green-dark); font-size: 0.75rem; font-weight: 500; padding: 3px 10px; border-radius: 50px; }
.zone__map-wrap { margin: 24px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.zone__map-wrap iframe { display: block; }
.zone__urgence { margin-top: 32px; }
.urgence-box { background: var(--green-dark); color: var(--white); border-radius: var(--radius-lg); padding: 32px; text-align: center; }
.urgence-box h3 { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; margin-bottom: 8px; }
.urgence-box p { opacity: 0.9; margin-bottom: 16px; font-size: 0.95rem; }
.urgence-box .btn { font-size: 1.1rem; }

/* ---------- SEO ---------- */
.seo__block { max-width: 800px; margin: 0 auto 40px; }
.seo__block h2 { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.seo__block p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 12px; line-height: 1.7; }
.seo__toggle { color: var(--green); font-weight: 600; font-size: 0.9rem; padding: 4px 0; border-bottom: 1px dashed var(--green); transition: color var(--transition); }
.seo__toggle:hover { color: var(--green-dark); }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand img { height: 50px; width: auto; margin-bottom: 12px; }
.footer__brand p { font-size: 0.9rem; opacity: 0.7; }
.footer h4 { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer__contact a, .footer__links a, .footer__legal a { display: block; font-size: 0.9rem; padding: 4px 0; opacity: 0.7; transition: opacity var(--transition); }
.footer__contact a:hover, .footer__links a:hover, .footer__legal a:hover { opacity: 1; color: var(--green-light); }
.footer__siret { font-size: 0.8rem; opacity: 0.5; margin-top: 12px; }
.footer__bottom { text-align: center; padding: 20px 0; font-size: 0.8rem; opacity: 0.5; }

/* ---------- Popup ---------- */
.popup { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.popup[hidden] { display: none; }
.popup__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); }
.popup__content { position: relative; background: var(--white); border-radius: var(--radius-lg); padding: 40px; max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); animation: popIn 0.3s ease; }
.popup__content--sm { max-width: 400px; padding: 36px; }
@keyframes popIn { from { opacity: 0; transform: scale(0.95) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.popup__close { position: absolute; top: 12px; right: 16px; font-size: 1.8rem; color: var(--text-muted); transition: color var(--transition); line-height: 1; }
.popup__close:hover { color: var(--dark); }
.popup__content h2 { font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.popup__subtitle { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; }
.popup__dismiss { display: block; margin-top: 16px; text-align: center; width: 100%; color: var(--text-muted); font-size: 0.85rem; text-decoration: underline; }
.popup__dismiss:hover { color: var(--text); }

/* ---------- Forms ---------- */
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 16px; }
.form__group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form__group label span { font-weight: 400; color: var(--text-muted); }
.form__group input, .form__group select, .form__group textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.95rem; transition: border-color var(--transition); font-family: inherit; }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,125,50,0.1); }
.form__group input.error, .form__group select.error, .form__group textarea.error { border-color: #e53935; }
.form__privacy { text-align: center; font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }
.form__success { text-align: center; padding: 20px 0; }
.form__success h3 { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; color: var(--green); margin: 16px 0 8px; }
.form__success p { color: var(--text-light); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox__close { position: absolute; top: 16px; right: 20px; font-size: 2.5rem; color: rgba(255,255,255,0.7); transition: color var(--transition); z-index: 1; }
.lightbox__close:hover { color: var(--white); }
.lightbox__prev, .lightbox__next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2rem; color: rgba(255,255,255,0.7); padding: 16px; transition: color var(--transition); z-index: 1; }
.lightbox__prev { left: 12px; }
.lightbox__next { right: 12px; }
.lightbox__prev:hover, .lightbox__next:hover { color: var(--white); }

/* ---------- Floating mobile buttons ---------- */
.floating { position: fixed; bottom: 20px; right: 20px; display: none; flex-direction: column; gap: 12px; z-index: 1500; }
.floating__btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); box-shadow: 0 4px 14px rgba(0,0,0,0.25); transition: transform var(--transition); }
.floating__btn:hover { transform: scale(1.1); }
.floating__btn--phone { background: var(--green); }
.floating__btn--mail { background: var(--orange); }

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 992px) {
  .header__nav { display: none; }
  .header__nav.open { display: flex; flex-direction: column; position: absolute; top: var(--header-h); left: 0; width: 100%; background: rgba(26,26,26,0.97); backdrop-filter: blur(10px); padding: 16px 20px; gap: 0; }
  .header__nav.open a { padding: 12px 20px; font-size: 1rem; }
  .header__burger { display: flex; }
  .tarifs__grid { grid-template-columns: 1fr 1fr; }
  .zone__cards { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .section { padding: 60px 0; }

  .header__phone span { display: none; }
  .header__cta { padding: 8px 16px; font-size: 0.8rem; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__badges { flex-direction: column; align-items: center; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .tarifs__grid { grid-template-columns: 1fr; }
  .zone__cards { grid-template-columns: 1fr; }

  .reassurance__grid { flex-direction: column; align-items: center; text-align: center; }

  .gallery__grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; }

  .avis__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__brand img { margin: 0 auto 12px; }

  .form__row { grid-template-columns: 1fr; }
  .popup__content { padding: 28px 20px; }

  .floating { display: flex; }

  .lightbox__prev, .lightbox__next { display: none; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
}

/* ========================================
   Legal Page Styles
   ======================================== */
.legal-page { padding-top: calc(var(--header-h) + 40px); padding-bottom: 60px; }
.legal-page h1 { font-family: 'Montserrat', sans-serif; font-size: 2rem; color: var(--green-dark); margin-bottom: 32px; padding-bottom: 12px; border-bottom: 3px solid var(--green); }
.legal-page h2 { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; color: var(--dark); margin: 32px 0 12px; }
.legal-page h3 { font-size: 1.1rem; color: var(--green-dark); margin: 24px 0 8px; }
.legal-page p { margin-bottom: 12px; color: #444; font-size: 0.95rem; line-height: 1.7; }
.legal-page a { color: var(--green); text-decoration: underline; }
.legal-page a:hover { color: var(--green-dark); }

.legal-back { display: inline-block; margin-bottom: 24px; color: var(--green); font-weight: 600; text-decoration: none; }
.legal-back:hover { text-decoration: underline; }

.legal-section { margin-bottom: 16px; }

.legal-list { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-list li { margin-bottom: 8px; font-size: 0.95rem; line-height: 1.6; color: #444; }

.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 0.9rem; }
.legal-table th, .legal-table td { border: 1px solid #ddd; padding: 10px 14px; text-align: left; }
.legal-table th { background: var(--green-pale); color: var(--green-dark); font-weight: 600; }
.legal-table td { color: #444; }

.legal-divider { border: none; border-top: 2px solid var(--green); margin: 48px 0 40px; }
.legal-credit { font-size: 0.85rem; color: #888; margin-top: 24px; }

@media (max-width: 768px) {
  .legal-page h1 { font-size: 1.6rem; }
  .legal-page h2 { font-size: 1.15rem; }
  .legal-table { font-size: 0.8rem; }
  .legal-table th, .legal-table td { padding: 8px 10px; }
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: rgba(27, 27, 27, 0.97); backdrop-filter: blur(8px); border-top: 3px solid var(--green); padding: 16px 0; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }
.cookie-banner__inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-banner__text { flex: 1; }
.cookie-banner__text p { color: rgba(255,255,255,0.9); font-size: 0.88rem; margin: 0; line-height: 1.5; }
.cookie-banner__text p:first-child { margin-bottom: 4px; }
.cookie-banner__text p strong { color: #fff; }
.cookie-banner__text a { color: var(--green-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

.btn--sm { padding: 8px 20px; font-size: 0.85rem; }
.btn--outline { border: 2px solid rgba(255,255,255,0.4); color: #fff; border-radius: var(--radius); background: transparent; transition: all var(--transition); }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

@media (max-width: 768px) {
  .cookie-banner__inner { flex-direction: column; text-align: center; gap: 14px; }
  .cookie-banner__actions { width: 100%; justify-content: center; }
}
