/*
  Qnoteo – Site vitrine statique
  Palette & typographie alignées avec l'application Qnoteo
  ──────────────────────────────────────────────────────────
  Primary    : #2D6B2D  (vert foncé)
  Secondary  : #4CAF50  (vert moyen)
  Accent     : #EDE637  (jaune)
  Background : #F4FAF4
  Text       : #1A2E1A
  Font       : DM Sans (Google Fonts)
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #F4FAF4;
  color: #1A2E1A;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: #2D6B2D; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── CSS Variables ─────────────────────────────────────────────────────── */
:root {
  --primary:   #2D6B2D;
  --primary-d: #1E4D1E;
  --primary-l: #E8F5E9;
  --secondary: #4CAF50;
  --accent:    #EDE637;
  --accent-d:  #C8C000;
  --bg:        #F4FAF4;
  --white:     #FFFFFF;
  --text:      #1A2E1A;
  --text-m:    #3D5A3D;
  --text-l:    #7A9E7A;
  --border:    #C8E0C8;
  --danger:    #EF4444;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(45,107,45,.07);
  --shadow-lg: 0 8px 32px rgba(45,107,45,.15);
}

/* ── Typography ─────────────────────────────────────────────────────────── */
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem);  font-weight: 800; line-height: 1.18; letter-spacing: -.03em; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem);  font-weight: 700; line-height: 1.28; letter-spacing: -.02em; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; }
p  { color: var(--text-m); }

/* ── Layout helpers ─────────────────────────────────────────────────────── */
.container    { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 720px;  margin: 0 auto; padding: 0 1.5rem; }
.section      { padding: 5rem 0; }
.section-sm   { padding: 3rem 0; }
.text-center  { text-align: center; }
.mt-1 { margin-top: .5rem; }  .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 1rem; }.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
.flex { display: flex; } .gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .6rem 1.4rem; border-radius: 9px;
  font-family: inherit; font-size: .95rem; font-weight: 600;
  cursor: pointer; border: none; text-decoration: none;
  transition: all .18s; white-space: nowrap; line-height: 1.3;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #3A8A3A 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(45,107,45,.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-d) 0%, var(--primary) 100%);
  box-shadow: 0 6px 22px rgba(45,107,45,.38);
  transform: translateY(-1px);
}
.btn-accent  { background: var(--accent); color: var(--primary-d); font-weight: 700; }
.btn-accent:hover { background: var(--accent-d); color: #fff; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-l); }
.btn-ghost   { background: transparent; color: var(--text-m); }
.btn-ghost:hover { background: var(--border); }
.btn-lg  { padding: .85rem 2.1rem; font-size: 1.05rem; border-radius: 11px; }
.btn-sm  { padding: .35rem .85rem; font-size: .83rem; }
.btn-white {
  background: #fff; color: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.btn-white:hover { background: var(--primary-l); transform: translateY(-1px); }

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 66px;
  display: flex; align-items: center;
  padding: 0 1.5rem;
}
.navbar-inner {
  width: 100%; max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand {
  display: flex; align-items: center; gap: .5rem;
  font-weight: 800; font-size: 1.2rem; color: var(--primary);
  text-decoration: none;
}
.navbar-logo { height: 44px; width: auto; max-width: 220px; object-fit: contain; }
.navbar-links {
  display: flex; align-items: center; gap: .4rem;
}
.navbar-links a {
  padding: .4rem .75rem; border-radius: 7px;
  font-size: .9rem; font-weight: 500; color: var(--text-m);
  text-decoration: none; transition: background .15s, color .15s;
}
.navbar-links a:hover { background: var(--primary-l); color: var(--primary); }
.navbar-cta { margin-left: .8rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column; gap: .5rem;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .6rem .5rem; font-size: 1rem; font-weight: 500;
  color: var(--text-m); text-decoration: none; border-radius: 8px;
}
.mobile-menu a:hover { background: var(--primary-l); color: var(--primary); }
.mobile-menu .btn { justify-content: center; margin-top: .3rem; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, #1E4D1E 0%, #2D6B2D 55%, #43A843 100%);
  color: #fff; padding: 3rem 0 2.5rem; overflow: hidden; position: relative;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 440px;
  gap: 3rem; align-items: start;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px; padding: .35rem .9rem;
  font-size: .84rem; margin-bottom: 1.2rem;
  color: rgba(255,255,255,.9);
}
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero p   { color: rgba(255,255,255,.82); font-size: 1.1rem; max-width: 520px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-note {
  font-size: .81rem; color: rgba(255,255,255,.55); margin-top: 1rem;
}
.hero-note span { margin-right: .6rem; }

/* Mock produit dans le hero */
.hero-visual {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 0;
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}
.hero-visual-label {
  font-size: .72rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: .8rem;
}
.mock-question {
  background: rgba(255,255,255,.06); border-radius: 8px;
  padding: .9rem; margin-bottom: .6rem;
}
.mock-q-label { font-size: .78rem; color: rgba(255,255,255,.65); margin-bottom: .4rem; font-weight: 600; }
.mock-q-text  { font-size: .85rem; color: #fff; margin-bottom: .6rem; }
.mock-answers { display: flex; flex-direction: column; gap: .28rem; }
.mock-answer  {
  border-radius: 5px; padding: .28rem .6rem;
  font-size: .77rem;
}
.mock-answer.correct { background: rgba(5,150,105,.25); color: #6EE7B7; }
.mock-answer.wrong   { background: rgba(255,255,255,.06); color: rgba(255,255,255,.5); }
.hero-visual-footer {
  display: flex; justify-content: space-between;
  font-size: .73rem; color: rgba(255,255,255,.42); margin-top: .4rem;
}
.hero-visual-footer .ok { color: #6EE7B7; }
.hero-preview-image {
  width: 100%; height: auto; display: block;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

/* ── Social proof bar ───────────────────────────────────────────────────── */
.social-proof {
  background: var(--white); padding: 2.2rem 0;
  border-bottom: 1px solid var(--border);
}
.social-proof-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem; text-align: center;
}
.sp-value { font-size: 2.1rem; font-weight: 800; color: var(--primary); line-height: 1; }
.sp-label { font-size: .85rem; color: var(--text-m); margin-top: .25rem; }

/* ── Feature cards ──────────────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow); transition: all .2s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.icon-green  { background: #D1FAE5; }
.icon-blue   { background: var(--primary-l); }
.icon-amber  { background: #FEF3C7; }
.icon-purple { background: #EDE9FE; }
.feature-card h3 { margin-bottom: .4rem; }
.feature-card p  { font-size: .9rem; }

/* ── Steps ──────────────────────────────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; margin-top: 3rem; position: relative;
}
.step { text-align: center; padding: 0 1rem; }
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.step p { font-size: .88rem; }

/* ── Pronote badge ──────────────────────────────────────────────────────── */
.pronote-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary-l); border: 1px solid #A5D6A7;
  border-radius: 8px; padding: .5rem 1rem;
  font-size: .88rem; font-weight: 600; color: var(--primary-d);
}

/* ── CTA banner ─────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
  color: #fff; text-align: center; padding: 5rem 0;
}
.cta-banner h2  { color: #fff; margin-bottom: 1rem; }
.cta-banner p   { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-banner small { display: block; color: rgba(255,255,255,.5); font-size: .8rem; margin-top: 1rem; }

/* ── Testimonials ───────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow);
}
.testimonial-stars { color: var(--accent-d); font-size: 1rem; margin-bottom: .8rem; }
.testimonial-text  { font-style: italic; color: var(--text-m); margin-bottom: 1rem; font-size: .93rem; line-height: 1.6; }
.testimonial-author { font-size: .85rem; font-weight: 600; color: var(--text); }

/* ── Pricing cards ──────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem; margin-top: 2.5rem; align-items: stretch;
}

/* Grille 4 cartes : responsive 4→2→1 colonnes */
.pricing-grid-four {
  display: grid;
  gap: 1.5rem; margin-top: 2.5rem; align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1179px) {
  .pricing-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 719px) {
  .pricing-grid-four { grid-template-columns: 1fr; gap: 1rem; }
  .pricing-grid-four .pricing-card { padding: 1.8rem 1.5rem 1.5rem; }
}
.pricing-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 18px; padding: 2.5rem 2rem 2rem;
  text-align: center; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.04);
}
.pricing-card:not(.featured):hover {
  box-shadow: 0 6px 24px rgba(45,107,45,.10); transform: translateY(-2px);
}
.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 12px 44px rgba(45,107,45,.2), 0 2px 8px rgba(45,107,45,.08);
}
.pricing-card.featured::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary-d), var(--secondary));
  border-radius: 18px 18px 0 0;
}
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .25rem; }
.price-amount {
  font-size: 3.4rem; font-weight: 800; line-height: 1;
  margin: 1rem 0 .35rem; letter-spacing: -.05em; color: var(--text);
}
.pricing-card.featured .price-amount { color: var(--primary); }
.price-period { color: var(--text-l); font-size: .83rem; line-height: 1.5; }
.pricing-features {
  list-style: none; text-align: left; margin: 1.8rem 0 0; flex: 1;
}
.pricing-features li {
  padding: .5rem 0; border-bottom: 1px solid #F0F7F0;
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .875rem; line-height: 1.5; color: var(--text-m);
}
.pricing-features li:last-child { border: none; }
.pricing-features li.unavailable { color: var(--text-l); }
.pf-check {
  width: 18px; height: 18px; flex-shrink: 0;
  background: #D1FAE5; color: #065F46; border-radius: 50%;
  font-size: .65rem; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: .18rem;
}
.pf-cross {
  width: 18px; height: 18px; flex-shrink: 0;
  background: #F3F4F6; color: #9CA3AF; border-radius: 50%;
  font-size: .6rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: .18rem;
}
.pricing-cta { margin-top: 2rem; }
.pricing-cta .btn {
  white-space: normal; word-break: break-word; line-height: 1.35;
  min-height: 3.1rem; text-align: center; display: flex;
  align-items: center; justify-content: center;
  border-radius: 10px; font-size: .95rem; font-weight: 600;
}
.pricing-cta .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #3A8A3A 100%);
  box-shadow: 0 4px 14px rgba(45,107,45,.28);
}
.pricing-cta .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-d) 0%, var(--primary) 100%);
  box-shadow: 0 6px 22px rgba(45,107,45,.38); transform: translateY(-1px);
}
.pricing-cta small {
  display: block; font-size: .72rem; color: var(--text-l);
  text-align: center; margin-top: .6rem; line-height: 1.45;
}
.pricing-cta .btn:disabled,
.pricing-cta .btn[disabled] { cursor: not-allowed; font-weight: 700; }

/* ── Badge ──────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: .22rem .7rem; border-radius: 20px;
  font-size: .75rem; font-weight: 600; margin-bottom: .9rem;
}
.badge-success { background: #D1FAE5; color: #065F46; }
.badge-primary { background: var(--primary-l); color: var(--primary); }

/* ── Card generic ───────────────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
}

/* ── Accordion / FAQ ────────────────────────────────────────────────────── */
.accordion-item {
  border: 1px solid var(--border); border-radius: 9px;
  overflow: hidden; margin-bottom: .5rem;
}
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.1rem; cursor: pointer;
  font-weight: 600; font-size: .92rem;
  background: var(--white); border: none; width: 100%; text-align: left;
  font-family: inherit; color: var(--text);
}
.accordion-header:hover { background: var(--bg); }
.accordion-body {
  padding: 1rem 1.1rem; background: var(--bg);
  display: none; font-size: .9rem; color: var(--text-m); line-height: 1.6;
}
.accordion-item.open .accordion-body { display: block; }
.accordion-chevron {
  transition: transform .2s; font-size: .8rem; color: var(--text-l);
  flex-shrink: 0;
}
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }

/* ── Contact ────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: .9rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem;
}
.contact-icon {
  font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem;
}
.contact-item h4 { font-size: .9rem; font-weight: 700; margin-bottom: .2rem; }
.contact-item p  { font-size: .88rem; }
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block; font-size: .88rem; font-weight: 600;
  margin-bottom: .4rem; color: var(--text);
}
.form-control {
  width: 100%; padding: .65rem .95rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: .92rem; font-family: inherit;
  background: var(--white); color: var(--text);
  transition: border-color .15s, box-shadow .15s;
}
.form-control:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,107,45,.13);
}
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  background: #1A2E1A; color: #94A3B8;
  padding: 3.5rem 0 2rem; margin-top: auto;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  font-size: .88rem; color: rgba(255,255,255,.55);
  margin-top: .8rem; max-width: 280px; line-height: 1.6;
}
.footer-logo-text {
  font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: -.02em;
}
.footer-col h4 {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a  { color: rgba(255,255,255,.65); font-size: .88rem; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.45); font-size: .82rem; }
.footer-bottom a:hover { color: #fff; }

/* ── Legal pages ────────────────────────────────────────────────────────── */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h1 { margin-bottom: .5rem; }
.legal-content h2 { font-size: 1.25rem; margin: 2rem 0 .6rem; }
.legal-content p, .legal-content li { font-size: .95rem; color: var(--text-m); margin-bottom: .6rem; }
.legal-content ul { padding-left: 1.3rem; }
.legal-date { font-size: .82rem; color: var(--text-l); margin-bottom: 2.5rem; }

/* ── Page header (inner pages) ──────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--primary-d) 0%, var(--primary) 100%);
  color: #fff; padding: 3.5rem 0 3rem;
}
.page-header h1 { color: #fff; }
.page-header p  { color: rgba(255,255,255,.78); font-size: 1.05rem; margin-top: .5rem; }

/* ── Alert ──────────────────────────────────────────────────────────────── */
.alert-info {
  background: var(--primary-l); border: 1px solid #A5D6A7;
  border-radius: 9px; padding: .9rem 1.1rem;
  font-size: .88rem; color: var(--primary-d);
}

/* ── Toast ──────────────────────────────────────────────────────────────── */
.toast-container {
  position: fixed; top: 80px; right: 1.5rem; z-index: 9999;
  display: flex; flex-direction: column; gap: .5rem;
}
.toast {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: .9rem 1.2rem; max-width: 360px;
  box-shadow: var(--shadow-lg); animation: slideIn .25s ease;
  font-size: .88rem; display: flex; align-items: flex-start; gap: .6rem;
}
.toast.success { border-left: 4px solid var(--secondary); }
.toast.error   { border-left: 4px solid var(--danger); }
@keyframes slideIn { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: none; } }

/* ── Scrollbar ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ══ Responsive ════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
}
@media (max-width: 700px) {
  .navbar-logo { height: 38px; max-width: 190px; }
  .navbar-links, .navbar-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-actions { flex-direction: column; }
  .section { padding: 3.5rem 0; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pricing-card { padding: 1.8rem 1.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .steps { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

.visual-formative-section {
  background: #f3faf4;
  padding: 3rem 0;
}

.visual-formative-image {
  display: block;
  width: 100%;
  max-width: 1180px;
  height: auto;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(18, 53, 28, 0.10);
}

@media (max-width: 768px) {
  .visual-formative-section {
    padding: 2rem 0;
  }

  .visual-formative-image {
    border-radius: 16px;
  }
}

/* ── How it works cards ─────────────────────────────────────────────────── */
.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.how-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem 1.5rem 1.8rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.how-card-media {
  margin: .8rem 0 1rem;
  border-radius: 8px;
  overflow: hidden;
}
.how-card-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.how-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 .5rem;
}
.how-card p {
  font-size: .9rem;
  color: var(--text-l);
  line-height: 1.55;
  margin: 0;
}
.how-step {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 960px) {
  .how-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .how-cards { grid-template-columns: 1fr; }
}
