/* ─── STRIPE · prime-pac.fr — Mesh gradient purple/pink/cyan ─── */

:root {
  --paper: #ffffff;
  --paper-2: #fafbff;
  --bone: #f4f5fa;
  --line: #e7e9f5;
  --line-soft: #eff1f9;
  --ink: #0a2540;
  --ink-2: #425466;
  --mute: #687385;
  --soft: #adb5c0;

  --accent: #635bff;          /* violet Stripe */
  --accent-dark: #4b3eff;
  --accent-soft: #e6e4ff;
  --accent-2: #ff80b5;         /* rose Stripe */
  --accent-3: #00d4ff;         /* cyan accent */
  --accent-4: #ffba00;         /* gold accent */

  --shadow-sm: 0 1px 4px rgba(50,50,93,.08), 0 0 1px rgba(0,0,0,.05);
  --shadow-md: 0 8px 24px rgba(50,50,93,.10), 0 4px 8px rgba(0,0,0,.06);
  --shadow-lg: 0 24px 60px rgba(50,50,93,.12), 0 8px 16px rgba(0,0,0,.08);

  --font-display: 'Inter', -apple-system, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body); font-size: 16px; line-height: 1.55;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.skip-to-content { position: absolute; top: -40px; left: 0; background: var(--ink); color: white; padding: 8px 14px; text-decoration: none; border-radius: 0 0 6px 0; font-size: 13px; z-index: 1000; }
.skip-to-content:focus { top: 0; }

/* ─── HEADER clean ─── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-soft);
  padding: 16px 5%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
header .logo {
  display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink);
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em;
}
header .logo-icon {
  font-size: 22px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
#main-nav ul { list-style: none; display: flex; gap: 32px; }
#main-nav a {
  color: var(--ink-2); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color .2s;
}
#main-nav a:hover { color: var(--accent); }

.header-cta, .btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--ink); color: white;
  border: none; border-radius: 100px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all .2s; white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.header-cta:hover, .btn-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-cta.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 4px 14px rgba(99,91,255,.35);
}
.btn-cta.btn-primary:hover { box-shadow: 0 6px 20px rgba(99,91,255,.45); }

.btn-link {
  display: inline-flex; align-items: center; gap: 6px; color: var(--accent); text-decoration: none;
  font-size: 14.5px; font-weight: 600;
}
.btn-link::after { content: '→'; transition: transform .2s; }
.btn-link:hover::after { transform: translateX(4px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: white; color: var(--ink);
  border: 1px solid var(--line); border-radius: 100px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all .2s;
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); }
@media (max-width: 880px) { #main-nav, .header-cta { display: none; } .hamburger { display: flex; } }
.hide-mobile { display: inline-flex; }
@media (max-width: 880px) { .hide-mobile { display: none !important; } }

.mobile-menu { position: fixed; inset: 65px 0 0 0; z-index: 99; background: var(--paper); padding: 32px 5%; display: flex; flex-direction: column; gap: 22px; border-top: 1px solid var(--line-soft); }
.mobile-menu a { color: var(--ink); text-decoration: none; font-size: 18px; font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--line-soft); }

/* ─── HERO mesh gradient ─── */
.hero {
  padding: 120px 5% 100px;
  background:
    radial-gradient(at 12% 22%, rgba(99,91,255,.18) 0px, transparent 50%),
    radial-gradient(at 80% 18%, rgba(255,128,181,.20) 0px, transparent 50%),
    radial-gradient(at 50% 60%, rgba(0,212,255,.10) 0px, transparent 50%),
    radial-gradient(at 88% 95%, rgba(255,186,0,.10) 0px, transparent 50%),
    var(--paper);
  position: relative; overflow: hidden;
}
.hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 960px) { .hero { padding: 80px 5% 56px; } .hero-inner { grid-template-columns: 1fr; gap: 48px; } }
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.045em;
  color: var(--ink); margin-bottom: 24px;
}
.hero-text h1 .accent {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 60%, var(--accent-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--ink-2);
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--line);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-text p { font-size: 19px; line-height: 1.55; color: var(--ink-2); margin-bottom: 36px; max-width: 56ch; font-weight: 400; }
.hero-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero .btn-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  padding: 13px 26px; font-size: 15px;
  box-shadow: 0 6px 20px rgba(99,91,255,.30);
}
.hero .btn-cta:hover { box-shadow: 0 8px 28px rgba(99,91,255,.40); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 520px; margin-bottom: 24px; }
.stat-card {
  background: rgba(255,255,255,.65); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 12px; padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-number {
  font-family: var(--font-display); font-size: 28px; font-weight: 700; line-height: 1; letter-spacing: -0.025em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 12px; color: var(--mute); margin-top: 6px; font-weight: 500; }
.trust-row { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--mute); font-weight: 500; }
.hero-photo-wrap {
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 28px 80px rgba(99,91,255,.18), 0 12px 32px rgba(0,0,0,.10);
  aspect-ratio: 4/5; max-height: 600px;
  background: var(--bone);
  position: relative;
}
.hero-photo-wrap::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(99,91,255,.12) 0%, rgba(255,128,181,.08) 100%);
  pointer-events: none;
}
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── LOGO CLOUD ─── */
.logo-cloud {
  background: white; padding: 24px 5%;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--mute);
}
.logo-cloud .label { font-weight: 600; color: var(--ink); }

/* ─── SECTIONS ─── */
.section { padding: 100px 5%; }
.section-white { background: var(--paper); }
.section-alt {
  background:
    radial-gradient(at 5% 5%, rgba(99,91,255,.06) 0px, transparent 50%),
    radial-gradient(at 95% 95%, rgba(255,128,181,.06) 0px, transparent 50%),
    var(--paper-2);
}
.section-accent {
  background:
    radial-gradient(at 50% 0%, rgba(99,91,255,.10) 0px, transparent 50%),
    var(--paper);
  position: relative;
}
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.badge {
  display: inline-block;
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: .02em;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.035em; color: var(--ink);
  margin-bottom: 16px;
}
.section-h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-head p { font-size: 18px; color: var(--ink-2); line-height: 1.55; }

/* ─── TAXONOMY GRID ─── */
.taxonomy-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.taxonomy-card {
  background: white;
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
  box-shadow: var(--shadow-sm);
}
.taxonomy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-soft);
}
.taxonomy-card .photo { aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: var(--bone); }
.taxonomy-card-body { padding: 24px 26px 28px; }
.taxonomy-card-body .num {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: white;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: .04em; padding: 4px 10px; border-radius: 6px;
  margin-bottom: 14px;
}
.taxonomy-card-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.02em; }
.taxonomy-card-body .latin { font-family: var(--font-body); font-size: 13px; color: var(--mute); font-weight: 500; margin-bottom: 14px; }
.taxonomy-card-body p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin-bottom: 14px; }
.taxonomy-card-body .price {
  display: inline-block; padding: 7px 14px;
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--font-body); font-size: 12.5px; font-weight: 600;
  border-radius: 8px;
}

/* ─── WIDGET ─── */
.widget-section {
  padding: 80px 5%;
  background:
    radial-gradient(at 30% 30%, rgba(99,91,255,.08) 0px, transparent 50%),
    radial-gradient(at 70% 70%, rgba(255,128,181,.08) 0px, transparent 50%),
    var(--paper);
}
.widget-frame {
  max-width: 800px; margin: 0 auto;
  background: white; padding: 40px;
  border-radius: 18px; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

/* ─── PROCESS ─── */
.process-steps { display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) { .process-steps { grid-template-columns: 1fr; } }
.step {
  background: white; padding: 36px 28px;
  border-radius: 18px; border: 1px solid var(--line);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step-icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: white;
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  box-shadow: 0 8px 20px rgba(99,91,255,.30);
}
.step h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--ink); letter-spacing: -0.015em; }
.step p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

/* ─── TESTIMONIALS ─── */
.testimonial-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.testimonial {
  background: white; padding: 32px;
  border-radius: 16px; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.testimonial .stars {
  background: linear-gradient(135deg, var(--accent-4) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; font-weight: 700;
}
.testimonial p { font-family: var(--font-display); font-size: 16px; line-height: 1.6; color: var(--ink); margin-bottom: 20px; font-weight: 400; }
.testimonial .author { display: flex; gap: 12px; align-items: center; }
.testimonial .avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
}
.testimonial .name { font-weight: 600; color: var(--ink); font-size: 14px; }
.testimonial .role { font-size: 12.5px; color: var(--mute); }

/* ─── PRICING TABLE ─── */
.pricing-table {
  width: 100%; border-collapse: collapse;
  background: white; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  font-size: 14.5px;
  box-shadow: var(--shadow-sm);
}
.pricing-table thead { background: var(--paper-2); }
.pricing-table th {
  text-align: left; padding: 18px 22px;
  font-family: var(--font-body); font-size: 11.5px;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--mute); font-weight: 600;
}
.pricing-table th.num { width: 64px; }
.pricing-table td { padding: 18px 22px; border-top: 1px solid var(--line-soft); vertical-align: top; }
.pricing-table td.num { font-family: var(--font-mono); color: var(--mute); font-size: 13px; }
.pricing-table td.name { font-weight: 600; color: var(--ink); }
.pricing-table td.detail { color: var(--ink-2); font-size: 13.5px; }
.pricing-table td.price {
  text-align: right; font-family: var(--font-display); font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ─── FEATURES ─── */
.features-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.feature-card {
  background: white; padding: 32px 24px;
  border-radius: 16px; border: 1px solid var(--line);
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--accent-soft) 0%, rgba(255,128,181,.18) 100%);
  color: var(--accent);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.feature-card h3 { font-family: var(--font-display); margin-bottom: 6px; line-height: 1; font-weight: 800; }
.feature-card p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }

/* ─── REGIONS GRID ─── */
.regions-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.region-card {
  background: white; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none; color: var(--ink);
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.region-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.region-card-photo { aspect-ratio: 4/3; }
.region-card-body { padding: 16px 18px; }
.region-card-body h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.015em; }
.region-card-body p { font-size: 13px; color: var(--mute); }

/* ─── CTA SECTION ─── */
.cta-section {
  background:
    radial-gradient(at 20% 20%, rgba(99,91,255,.18) 0px, transparent 50%),
    radial-gradient(at 80% 80%, rgba(255,128,181,.20) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(0,212,255,.10) 0px, transparent 50%),
    var(--ink);
  color: white;
  padding: 100px 5%; text-align: center;
}
.cta-section .cta-eyebrow {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: .02em; color: rgba(255,255,255,.85);
  margin-bottom: 18px; display: inline-block;
}
.cta-h2 { font-family: var(--font-display); font-size: clamp(40px, 5.5vw, 64px); font-weight: 800; line-height: 1.05; letter-spacing: -0.035em; color: white; margin-bottom: 22px; }
.cta-h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-3) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.cta-section p { color: rgba(255,255,255,.85); }
.cta-row { display: flex; gap: 18px; align-items: center; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-cta { background: white; color: var(--ink); }
.cta-section .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,.3); }
.cta-section .btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,.3); }
.cta-section .btn-outline:hover { background: rgba(255,255,255,.1); border-color: white; color: white; }

/* ─── REASSURANCE BAR ─── */
.reassurance-bar {
  background: var(--ink); color: white;
  padding: 18px 5%; display: flex; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
}
.reassurance-bar strong {
  background: linear-gradient(135deg, var(--accent-3) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ─── FOOTER ─── */
footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 70px 5% 32px; }
.footer-content { max-width: 1280px; margin: 0 auto; display: grid; gap: 40px; grid-template-columns: 1.5fr repeat(4, 1fr); }
@media (max-width: 880px) { .footer-content { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-content { grid-template-columns: 1fr; } }
.footer-section h4 { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .04em; color: white; margin-bottom: 16px; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 10px; }
.footer-section a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-section a:hover { color: white; }
.footer-section p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.55; }
.footer-bottom { max-width: 1280px; margin: 36px auto 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); text-align: center; font-size: 12px; color: rgba(255,255,255,.5); }

/* ─── MOBILE STICKY ─── */
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%); padding: 14px; }
.mobile-sticky-bar a { display: block; text-align: center; font-family: var(--font-body); font-size: 13px; font-weight: 700; color: white; text-decoration: none; }
@media (max-width: 880px) { .mobile-sticky-bar { display: block; } body { padding-bottom: 56px; } }

.desktop-sticky-cta { position: fixed; bottom: 24px; right: 24px; z-index: 80; background: white; border: 1px solid var(--line); border-radius: 14px; padding: 14px 20px; max-width: 380px; box-shadow: var(--shadow-lg); }
.dsc-inner { display: flex; align-items: center; gap: 14px; }
.dsc-inner span { font-size: 13.5px; color: var(--ink); }
.dsc-inner strong { color: var(--accent); }

.rgpd-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; background: var(--ink); color: white; padding: 16px 5%; }
.rgpd-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.rgpd-inner p { font-size: 14px; }
.rgpd-inner a { color: var(--accent-3); }
.rgpd-btns { display: flex; gap: 10px; }

/* ─── BREADCRUMB / GENERIC ─── */
.breadcrumb { background: var(--paper-2); padding: 16px 5%; border-bottom: 1px solid var(--line-soft); }
.breadcrumb-inner { max-width: 1280px; margin: 0 auto; font-size: 13.5px; color: var(--mute); }
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb-sep { color: var(--soft); margin: 0 6px; }
.breadcrumb-current { color: var(--ink); font-weight: 500; }

.article-content { max-width: 800px; margin: 0 auto; padding: 0 5%; }
.article-content h2 { font-family: var(--font-display); font-size: 36px; font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin: 36px 0 14px; color: var(--ink); }
.article-content h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin: 24px 0 12px; color: var(--ink); letter-spacing: -0.02em; }
.article-content p { font-size: 17px; line-height: 1.65; color: var(--ink-2); margin-bottom: 16px; }
.article-content ul, .article-content ol { margin: 12px 0 18px 24px; }
.article-content li { font-size: 16px; line-height: 1.65; color: var(--ink-2); margin-bottom: 6px; }
.article-content strong { color: var(--ink); font-weight: 600; }

.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: white; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 16px; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; gap: 14px; }
.faq-q::after { content: '+'; color: var(--accent); font-size: 22px; transition: transform .2s; font-weight: 400; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 20px; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-block; padding: 8px 14px; background: white; border: 1px solid var(--line); color: var(--ink); text-decoration: none; font-size: 13.5px; font-weight: 500; border-radius: 100px; transition: all .2s; box-shadow: var(--shadow-sm); }
.chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: white; padding: 22px 24px; border-radius: 16px; border: 1px solid var(--line); text-decoration: none; color: var(--ink); transition: transform .2s, box-shadow .2s; display: block; box-shadow: var(--shadow-sm); }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.015em; }
.card p { font-size: 14px; color: var(--ink-2); }

.artisan-card { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.artisan-card h4 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.artisan-card p { font-size: 14px; color: var(--ink-2); margin-bottom: 8px; }
.artisan-card .meta { font-size: 12px; color: var(--mute); font-family: var(--font-mono); }

@media (max-width: 600px) { .pricing-table th, .pricing-table td { padding: 14px 12px; font-size: 13.5px; } .pricing-table th.num, .pricing-table td.num { display: none; } }
