/* ─── OCTOPUS ENERGY · ma-prime-pac.fr — Violet pop + jaune banane ─── */

:root {
  --paper: #ffffff;
  --paper-2: #faf7ff;
  --bone: #f3eeff;
  --line: #e8e0ff;
  --line-soft: #f1ecff;
  --ink: #100735;
  --ink-2: #2a1d5a;
  --mute: #6b5fa0;
  --soft: #b4a9d6;

  --accent: #7919F7;          /* violet octopus */
  --accent-dark: #5e0fc6;
  --accent-soft: #ede0ff;
  --accent-2: #FFD700;         /* jaune banane */
  --accent-2-soft: #fff8d4;
  --accent-3: #FF6B9D;         /* rose coral */

  --gold: #FFD700;
  --shadow-sm: 0 2px 8px rgba(121,25,247,.08);
  --shadow-md: 0 12px 40px rgba(121,25,247,.15);
  --shadow-lg: 0 28px 80px rgba(121,25,247,.22);

  --font-display: 'Fraunces', 'Lora', Georgia, 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.6;
  color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

/* ─── HEADER ─── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding: 14px 5%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
header .logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink);
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  letter-spacing: -0.02em;
}
header .logo-icon { font-size: 28px; transition: transform .3s; }
header .logo:hover .logo-icon { transform: rotate(-12deg) scale(1.1); }
#main-nav ul { list-style: none; display: flex; gap: 30px; }
#main-nav a {
  color: var(--ink); text-decoration: none;
  font-size: 15px; font-weight: 600; transition: color .2s;
  position: relative;
}
#main-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 3px;
  background: var(--accent-2); border-radius: 2px; transform: scaleX(0); transition: transform .25s;
  transform-origin: left;
}
#main-nav a:hover { color: var(--accent); }
#main-nav a:hover::after { transform: scaleX(1); }

.header-cta, .btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: var(--accent); color: white;
  border: 3px solid var(--ink); border-radius: 14px;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transition: all .15s; white-space: nowrap;
}
.header-cta:hover, .btn-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--accent-2); color: var(--ink);
}

.btn-link {
  display: inline-flex; align-items: center; gap: 6px; color: var(--accent); text-decoration: none;
  font-size: 15px; font-weight: 700;
  border-bottom: 2px solid var(--accent-2); padding-bottom: 2px;
}
.btn-link:hover { color: var(--ink); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; background: transparent; color: var(--ink);
  border: 3px solid var(--ink); border-radius: 14px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: all .15s;
}
.btn-outline:hover { background: var(--accent-2); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 4px; }
.hamburger span { display: block; width: 24px; height: 3px; background: var(--ink); border-radius: 2px; }
@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: 19px; font-weight: 700; padding: 8px 0; border-bottom: 1px solid var(--line-soft); }

/* ─── HERO violet pop ─── */
.hero {
  padding: 80px 5% 60px;
  background: linear-gradient(135deg, #7919F7 0%, #5e0fc6 60%, #FF6B9D 100%);
  color: white;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  opacity: .35; border-radius: 50%;
}
.hero::after {
  content: ''; position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, #FF6B9D 0%, transparent 70%);
  opacity: .4; border-radius: 50%;
}
.hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 960px) { .hero { padding: 56px 5% 40px; } .hero-inner { grid-template-columns: 1fr; gap: 40px; } }
.hero-text h1 {
  font-family: var(--font-display); font-size: clamp(44px, 6.2vw, 76px);
  font-weight: 700; line-height: 1; letter-spacing: -0.04em;
  color: white; margin-bottom: 24px;
}
.hero-text h1 .accent {
  display: inline-block;
  background: var(--accent-2); color: var(--ink);
  padding: 0 14px; border-radius: 12px;
  transform: rotate(-2deg);
  font-style: normal;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-2); color: var(--ink);
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  padding: 8px 16px; border-radius: 100px;
  border: 2px solid var(--ink);
  margin-bottom: 24px;
  transform: rotate(-1deg);
}
.hero-text p {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,.92); margin-bottom: 32px; max-width: 56ch;
}
.hero-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }
.hero .btn-cta { background: var(--accent-2); color: var(--ink); }
.hero .btn-cta:hover { background: white; }
.hero .btn-link { color: white; border-bottom-color: var(--accent-2); }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 520px; margin-bottom: 18px; }
.stat-card {
  background: white; border: 3px solid var(--ink);
  border-radius: 16px; padding: 18px 14px;
  text-align: center;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-1deg);
}
.stat-card:nth-child(2) { transform: rotate(1deg); background: var(--accent-2); }
.stat-card:nth-child(3) { transform: rotate(-2deg); background: var(--accent-3); color: white; }
.stat-number { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.stat-card:nth-child(3) .stat-number { color: white; }
.stat-label { font-size: 12px; color: var(--ink); margin-top: 6px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.stat-card:nth-child(3) .stat-label { color: white; }
.trust-row { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13.5px; color: rgba(255,255,255,.85); font-weight: 600; }
.hero-photo-wrap {
  border-radius: 24px; overflow: hidden;
  border: 4px solid var(--ink);
  box-shadow: 12px 12px 0 var(--accent-2);
  aspect-ratio: 4/5; max-height: 600px;
  background: var(--bone);
  transform: rotate(2deg);
}
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── LOGO CLOUD ─── */
.logo-cloud {
  background: var(--ink); color: white; padding: 20px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: .04em;
}
.logo-cloud .label { color: var(--accent-2); text-transform: uppercase; font-size: 11px; letter-spacing: .12em; font-weight: 800; }

/* ─── SECTIONS ─── */
.section { padding: 90px 5%; }
.section-white { background: var(--paper); }
.section-alt { background: var(--paper-2); }
.section-accent { background: var(--accent-2); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.badge {
  display: inline-block;
  background: var(--accent-2); color: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--font-body); font-size: 12px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 18px;
  transform: rotate(-1deg);
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; line-height: 1;
  letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 14px;
}
.section-h2 em {
  font-style: normal; color: var(--accent);
  background: var(--accent-2); padding: 0 10px; border-radius: 8px;
  display: inline-block; transform: rotate(-1deg);
}
.section-head p { font-size: 17px; color: var(--ink-2); line-height: 1.6; }

/* ─── TAXONOMY GRID ─── */
.taxonomy-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.taxonomy-card {
  background: white;
  border: 3px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--accent);
  transition: transform .2s, box-shadow .2s;
}
.taxonomy-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--accent); }
.taxonomy-card:nth-child(2) { box-shadow: 6px 6px 0 var(--accent-3); }
.taxonomy-card:nth-child(2):hover { box-shadow: 9px 9px 0 var(--accent-3); }
.taxonomy-card:nth-child(3) { box-shadow: 6px 6px 0 var(--accent-2); }
.taxonomy-card:nth-child(3):hover { box-shadow: 9px 9px 0 var(--accent-2); }
.taxonomy-card:nth-child(4) { box-shadow: 6px 6px 0 var(--ink); }
.taxonomy-card:nth-child(4):hover { box-shadow: 9px 9px 0 var(--ink); }
.taxonomy-card .photo { aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: var(--bone); border-bottom: 3px solid var(--ink); }
.taxonomy-card-body { padding: 22px 24px 26px; }
.taxonomy-card-body .num {
  display: inline-block; background: var(--accent); color: white;
  font-family: var(--font-body); font-size: 12px; font-weight: 800;
  letter-spacing: .04em; padding: 5px 12px; border-radius: 100px;
  border: 2px solid var(--ink); margin-bottom: 14px;
}
.taxonomy-card-body h3 { font-family: var(--font-display); font-size: 26px; 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: 600; margin-bottom: 14px; }
.taxonomy-card-body p { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin-bottom: 14px; }
.taxonomy-card-body .price {
  display: inline-block; padding: 8px 16px;
  background: var(--accent-2); color: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  border-radius: 100px;
}

/* ─── WIDGET ─── */
.widget-section { padding: 70px 5%; background: var(--accent-2); position: relative; }
.widget-frame {
  max-width: 800px; margin: 0 auto;
  background: white; padding: 36px;
  border-radius: 22px;
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

/* ─── PROCESS ─── */
.process-steps { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) { .process-steps { grid-template-columns: 1fr; } }
.step {
  background: white; padding: 32px 28px;
  border: 3px solid var(--ink); border-radius: 22px;
  text-align: center;
  box-shadow: 6px 6px 0 var(--accent);
}
.step:nth-child(2) { box-shadow: 6px 6px 0 var(--accent-3); transform: rotate(1deg); }
.step:nth-child(3) { box-shadow: 6px 6px 0 var(--accent-2); }
.step-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  background: var(--accent); color: white;
  border: 3px solid var(--ink);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 30px; font-weight: 700;
}
.step:nth-child(2) .step-icon { background: var(--accent-3); }
.step:nth-child(3) .step-icon { background: var(--accent-2); color: var(--ink); }
.step h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.step p { font-size: 15px; color: var(--ink-2); }

/* ─── TESTIMONIALS ─── */
.testimonial-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.testimonial {
  background: white; padding: 28px;
  border: 3px solid var(--ink); border-radius: 20px;
  box-shadow: 5px 5px 0 var(--accent);
  transition: transform .2s;
}
.testimonial:nth-child(2) { box-shadow: 5px 5px 0 var(--accent-3); transform: rotate(-1deg); }
.testimonial:nth-child(3) { box-shadow: 5px 5px 0 var(--accent-2); }
.testimonial:hover { transform: translate(-2px, -2px) rotate(0); }
.testimonial .stars { color: var(--accent-2); font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial p { font-family: var(--font-display); font-size: 17px; line-height: 1.5; color: var(--ink); margin-bottom: 20px; font-weight: 500; }
.testimonial .author { display: flex; gap: 12px; align-items: center; }
.testimonial .avatar {
  width: 46px; height: 46px;
  background: var(--accent); color: white;
  border: 2px solid var(--ink);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
}
.testimonial .name { font-weight: 700; color: var(--ink); font-size: 14.5px; }
.testimonial .role { font-size: 12.5px; color: var(--mute); font-weight: 600; }

/* ─── PRICING TABLE ─── */
.pricing-table {
  width: 100%; border-collapse: collapse;
  background: white; border: 3px solid var(--ink); border-radius: 16px; overflow: hidden;
  font-size: 14.5px; box-shadow: 6px 6px 0 var(--accent);
}
.pricing-table thead { background: var(--ink); color: white; }
.pricing-table th {
  text-align: left; padding: 18px 20px;
  font-family: var(--font-body); font-size: 11px;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent-2); font-weight: 800;
}
.pricing-table th.num { width: 64px; }
.pricing-table td { padding: 18px 20px; border-top: 2px solid var(--line); vertical-align: top; }
.pricing-table tr:nth-child(even) td { background: var(--paper-2); }
.pricing-table td.num { font-family: var(--font-mono); color: var(--accent); font-size: 13px; font-weight: 700; }
.pricing-table td.name { font-weight: 700; 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; color: var(--accent); font-size: 15.5px; }

/* ─── FEATURES (aides) ─── */
.features-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.feature-card {
  background: white; padding: 32px 24px;
  border: 3px solid var(--ink); border-radius: 22px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--accent);
  transition: transform .2s;
}
.feature-card:hover { transform: translate(-2px, -2px); }
.feature-card:nth-child(2) { background: var(--accent); color: white; box-shadow: 5px 5px 0 var(--accent-2); }
.feature-card:nth-child(2) h3 { color: white; }
.feature-card:nth-child(2) p { color: rgba(255,255,255,.9); }
.feature-card:nth-child(3) { box-shadow: 5px 5px 0 var(--accent-3); }
.feature-card:nth-child(4) { box-shadow: 5px 5px 0 var(--accent-2); }
.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: var(--accent-2); color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 30px;
}
.feature-card:nth-child(2) .feature-icon { background: white; }
.feature-card h3 { font-family: var(--font-display); margin-bottom: 6px; line-height: 1; font-weight: 700; }
.feature-card p { font-size: 14px; 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: 3px solid var(--ink); border-radius: 18px; overflow: hidden;
  text-decoration: none; color: var(--ink);
  transition: transform .2s, box-shadow .2s;
  box-shadow: 4px 4px 0 var(--accent);
}
.region-card:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--accent); }
.region-card-photo { aspect-ratio: 4/3; border-bottom: 3px solid var(--ink); }
.region-card-body { padding: 16px 18px; }
.region-card-body h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
.region-card-body p { font-size: 13px; color: var(--mute); font-weight: 600; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--ink); color: white;
  padding: 90px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, var(--accent) 0%, transparent 70%);
  opacity: .4;
}
.cta-section .cta-eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px; display: inline-block;
  background: var(--accent); padding: 6px 14px; border-radius: 100px;
  border: 2px solid var(--accent-2);
}
.cta-h2 { font-family: var(--font-display); font-size: clamp(40px, 5.5vw, 64px); font-weight: 700; line-height: 1; letter-spacing: -0.03em; color: white; margin-bottom: 22px; position: relative; }
.cta-h2 em { font-style: normal; background: var(--accent-2); color: var(--ink); padding: 0 12px; border-radius: 10px; display: inline-block; transform: rotate(-1deg); }
.cta-section p { color: rgba(255,255,255,.85); position: relative; }
.cta-row { display: flex; gap: 18px; align-items: center; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-section .btn-cta { background: var(--accent-2); color: var(--ink); border-color: white; box-shadow: 4px 4px 0 white; }
.cta-section .btn-cta:hover { background: white; box-shadow: 6px 6px 0 var(--accent-2); }
.cta-section .btn-outline { color: white; border-color: white; }
.cta-section .btn-outline:hover { background: white; color: var(--ink); }

/* ─── REASSURANCE BAR ─── */
.reassurance-bar {
  background: var(--accent-2); color: var(--ink);
  padding: 18px 5%; display: flex; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: .02em;
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
}
.reassurance-bar strong { color: var(--accent); }

/* ─── FOOTER ─── */
footer { background: var(--ink); color: white; padding: 60px 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: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 16px; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 10px; }
.footer-section a { color: rgba(255,255,255,.75); text-decoration: none; font-size: 14.5px; transition: color .2s; }
.footer-section a:hover { color: var(--accent-2); }
.footer-section p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.6; }
.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-family: var(--font-body); font-size: 12px; color: var(--soft); }

/* ─── MOBILE STICKY ─── */
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--accent); border-top: 3px solid var(--ink); padding: 12px; }
.mobile-sticky-bar a { display: block; text-align: center; font-family: var(--font-body); font-size: 13px; font-weight: 800; color: white; text-decoration: none; letter-spacing: .04em; padding: 6px; }
@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: 3px solid var(--ink); border-radius: 18px; padding: 16px 20px; box-shadow: 6px 6px 0 var(--accent); max-width: 380px; }
.dsc-inner { display: flex; align-items: center; gap: 14px; }
.dsc-inner span { font-size: 13.5px; color: var(--ink); font-weight: 600; }
.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%; border-top: 3px solid var(--accent-2); }
.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-2); }
.rgpd-btns { display: flex; gap: 10px; }

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

.article-content { max-width: 800px; margin: 0 auto; padding: 0 5%; }
.article-content h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; margin: 36px 0 14px; color: var(--ink); }
.article-content h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin: 24px 0 12px; color: var(--ink); }
.article-content p { font-size: 17px; line-height: 1.7; 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.7; color: var(--ink-2); margin-bottom: 6px; }
.article-content strong { color: var(--ink); font-weight: 700; }

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

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-block; padding: 9px 16px; background: white; border: 2px solid var(--ink); color: var(--ink); text-decoration: none; font-size: 13.5px; font-weight: 700; border-radius: 100px; transition: all .15s; }
.chip:hover { background: var(--accent-2); transform: translate(-1px, -1px); }

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

.artisan-card { background: white; border: 3px solid var(--ink); border-radius: 16px; padding: 22px 24px; margin-bottom: 14px; box-shadow: 4px 4px 0 var(--accent); }
.artisan-card h4 { font-family: var(--font-display); font-size: 20px; 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); font-weight: 600; }

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