/* ========================================
   SWISS COMPANY REGISTER — STYLES
   ======================================== */

/* --- VARIABLES --- */
:root {
  --bg: #ffffff;
  --bg-warm: #FAF9F7;
  --bg-cool: #F5F4F1;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: #999999;
  --accent: #c23038;
  --accent-dark: #9a2228;
  --border: #e8e6e2;
  --border-dark: #1a1a1a;
  --serif: 'Playfair Display', Georgia, serif;
  --body-serif: 'Newsreader', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* --- UTILITY --- */
.container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.label { font-family: var(--sans); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--text-light); }
.label-accent { color: var(--accent); }
.rule-double { border-top: 3px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); height: 7px; margin: 2rem 0; }
.rule { border-top: 1px solid var(--border); margin: 2rem 0; }
.dot { width: 5px; height: 5px; display: inline-block; background: var(--accent); }

/* --- BUTTONS --- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-weight: 600; font-size: 0.9em; font-family: var(--sans); border: none; cursor: pointer; transition: all 0.15s; }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-dark { background: var(--text); color: white; }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--text); }
.btn-outline:hover { background: var(--text); color: white; }
.btn-white { background: white; color: var(--text); }
.btn-white:hover { background: #f0f0f0; }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: white; }
.btn-sm { padding: 10px 20px; font-size: 0.82em; }
.btn-lg { padding: 16px 36px; font-size: 1em; }

/* --- TOPBAR --- */
.topbar { border-bottom: 1px solid var(--border); padding: 0.5rem 0; }
.topbar-inner { display: flex; justify-content: flex-end; gap: 1.5rem; align-items: center; }
.topbar a { font-size: 0.75rem; color: var(--text-muted); }
.topbar a:hover { color: var(--accent); }

/* --- HEADER --- */
header { border-bottom: 1px solid var(--border); }
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; }
.logo { font-family: var(--serif); font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.logo em { font-style: normal; color: var(--accent); }
.logo svg { display: block; }
.header-cta { display: flex; align-items: center; gap: 1rem; }

/* --- NAV --- */
nav.main-nav { border-bottom: 1px solid var(--border-dark); padding: 0.75rem 0; }
nav.main-nav ul { display: flex; list-style: none; gap: 2.5rem; }
nav.main-nav a { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; transition: color 0.2s; }
nav.main-nav a:hover { color: var(--accent); }
nav.main-nav a.active { color: var(--accent); }

/* --- BREADCRUMBS --- */
.breadcrumbs { padding: 1rem 0; border-bottom: 1px solid var(--border); }
.breadcrumbs-inner { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--text-light); }
.breadcrumbs a { color: var(--text-muted); transition: color 0.15s; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: var(--border); }

/* --- HERO (HOMEPAGE) --- */
.hero { padding: 3rem 0 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: start; }
.hero-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.hero h1 { font-family: var(--serif); font-size: 3.4rem; font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.hero h1 span { font-style: italic; font-weight: 500; color: var(--text-muted); }
.hero-desc { font-family: var(--serif); font-size: 1.15rem; line-height: 1.65; color: var(--text-muted); margin-bottom: 2rem; max-width: 520px; }
.hero-buttons { display: flex; gap: 0.75rem; margin-bottom: 2rem; }
.hero-stats { display: flex; gap: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.hero-stat strong { display: block; font-size: 1.6rem; font-family: var(--serif); font-weight: 700; }
.hero-stat span { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; height: 520px; object-fit: cover; filter: contrast(1.05) saturate(0.9); }
.hero-visual figcaption { font-size: 0.7rem; color: var(--text-light); margin-top: 0.5rem; font-style: italic; }
.hero-card { position: absolute; bottom: 24px; left: 24px; background: white; padding: 24px 28px; max-width: 300px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.hero-card h4 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 4px; }
.hero-card p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; }
.hero-card-stats { display: flex; gap: 20px; }
.hero-card-stats div { text-align: center; }
.hero-card-stats strong { display: block; font-size: 1rem; }
.hero-card-stats span { font-size: 0.65rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }

/* --- SOURCES BAR --- */
.sources { padding: 1rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sources-inner { display: flex; align-items: center; justify-content: center; gap: 2.5rem; }
.sources span.src-label { font-size: 0.68rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.sources span.src-name { font-family: var(--serif); font-size: 0.95rem; color: var(--text-muted); font-weight: 500; opacity: 0.5; }

/* --- PROCESS STEPS (HOMEPAGE) --- */
.process { padding: 4rem 0; }
.process-header { margin-bottom: 2.5rem; }
.process-header h2 { font-family: var(--serif); font-size: 2rem; font-weight: 700; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.step-item { padding: 2rem; border-right: 1px solid var(--border); position: relative; }
.step-item:last-child { border-right: none; }
.step-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 1rem; }
.step-item h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-item p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }
.step-link { font-size: 0.8rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 4px; }
.step-link:hover { gap: 8px; }

/* --- TOPICS / COCOON CARDS --- */
.topics { padding: 4rem 0; background: var(--bg-warm); }
.topics-header { margin-bottom: 2.5rem; display: flex; justify-content: space-between; align-items: flex-end; }
.topics-header h2 { font-family: var(--serif); font-size: 2rem; font-weight: 700; }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.topic-card { background: var(--bg); border: 1px solid var(--border); overflow: hidden; transition: border-color 0.2s; }
.topic-card:hover { border-color: var(--accent); }
.topic-card-img { height: 180px; overflow: hidden; position: relative; }
.topic-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; filter: saturate(0.85) contrast(1.05); }
.topic-card:hover .topic-card-img img { transform: scale(1.04); }
.topic-card-img .topic-overlay { position: absolute; top: 12px; left: 12px; background: white; padding: 3px 10px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); }
.topic-body { padding: 1.5rem; }
.topic-body h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.3; }
.topic-body p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.topic-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 1rem; }
.topic-tags span { font-size: 0.68rem; padding: 3px 8px; border: 1px solid var(--border); color: var(--text-muted); font-weight: 500; }
.topic-link { font-size: 0.82rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 4px; }

/* --- COMPARISON --- */
.comparison { padding: 4rem 0; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.comparison-text h2 { font-family: var(--serif); font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.comparison-text p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; font-family: var(--serif); }
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th { text-align: left; padding: 12px 16px; border-bottom: 2px solid var(--border-dark); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.comp-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--text-muted); }
.comp-table tr:hover td { background: var(--bg-warm); }
.comp-badge { display: inline-block; background: var(--accent); color: white; font-size: 0.6rem; font-weight: 700; padding: 2px 6px; text-transform: uppercase; margin-left: 6px; vertical-align: middle; }

/* --- CANTONS --- */
.cantons { padding: 4rem 0; background: var(--bg-warm); border-top: 1px solid var(--border); }
.cantons-header { margin-bottom: 2.5rem; }
.cantons-header h2 { font-family: var(--serif); font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.cantons-header p { font-size: 1rem; color: var(--text-muted); font-family: var(--serif); }
.canton-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-bottom: 2rem; }
.canton-group { background: var(--bg); border: 1px solid var(--border); padding: 1.5rem; }
.canton-group h4 { font-family: var(--sans); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--accent); margin-bottom: 0.75rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.canton-group a { display: block; font-size: 0.85rem; color: var(--text-muted); padding: 3px 0; transition: color 0.15s; }
.canton-group a:hover { color: var(--accent); }
.canton-group a.top { color: var(--text); font-weight: 600; }
.cantons-cta { text-align: center; }

/* --- TOOLS --- */
.tools { padding: 4rem 0; }
.tools-header { margin-bottom: 2.5rem; }
.tools-header h2 { font-family: var(--serif); font-size: 2rem; font-weight: 700; }
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tool-card { border: 1px solid var(--border); padding: 2rem; transition: border-color 0.2s; }
.tool-card:hover { border-color: var(--accent); }
.tool-icon { width: 40px; height: 40px; border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.tool-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; }
.tool-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.tool-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.tool-vol { font-size: 0.68rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 1rem; display: block; }

/* --- LEAD CAPTURE FORM --- */
.lead-capture { padding: 4rem 0; background: var(--bg-warm); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.lead-text h2 { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; margin-bottom: 1rem; line-height: 1.15; }
.lead-text p { font-family: var(--serif); font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.lead-benefits { list-style: none; margin-bottom: 2rem; }
.lead-benefits li { padding: 0.5rem 0; font-size: 0.9rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid var(--border); }
.lead-benefits li:last-child { border-bottom: none; }
.lead-check { width: 18px; height: 18px; background: var(--accent); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 700; flex-shrink: 0; }
.lead-form { background: var(--bg); border: 1px solid var(--border); padding: 2.5rem; }
.lead-form h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; }
.lead-form .lead-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.35rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); font-family: var(--sans); font-size: 0.9rem; background: var(--bg); color: var(--text); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 14px; background: var(--accent); color: white; border: none; font-family: var(--sans); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: background 0.15s; margin-top: 0.5rem; }
.form-submit:hover { background: var(--accent-dark); }
.form-note { font-size: 0.7rem; color: var(--text-light); margin-top: 0.75rem; text-align: center; }

/* --- TESTIMONIALS --- */
.testimonials { padding: 4rem 0; }
.testimonials-header { margin-bottom: 2.5rem; display: flex; justify-content: space-between; align-items: flex-end; }
.testimonials-header h2 { font-family: var(--serif); font-size: 2rem; font-weight: 700; }
.testimonials-hint { font-size: 0.75rem; color: var(--text-light); display: flex; align-items: center; gap: 0.5rem; }
.testimonial-track { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 1rem; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.testimonial-track::-webkit-scrollbar { height: 6px; }
.testimonial-track::-webkit-scrollbar-track { background: transparent; }
.testimonial-track::-webkit-scrollbar-thumb { background: var(--border); }
.testimonial-card { border: 1px solid var(--border); padding: 2rem; position: relative; min-width: 380px; max-width: 400px; flex-shrink: 0; scroll-snap-align: start; }
.testimonial-stars { color: #e8a838; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-card blockquote { font-family: var(--serif); font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.testimonial-avatar { width: 40px; height: 40px; overflow: hidden; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8); }
.testimonial-name { font-weight: 700; font-size: 0.85rem; }
.testimonial-role { font-size: 0.72rem; color: var(--text-light); }

/* --- EXPERT SECTION --- */
.expert { padding: 4rem 0; background: var(--bg-warm); border-top: 1px solid var(--border); }
.expert-grid { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: start; }
.expert-photo { width: 100%; aspect-ratio: 3/4; overflow: hidden; position: relative; }
.expert-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.05); }
.expert-badge { position: absolute; bottom: 0; left: 0; right: 0; background: var(--accent); color: white; padding: 8px 16px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; text-align: center; }
.expert-right h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; margin-bottom: 0.25rem; }
.expert-title { color: var(--accent); font-weight: 600; font-size: 0.95rem; margin-bottom: 1.25rem; }
.expert-right p { font-family: var(--serif); font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.expert-credentials { display: flex; gap: 2rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.expert-cred { text-align: center; min-width: 80px; }
.expert-cred strong { display: block; font-family: var(--serif); font-size: 1.3rem; font-weight: 700; }
.expert-cred span { font-size: 0.65rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }

/* --- ARTICLES GRID (HOMEPAGE) --- */
.articles { padding: 4rem 0; }
.articles-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; }
.articles-header h2 { font-family: var(--serif); font-size: 2rem; font-weight: 700; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.article-card { border: 1px solid var(--border); overflow: hidden; transition: border-color 0.2s; }
.article-card:hover { border-color: var(--accent); }
.article-card .article-img { height: 200px; overflow: hidden; }
.article-card .article-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); transition: transform 0.4s; }
.article-card:hover .article-img img { transform: scale(1.04); }
.article-card .article-body { padding: 1.5rem; }
.article-cat { font-size: 0.65rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.5rem; }
.article-card h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.3; }
.article-card p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }

/* --- ARTICLE PAGE HEADER --- */
.article-header { max-width: 820px; margin: 3rem auto 2rem; }
.article-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); }
.article-meta .category { color: var(--accent); font-weight: 700; }
.article-header h1 { font-family: var(--serif); font-size: 3.2rem; line-height: 1.08; margin-bottom: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }
.article-lead { font-family: var(--body-serif); font-size: 1.35rem; line-height: 1.5; color: var(--text-muted); max-width: 700px; }

/* --- HERO IMAGE (ARTICLE) --- */
.hero-image { width: 100%; height: 480px; overflow: hidden; margin-bottom: 3rem; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.05); }
.hero-caption { font-size: 0.7rem; color: var(--text-light); font-style: italic; margin-top: 0.5rem; max-width: 1320px; margin-left: auto; margin-right: auto; padding: 0 2rem; }

/* --- 3-COLUMN ARTICLE LAYOUT --- */
.article-layout { display: grid; grid-template-columns: 180px 1fr 280px; gap: 3rem; max-width: 1320px; margin: 0 auto; padding: 0 2rem 4rem; }

/* --- AUTHOR RAIL (LEFT) --- */
.author-rail { padding-top: 0.5rem; }
.author-card { position: sticky; top: 5rem; border-top: 2px solid var(--border-dark); padding-top: 1.25rem; }
.author-photo { width: 64px; height: 64px; overflow: hidden; margin-bottom: 0.75rem; }
.author-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8); }
.author-name { font-weight: 700; font-size: 0.85rem; display: block; margin-bottom: 0.2rem; }
.author-title { font-size: 0.72rem; color: var(--accent); font-weight: 600; margin-bottom: 0.75rem; display: block; }
.author-bio { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1rem; }
.author-links { display: flex; gap: 0.75rem; font-size: 0.72rem; }
.author-links a { color: var(--text-muted); font-weight: 600; transition: color 0.15s; }
.author-links a:hover { color: var(--accent); }

/* --- ARTICLE BODY (CENTER) --- */
.article-body { font-family: var(--body-serif); font-size: 1.15rem; line-height: 1.75; color: #222; }
.article-body p { margin-bottom: 1.75rem; }
.article-body h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; margin: 2.5rem 0 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border); line-height: 1.2; }
.article-body h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.article-body h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; margin: 2rem 0 0.75rem; line-height: 1.3; }
.article-body ul, .article-body ol { margin-bottom: 1.75rem; padding-left: 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body strong { font-weight: 600; color: var(--text); }
.article-body a { color: var(--accent); border-bottom: 1px solid rgba(194,48,56,0.3); transition: border-color 0.15s; }
.article-body a:hover { border-color: var(--accent); }

/* --- PULL QUOTE --- */
.pull-quote { font-family: var(--serif); font-size: 1.6rem; font-style: italic; color: var(--accent); border-left: 4px solid var(--accent); padding: 0.5rem 0 0.5rem 1.5rem; margin: 2.5rem 0; line-height: 1.3; }

/* --- KEY FACTS BOX --- */
.key-facts { background: var(--bg-warm); border: 1px solid var(--border); padding: 2rem; margin: 2rem 0; }
.key-facts h4 { font-family: var(--sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 1rem; color: var(--accent); }
.key-facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.key-fact { display: flex; flex-direction: column; gap: 0.15rem; }
.key-fact dt { font-family: var(--sans); font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.key-fact dd { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; color: var(--text); }

/* --- PROCESS STEPS (ARTICLE) --- */
.process-steps { margin: 1.5rem 0 2rem; counter-reset: step-counter; }
.process-step { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); counter-increment: step-counter; }
.process-step:last-child { border-bottom: none; }
.step-number { width: 48px; height: 48px; border: 2px solid var(--border-dark); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.2rem; font-weight: 700; flex-shrink: 0; }
.step-content h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
.step-content p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0; font-family: var(--sans); }

/* --- FAQ --- */
.faq-section { margin: 2.5rem 0 2rem; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; cursor: default; }
.faq-a { font-family: var(--body-serif); font-size: 1rem; color: var(--text-muted); line-height: 1.7; padding-left: 1.25rem; border-left: 2px solid var(--border); margin-top: 0.35rem; }

/* --- INLINE CTA --- */
.inline-cta { background: var(--accent); padding: 2.5rem; margin: 2.5rem 0; text-align: center; }
.inline-cta h4 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; color: white; }
.inline-cta p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 1.25rem; }
.inline-cta .btn { background: white; color: var(--accent); }
.inline-cta .btn:hover { background: #f0f0f0; }

/* --- SIDEBAR (RIGHT) --- */
.sidebar { display: flex; flex-direction: column; gap: 2rem; }
.widget { border-top: 2px solid var(--border-dark); padding-top: 1.25rem; }
.widget-title { font-family: var(--sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 1.25rem; }

/* TOC */
.toc-list { list-style: none; }
.toc-list li { margin-bottom: 0.5rem; }
.toc-list a { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: baseline; gap: 0.5rem; transition: color 0.15s; line-height: 1.4; }
.toc-list a:hover { color: var(--accent); }
.toc-num { font-family: var(--sans); font-size: 0.68rem; color: var(--text-light); font-weight: 600; min-width: 16px; }

/* SIDEBAR CTA */
.sidebar-cta { background: var(--bg-warm); border: 1px solid var(--border); padding: 1.5rem; }
.sidebar-cta h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.sidebar-cta p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }
.sidebar-form { display: flex; flex-direction: column; gap: 0.6rem; }
.sidebar-form input { width: 100%; padding: 10px 12px; border: 1px solid var(--border); font-family: var(--sans); font-size: 0.82rem; outline: none; }
.sidebar-form input:focus { border-color: var(--accent); }
.sidebar-form button { width: 100%; padding: 11px; background: var(--accent); color: white; border: none; font-family: var(--sans); font-size: 0.82rem; font-weight: 600; cursor: pointer; }
.sidebar-form button:hover { background: var(--accent-dark); }
.sidebar-form .form-note { font-size: 0.65rem; color: var(--text-light); text-align: center; }

/* RELATED ARTICLES WIDGET */
.related-item { display: flex; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.related-item:last-child { border-bottom: none; }
.related-img { width: 72px; height: 52px; overflow: hidden; flex-shrink: 0; }
.related-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8); }
.related-text h5 { font-family: var(--serif); font-size: 0.88rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.15rem; }
.related-text span { font-size: 0.65rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }

/* --- RELATED SECTION (BOTTOM) --- */
.related-section { border-top: 3px solid var(--border-dark); padding: 3rem 0 4rem; }
.related-section h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.related-card { transition: opacity 0.2s; }
.related-card:hover { opacity: 0.85; }
.related-card-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; margin-bottom: 0.75rem; }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.related-card .label { margin-bottom: 0.35rem; }
.related-card h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; line-height: 1.3; }

/* --- CTA BANNER --- */
.cta-banner { padding: 3.5rem 0; background: var(--text); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; }
.cta-inner h2 { font-family: var(--serif); font-size: 1.8rem; color: white; font-weight: 700; max-width: 500px; }
.cta-inner p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 0.5rem; }
.cta-buttons { display: flex; gap: 0.75rem; }

/* --- FOOTER --- */
footer { background: var(--text); padding: 4rem 0 2rem; color: rgba(255,255,255,0.5); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand { font-family: var(--serif); font-size: 1.4rem; font-weight: 800; color: white; margin-bottom: 1rem; }
.footer-brand em { font-style: normal; color: var(--accent); }
.footer-desc { font-size: 0.82rem; line-height: 1.7; max-width: 280px; }
footer h4 { font-family: var(--sans); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.25); margin-bottom: 1rem; font-weight: 700; }
footer a { display: block; font-size: 0.82rem; padding: 3px 0; transition: color 0.15s; color: rgba(255,255,255,0.5); }
footer a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; }
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a { padding: 0; }

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .article-layout { grid-template-columns: 1fr 240px; }
  .author-rail { display: none; }
}
@media (max-width: 1024px) {
  .hero-grid, .comparison-grid, .lead-grid, .expert-grid { grid-template-columns: 1fr; }
  .topic-grid, .article-grid { grid-template-columns: 1fr 1fr; }
  .canton-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 860px) {
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .article-header h1 { font-size: 2.4rem; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topic-grid, .article-grid, .tools-grid, .steps-grid { grid-template-columns: 1fr; }
  .canton-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.4rem; }
  nav.main-nav ul { gap: 1.25rem; overflow-x: auto; }
  .cta-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
