/* ── Limonade Theme — metallerie / serrurerie / industrial steel ──── */
/* Self-hosted Inter (no CDN) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
}

:root {
  --green-dark:   #16232e;  /* blued-steel dark navy */
  --green-mid:    #2c5f7c;  /* steel blue */
  --green-light:  #6fa8c9;  /* cyanotype / blueprint blue */
  --amber:        #e8722a;  /* hot-cut torch orange */
  --amber-light:  #f0954f;
  --wood-dark:    #2b2f36;  /* dark steel (was wood) */
  --wood-mid:     #52565c;  /* mid steel */
  --cream:        #f4f5f7;
  --cream-dark:   #e8eaed;
  --gray:         #6B7280;
  --text:         #1A1A1A;
  --white:        #FFFFFF;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.10);
  --shadow-md:    0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.16);
  --radius:       8px;
  --radius-lg:    16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
}

img { max-width: 100%; height: auto; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ───────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

.lead {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── Layout ───────────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

/* ── Navigation ───────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-dark);
  border-bottom: 3px solid var(--amber);
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -.01em;
  text-decoration: none;
}

.nav__brand-icon {
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--green-dark);
}

.nav__links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  color: rgba(255,255,255,.75);
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  transition: background .15s, color .15s;
  text-decoration: none;
}

.nav__link:hover {
  background: rgba(255,255,255,.1);
  color: var(--white);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn--primary {
  background: var(--amber);
  color: var(--green-dark);
  box-shadow: 0 2px 8px rgba(212,160,23,.35);
}
.btn--primary:hover { background: var(--amber-light); box-shadow: 0 4px 16px rgba(212,160,23,.4); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn--dark {
  background: var(--green-dark);
  color: var(--white);
}
.btn--dark:hover { background: var(--green-mid); }

.btn--lg { padding: 14px 32px; font-size: 1.05rem; border-radius: var(--radius-lg); }

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--wood-dark) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%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/g%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,160,23,.2);
  border: 1px solid rgba(212,160,23,.4);
  color: var(--amber-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--white);
}

.hero h1 span {
  color: var(--amber);
}

.hero .lead {
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__visual {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}

.hero__photo {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.35));
}

.hero__note {
  margin-top: 18px;
  background: rgba(232,114,42,.12);
  border: 1px solid rgba(232,114,42,.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}

.hero__visual-title {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.cut-diagram {
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 16px;
  aspect-ratio: 4/3;
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
}

.cut-panel {
  position: absolute;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
}

.cut-panel--a { background: rgba(82,183,136,.25); top:6%;left:4%;width:45%;height:38%; }
.cut-panel--b { background: rgba(82,183,136,.2);  top:6%;left:52%;width:43%;height:55%; }
.cut-panel--c { background: rgba(212,160,23,.25); top:47%;left:4%;width:28%;height:45%; }
.cut-panel--d { background: rgba(82,183,136,.15); top:64%;left:35%;width:60%;height:28%; }
.cut-panel--e { background: rgba(212,160,23,.18); top:47%;left:35%;width:18%;height:14%; }

.stats-row {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.stat {
  flex: 1;
  text-align: center;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 12px 8px;
  border: 1px solid rgba(255,255,255,.08);
}

.stat__value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--amber);
}

.stat__label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* ── Method ───────────────────────────────────────────────────────── */
.method {
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.method__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.method__text .section__eyebrow { margin-bottom: 12px; }
.method__text h2 { margin-bottom: 14px; }
.method__text .lead { margin-bottom: 20px; }

.method__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.method__list li {
  position: relative;
  padding-left: 26px;
  font-size: .95rem;
  color: var(--text);
}

.method__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--white);
  font-size: .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.method__visuals {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
  padding: 0 10% 60px 0;
}

.method__img {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 20px;
}

.method__img:not(.method__img--small) {
  width: 82%;
  z-index: 1;
}

.method__img--small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 44%;
  z-index: 2;
}

@media (max-width: 768px) {
  .method__inner { grid-template-columns: 1fr; }
  .method__visuals { margin-top: 24px; min-height: 260px; }
}

/* ── Features ─────────────────────────────────────────────────────── */
.features {
  background: var(--white);
}

.section__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.section__eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.section__header h2 { margin-bottom: 14px; }
.section__header .lead { font-size: 1.05rem; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.feature-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p { color: var(--gray); font-size: .9rem; line-height: 1.6; }

/* ── How it works ─────────────────────────────────────────────────── */
.how-it-works {
  background: var(--cream);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--amber));
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 64px;
  height: 64px;
  background: var(--green-dark);
  color: var(--white);
  border: 3px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: .875rem; color: var(--gray); }

/* ── Register section ─────────────────────────────────────────────── */
.register-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--wood-dark) 100%);
  color: var(--white);
  text-align: center;
}

.register-section h2 { color: var(--white); margin-bottom: 12px; }
.register-section .lead { color: rgba(255,255,255,.7); margin-bottom: 40px; }

.register-form {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(8px);
}

.register-form h3 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  color: var(--white);
  font-size: .95rem;
  outline: none;
  transition: border-color .15s;
}

.form-group input::placeholder { color: rgba(255,255,255,.35); }
.form-group input:focus { border-color: var(--amber); }

.form-submit {
  width: 100%;
  margin-top: 8px;
}

#register-error {
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.3);
  color: #FCA5A5;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: .875rem;
  margin-bottom: 16px;
  display: none;
}

.form-success {
  text-align: center;
  padding: 16px;
}

.form-success h3 { color: var(--amber); margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 20px; }

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: rgba(255,255,255,.35);
  font-size: .8rem;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.15);
}

.sso-buttons {
  display: flex;
  gap: 10px;
}

.btn--sso {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  justify-content: center;
  padding: 10px;
  font-size: .85rem;
}
.btn--sso:hover { background: rgba(255,255,255,.14); }

/* ── Footer ───────────────────────────────────────────────────────── */
.footer {
  background: var(--wood-dark);
  color: rgba(255,255,255,.6);
  padding: 40px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__brand {
  font-weight: 700;
  color: var(--amber);
  font-size: 1rem;
}

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__links a {
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  transition: color .15s;
  text-decoration: none;
}

.footer__links a:hover { color: var(--white); }

.footer__copy { font-size: .8rem; }

/* ── Barres linéaires (hero) ──────────────────────────────────────── */
.bars-section {
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 12px;
}

.bars-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}

.bar-stock {
  display: flex;
  gap: 3px;
  height: 22px;
  background: rgba(0,0,0,.2);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}

.bar-piece {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  border-radius: 2px;
  flex-shrink: 0;
}

.bar-piece--a { background: rgba(82,183,136,.5);  width: 38%; }
.bar-piece--b { background: rgba(82,183,136,.35); width: 27%; }
.bar-piece--c { background: rgba(82,183,136,.25); width: 18%; }
.bar-piece--d { background: rgba(212,160,23,.45); width: 31%; }
.bar-piece--e { background: rgba(212,160,23,.3);  width: 23%; }

.bar-chute {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .55rem;
  color: rgba(255,255,255,.3);
  flex: 1;
  border-left: 1px dashed rgba(255,255,255,.15);
  padding: 0 4px;
}

/* ── Labels panneau ───────────────────────────────────────────────── */
.cut-panel {
  flex-direction: column;
  gap: 2px;
}

.cut-panel__mat {
  font-size: .52rem;
  font-weight: 400;
  opacity: .6;
  display: block;
}

/* ── Matériaux ────────────────────────────────────────────────────── */
.materials {
  background: var(--cream);
}

.materials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mat-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.mat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.mat-card__swatch {
  height: 72px;
  position: relative;
  overflow: hidden;
}

.mat-card__swatch--wood {
  background: linear-gradient(160deg, #8B5E3C 0%, #6B3D1E 30%, #A0714F 50%, #7D4E27 70%, #5C3317 100%);
}
.mat-card__swatch--wood::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    85deg,
    transparent,
    transparent 6px,
    rgba(0,0,0,.06) 6px,
    rgba(0,0,0,.06) 7px
  );
}

.mat-card__swatch--metal {
  background: linear-gradient(160deg, #9CA3AF 0%, #6B7280 35%, #D1D5DB 50%, #9CA3AF 65%, #4B5563 100%);
}
.mat-card__swatch--metal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 4px,
    rgba(255,255,255,.08) 4px,
    rgba(255,255,255,.08) 5px
  );
}

.mat-card__swatch--bar {
  background: linear-gradient(160deg, #D1D5DB 0%, #9CA3AF 20%, #F3F4F6 50%, #9CA3AF 80%, #6B7280 100%);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}
.mat-card__swatch--bar::before {
  content: '';
  position: absolute;
  left: 12px; right: 12px;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  background: linear-gradient(180deg, #E5E7EB 0%, #9CA3AF 40%, #6B7280 60%, #9CA3AF 100%);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
}
.mat-card__swatch--bar::after {
  content: '';
  position: absolute;
  left: 55%;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.5);
  box-shadow: 20px 0 0 rgba(255,255,255,.3);
}

.mat-card__swatch--glass {
  background: linear-gradient(135deg, rgba(186,230,253,.6) 0%, rgba(147,210,250,.4) 50%, rgba(186,230,253,.7) 100%);
}
.mat-card__swatch--glass::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.4) 0%, transparent 60%);
}

.mat-card__name {
  padding: 10px 14px 2px;
  font-weight: 700;
  font-size: .9rem;
}

.mat-card__sub {
  padding: 0 14px 12px;
  font-size: .78rem;
  color: var(--gray);
}

/* ── Pricing ──────────────────────────────────────────────────────── */
.pricing {
  background: var(--white);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 380px));
  justify-content: center;
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: box-shadow .2s;
}

.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card--highlight {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.pricing-card__badge {
  background: var(--green-mid);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 5px;
}

.pricing-card__header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--cream-dark);
}

.pricing-card--highlight .pricing-card__header {
  border-bottom-color: rgba(45,106,79,.15);
}

.pricing-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card__price span {
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray);
}

.pricing-card__desc {
  font-size: .82rem;
  color: var(--gray);
}

.pricing-card__features {
  list-style: none;
  padding: 16px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-card__features li {
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card__features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.feat--ok { color: var(--text); }
.feat--ok::before {
  background-color: var(--green-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.feat--no { color: var(--gray); opacity: .6; }
.feat--no::before {
  background-color: #D1D5DB;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M3 3l4 4M7 3l-4 4' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.btn--block {
  display: flex;
  width: calc(100% - 48px);
  margin: 0 24px 20px;
  justify-content: center;
}

.pricing-note {
  max-width: 560px;
  margin: 32px auto 0;
  text-align: center;
  font-size: .9rem;
  color: var(--gray);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 14px 20px;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .materials__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .sso-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .nav__links .nav__link:not(.btn) { display: none; }
  .materials__grid { grid-template-columns: 1fr; }
}
